Thread: Equipment screen updating

Results 1 to 2 of 2
  1. #1 Equipment screen updating 
    Shake n Bake

    Organic's Avatar
    Join Date
    Apr 2010
    Posts
    2,499
    Thanks given
    204
    Thanks received
    324
    Rep Power
    588
    Allright my equipment screen just updates backwards



    if someone could tell me how to fix this it would be alot thanks

    Just live life at its fullest.

    LOL
    Reply With Quote  
     

  2. #2  
    Donator

    Join Date
    Oct 2007
    Posts
    817
    Thanks given
    47
    Thanks received
    52
    Rep Power
    184
    open client.java and add
    Code:
    	public void updateEquiptScreen()
    	{
    		client.sendFrame126("Stab: "+GPB(0)+"",15113);
    		client.sendFrame126("Slash: "+GPB(1)+"",15114);
    		client.sendFrame126("Crush: "+GPB(2)+"",15115);
    		client.sendFrame126("Mage: "+GPB(3)+"",15116);
    		client.sendFrame126("Range: "+GPB(4)+"",15117);
    		client.sendFrame126("Stab: "+GPB(5)+"",15118);
    		client.sendFrame126("Slash: "+GPB(6)+"",15119);
    		client.sendFrame126("Crush: "+GPB(7)+"",15120);
    		client.sendFrame126("Mage: "+GPB(8)+"",15121);
    		client.sendFrame126("Range: "+GPB(9)+"",15122);
    		client.sendFrame126("Strength: "+GPB(10)+"",15123);
    		client.sendFrame126("Prayer: "+GPB(11)+"",15124);
    	}
    and
    Code:
    	public String GPB(int b)
    	{
    		String k;
    	
    		if(playerBonus[b] >= 0)
    		{
    			k = "+";
    		}
    		else
    		{
    			k = "";
    		}
    		return k+playerBonus[b];
    	}
    search case 41:
    and add " updateEquiptScreen(); " just before the break;
    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

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