Thread: Zaria 718-886

Page 7 of 10 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 94
  1. #61  
    Registered Member
    Join Date
    Jul 2017
    Age
    33
    Posts
    30
    Thanks given
    4
    Thanks received
    7
    Rep Power
    15
    If you are looking to fix the 205 str cap, i found how to fix it. fairly easy imo.. i searched 205; in eclipse and going through the results i found this
    Code:
     public static void refreshEquipBonuses(Player player) {
    		int strBonus = player.getCombatDefinitions().getBonuses()[14];
    		if (strBonus >= 205)
    			strBonus = 205;
    		player.getPackets().sendIComponentText(667, 28, "Stab: +" + player.getCombatDefinitions().getBonuses()[0]);
    		player.getPackets().sendIComponentText(667, 29, "Slash: +" + player.getCombatDefinitions().getBonuses()[1]);
    		player.getPackets().sendIComponentText(667, 30, "Crush: +" + player.getCombatDefinitions().getBonuses()[2]);
    		player.getPackets().sendIComponentText(667, 31, "Magic: +" + player.getCombatDefinitions().getBonuses()[3]);
    		player.getPackets().sendIComponentText(667, 32, "Range: +" + player.getCombatDefinitions().getBonuses()[4]);
    		player.getPackets().sendIComponentText(667, 33, "Stab: +" + player.getCombatDefinitions().getBonuses()[5]);
    		player.getPackets().sendIComponentText(667, 34, "Slash: +" + player.getCombatDefinitions().getBonuses()[6]);
    		player.getPackets().sendIComponentText(667, 35, "Crush: +" + player.getCombatDefinitions().getBonuses()[7]);
    		player.getPackets().sendIComponentText(667, 36, "Magic: +" + player.getCombatDefinitions().getBonuses()[8]);
    		player.getPackets().sendIComponentText(667, 37, "Range: +" + player.getCombatDefinitions().getBonuses()[9]);
    		player.getPackets().sendIComponentText(667, 38, "Summoning: +" + player.getCombatDefinitions().getBonuses()[10]);
    		player.getPackets().sendIComponentText(667, 39, "Absorb Melee: +" + player.getCombatDefinitions().getBonuses()[CombatDefinitions.ABSORVE_MELEE_BONUS] + "%");
    		player.getPackets().sendIComponentText(667, 40, "Absorb Magic: +" + player.getCombatDefinitions().getBonuses()[CombatDefinitions.ABSORVE_MAGE_BONUS] + "%");
    		player.getPackets().sendIComponentText(667, 41, "Absorb Ranged: +" + player.getCombatDefinitions().getBonuses()[CombatDefinitions.ABSORVE_RANGE_BONUS] + "%");
    		player.getPackets().sendIComponentText(667, 42, "Strength: " + strBonus);
    		player.getPackets().sendIComponentText(667, 43, "Ranged Str: " + player.getCombatDefinitions().getBonuses()[15]);
    		player.getPackets().sendIComponentText(667, 44, "Prayer: +" + player.getCombatDefinitions().getBonuses()[16]);
    		player.getPackets().sendIComponentText(667, 45, "Magic Damage: +" + player.getCombatDefinitions().getBonuses()[17] + "%");
    	}
    To fix this remove the
    Code:
    int strBonus = player.getCombatDefinitions().getBonuses()[14];
    		if (strBonus >= 205)
    			strBonus = 205;
    and replace
    player.getPackets().sendIComponentText(667, 42, "Strength: " + strBonus); with
    player.getPackets().sendIComponentText(667, 42, "Strength: " + player.getCombatDefinitions().getBonuses()[14]);
    Reply With Quote  
     

  2. #62  
    Registered Member
    Join Date
    Nov 2012
    Posts
    5
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    why wont it load for me?
    Reply With Quote  
     

  3. #63  
    van 't stad

    Shnek's Avatar
    Join Date
    Oct 2013
    Posts
    1,065
    Thanks given
    343
    Thanks received
    297
    Rep Power
    109
    Quote Originally Posted by tyler2476613 View Post
    why wont it load for me?
    Use eclipse or another idee to run it
    Attached image

    Do not use the vps from ovh, blocking vps without reason and no customer support
    Reply With Quote  
     

  4. #64  
    Donator

    Join Date
    Nov 2017
    Posts
    268
    Thanks given
    37
    Thanks received
    18
    Rep Power
    19
    Does anyone know why you dc when getting near falador
    Attached image
    Reply With Quote  
     

  5. #65  
    van 't stad

    Shnek's Avatar
    Join Date
    Oct 2013
    Posts
    1,065
    Thanks given
    343
    Thanks received
    297
    Rep Power
    109
    Quote Originally Posted by Nova Genesis View Post
    Does anyone know why you dc when getting near falador
    Don't really know, never tested it after I updated to 887. Prob with the map there because falador changed around that period
    Attached image

    Do not use the vps from ovh, blocking vps without reason and no customer support
    Reply With Quote  
     

  6. #66  
    Donator

    Join Date
    Nov 2017
    Posts
    268
    Thanks given
    37
    Thanks received
    18
    Rep Power
    19
    Quote Originally Posted by Shnek View Post
    Don't really know, never tested it after I updated to 887. Prob with the map there because falador changed around that period
    I've been trying to figure it out for awhile, but I'm also not very qualified.
    Someone gave me a heads up thinking this: "I think its either missing xtea for the maps or a cache loading issue. some areas might blackspot."
    Attached image
    Reply With Quote  
     

  7. #67  
    Registered Member
    Join Date
    Oct 2017
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Quote Originally Posted by thecool12 View Post
    Hello,

    For anyone that needs the staffpin, the pin is: 1410

    where did you go to find him?
    Reply With Quote  
     

  8. #68  
    Registered Member apfel00111's Avatar
    Join Date
    Jun 2016
    Posts
    30
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    Hey can you help me pls?

    how can i compile the server?
    Reply With Quote  
     

  9. #69  
    Registered Member Fallore's Avatar
    Join Date
    Jan 2019
    Age
    28
    Posts
    49
    Thanks given
    9
    Thanks received
    15
    Rep Power
    40
    Quote Originally Posted by apfel00111 View Post
    Hey can you help me pls?

    how can i compile the server?
    Use a IDE

    Either install Intellij community edition or eclipse.
    Set up your project and compile it through there.
    Reply With Quote  
     

  10. #70  
    Registered Member
    Join Date
    Nov 2016
    Posts
    5
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Any tips or tricks on how to change the IP address of the server and client to a hostname such as example.com or similar?
    Reply With Quote  
     

Page 7 of 10 FirstFirst ... 56789 ... LastLast

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. Replies: 325
    Last Post: 10-12-2023, 08:15 AM
  2. Replies: 287
    Last Post: 07-24-2018, 01:23 AM
  3. Selling Zaria 718/Rs3
    By Shnek in forum Selling
    Replies: 28
    Last Post: 12-14-2017, 12:38 AM
  4. Replies: 29
    Last Post: 09-19-2017, 11:53 AM
  5. Zaria 718
    By Shnek in forum Projects
    Replies: 109
    Last Post: 09-11-2017, 08:29 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •