Thread: donator sing help please!

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 donator sing help please! 
    rolls
    Guest
    Hey, has you can tell by my stats
    <-------
    am a noob xd and proud because we get help from smart people lol
    so, i have tryed 3 tutorials on how to get them working... and no go!

    Here is the URL to the tuts i have done:
    1 - http://www.rune-server.org/showthread.php?t=152192
    2 - http://www.rune-server.org/showthread.php?t=135392
    3 - http://www.rune-server.org/showthread.php?t=116194

    all 3 didnt work and i have used the search bar for some other tuts, but i couldnt find any

    Thanks in advance!
    -Alex
     

  2. #2  
    Registered Member

    Join Date
    Aug 2008
    Posts
    273
    Thanks given
    0
    Thanks received
    0
    Rep Power
    103
    deltascape? whats the problem? the sign dosn't show up for anyone or just for one? or the rights...whats the problem
    Hola
     

  3. #3  
    rolls
    Guest
    i followed them all and nothing works, i had to un-do them just so i can compile, so am back to my first step being no admin or mods crowns and no donators sing


    and yes its delta
     

  4. #4  
    Previously Hyperion


    Join Date
    Jan 2009
    Posts
    1,254
    Thanks given
    3
    Thanks received
    18
    Rep Power
    138
    Ok do the first tut on your list, the one by Georgio, then you gotta do the part he didnt tell you to. You need to open player.java, then search for protected void appendPlayerChat. Then replace that whole method with this
    Code:
    	protected void appendPlayerChatText(stream str) {
    		str.writeWordBigEndian(((chatTextColor & 0xFF) << 8)
    		+ (chatTextEffects & 0xFF));
    		if(playerRights == 3){
    			str.writeByte(2);
    		}
    		else
    		if(playerRights == 2){
    			str.writeByte(2);
    		}else
    		if(donator == 1 && playerRights == 0){
    			str.writeByte(7);
    		}else
    		if(playerRights != 2){
    			str.writeByte(playerRights);
    		}
    		//str.writeByte(playerRights);
    		str.writeByteC(chatTextSize);
    		// no more than 256 bytes!!!
    		str.writeBytes_reverse(chatText, chatTextSize, 0);
    	}
    Make sure you do Georgios tut exactly...then do the part he left out
     

  5. #5  
    rolls
    Guest
    and it worked for you?

    yes?
     

  6. #6  
    Previously Hyperion


    Join Date
    Jan 2009
    Posts
    1,254
    Thanks given
    3
    Thanks received
    18
    Rep Power
    138
    Quote Originally Posted by rolls View Post
    and it worked for you?

    yes?
    I dont know i havent done it...I just know you need something that has to do with that. Try it and let me know any errors
     

  7. #7  
    rolls
    Guest
    k hold on a sec...

    if it works i rep you
     

  8. #8  
    rolls
    Guest
    wow, dude... this dude fails at makeing tut... ummm

    i couldn't find
    if (playerRights == 2){
    out.write(2);
    and i didn't get that part where he sais

    Then scroll up a bit u wil see Somthing like this;


    Code:
    if(donator == 1 && playerRights == 0){
    out.write(7);
    }else
    if (playerRights == 3){
    if(playerName.equalsIgnoreCase("Georgio")){
    out.write(5);
    }else
    if(playerName.equalsIgnoreCase("master of pk")){
    out.write(8);
    }
    else
    out.write(6);Where it says
    Code:
    out.write(8);The out.write(8;

    Makes bluurr icon works

    Raw! please help me
     

  9. #9  
    Previously Hyperion


    Join Date
    Jan 2009
    Posts
    1,254
    Thanks given
    3
    Thanks received
    18
    Rep Power
    138
    Ok give me a second I will try and make it easier.

    Ok open up client.java and search for "// mod/admin level crown fix -bakatool" You should see something like this
    Code:
    // mod/admin level crown fix -bakatool
    				if (playerRights == 3)
    					out.write(2);
                                    else
                                    if(playerRights == 2)
                                            out.write(2);
    				else
    					out.write(playerRights);
    Now add this under the last "else"
    Code:
    if(donator == 1 && playerRights == 0){
    out.write(7);
    else
    Should look like this, copy and paste it if you like
    Code:
    // mod/admin level crown fix -bakatool
    				if (playerRights == 3)
    					out.write(2);
    				else
    				if (playerRights == 2)
    					out.write(2);
    				else
    				if(donator == 1 && playerRights == 0)
    					out.write(7);
    				else
    					out.write(playerRights);
    Then make sure the code i gave you for player.java is added.
    Compile, run, and it should work provided you have the donator icon in your client
     

  10. #10  
    rolls
    Guest
    thanks, it compiles but if i make an acount with a donator rights it dosen't say anything, i get d/ced
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •