I was wondering if there is any way to load a crown for a player with a certain name? Thanks for your time!
Printable View
I was wondering if there is any way to load a crown for a player with a certain name? Thanks for your time!
Yes, you can load a crown for a certain player.
base?Quote:
Originally Posted by Dragroxas [Only registered and activated users can see links. Click Here To Register...]
Delta now you may leave the thread... :(
Look for something like this in client.java of your server.
You should see something like this once you find the right one.Code:if(donator == 1
Then add something like this, Im not sure if this is correct.Code:if(donator == 1 && playerRights == 0){
out.write(7);
The out.write(8); is the bluuricon, which im guessing thats the client your using. Just change the bluuricon to your crown you want.Code:if (playerName.equalsIgnoreCase("dragroxas"))
out.write(8);
You sir are genious i found the donater thing but i wasn't exactly sure what outwrite did and stuff thanks rep!