Thread: [PI] Wierd, Text showing

Results 1 to 7 of 7
  1. #1 [PI] Wierd, Text showing 
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    Hello, I'm wondering if anyone is known with this error?,



    Would appreciate, any help
    Reply With Quote  
     

  2. #2  
    Donator
    Ashley's Avatar
    Join Date
    Oct 2011
    Age
    29
    Posts
    411
    Thanks given
    175
    Thanks received
    70
    Rep Power
    67
    If you added loyalty titles it's because the client sided part, did you add anything that will change how it shows someones name/combat?
    Reply With Quote  
     

  3. #3  
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    I don't think so, where do i even do that?
    Reply With Quote  
     

  4. #4  
    Father Of Lies


    Join Date
    May 2012
    Age
    26
    Posts
    1,216
    Thanks given
    267
    Thanks received
    289
    Rep Power
    242
    Well, what have you done/modified recently?
    Reply With Quote  
     

  5. #5  
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    I don't remeber ,
    Reply With Quote  
     

  6. #6  
    Explicit Jerba™'s Avatar
    Join Date
    May 2012
    Posts
    720
    Thanks given
    83
    Thanks received
    167
    Rep Power
    55
    Client Files > Client.java

    Search :
    private void buildAtPlayerMenu
    I would suggest looking in there, if you still don't have any luck, try taking one from a blank client.


    Reply With Quote  
     

  7. #7  
    Legalize it

    Join Date
    Jun 2011
    Posts
    145
    Thanks given
    1
    Thanks received
    3
    Rep Power
    12
    I found out why,

    It was showing level- + player.skillevel,

    Just change to player.combatlevel,
    Thanks anyway ,



    FIX:
    "CLIENT SIDED"
    Open client.java

    Search for
    Code:
    		if(player.skill == 0)
    You will find this.
    Code:
    		if(player.skill == 0)
    			s = player.name + combatDiffColor(myPlayer.combatLevel, player.combatLevel) + " (level-" + player.combatLevel + ")";
    		else
    			s = player.name + " (skill-" + player.skill + ")";
    		if(itemSelected == 1)
    		{
    Change the whole method to this
    Code:
    		if(player.skill == 0)
    			s = player.name + combatDiffColor(myPlayer.combatLevel, player.combatLevel) + " (level-" + player.combatLevel + ")";
    		else
    			s = player.name + combatDiffColor(myPlayer.combatLevel, player.combatLevel) + " (level-" + player.combatLevel + ")";
    		if(itemSelected == 1)
    		{
    Save exit and compile

    Done
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Hitsplats and text not showing!
    By I Am Kacey in forum Help
    Replies: 2
    Last Post: 08-25-2012, 12:28 AM
  2. please help me (duel arena text not showing)
    By NoChildSupport in forum Help
    Replies: 1
    Last Post: 08-12-2012, 12:08 AM
  3. [pi] skill text showing problem
    By EricFtw in forum Help
    Replies: 14
    Last Post: 11-02-2011, 10:57 PM
  4. Chat Text Not Showing?
    By Trytohaxme in forum Help
    Replies: 2
    Last Post: 10-08-2009, 07:46 AM
  5. this is wierd, no .cfg files are showing
    By Casella in forum RS2 Server
    Replies: 0
    Last Post: 02-10-2008, 04:53 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •