Thread: [ItemDefinitions]

Results 1 to 3 of 3
  1. #1 [ItemDefinitions] 
    592
    Jawvuh's Avatar
    Join Date
    Dec 2012
    Posts
    333
    Thanks given
    150
    Thanks received
    53
    Rep Power
    0
    Currently I'm experiencing a problem with numerous items creating errors in the world thread due to missing opcodes/client keys. I'm trying to find a 876 item definitions dump to pack and see if its fixes it.

    In particular its Chaotic weaponry and a few others.

    https://www.rune-server.ee/runescape...ef-models.html

    This thread unfortunately contains a downed link else I would try repacking with these definitions.

    Can anyone either
    a) link me to updated defs.
    b) or explain how I can acquire them myself from various ways.

    -Thanks

    ItemDefinitions
    Code:
    public int getCombatStyle() {
    		return getCombatOpcode(2853);
    	}
    Equipment
    Code:
    public int getWeaponStance() {
    	    	boolean combatStance = player.getCombatDefinitions().isCombatStance();
    			Item weapon = items.get(3);
    			if (weapon == null) {
    				Item offhand = items.get(SLOT_SHIELD);
    			    if (offhand == null)
    			    	return combatStance ? 2688 : 2699;
    			    int emote = offhand.getDefinitions().getCombatOpcode(combatStance ? 2955 : 2954);
    				    return emote == 0 ? combatStance ? 2688 : 2699 : emote;
    			}
    			int emote = weapon.getDefinitions().getCombatOpcode(combatStance ? 2955 : 2954);
    			if (weapon.getId() == 4084) //sled exception
    				return 1119;
    			return emote == 0 ? combatStance ? 2688 : 2699 : emote;
    	    }
    Error:
    Attached image
    Attached image
    Attached image
    Attached image
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Nov 2015
    Age
    24
    Posts
    1,980
    Thanks given
    334
    Thanks received
    1,051
    Rep Power
    5000
    They are called parameters, not clientscripts. Looks like there aren't any parameters for your chaotic rapier however.
    Have you tried to use a fresh cache without any editing done on it?
    Reply With Quote  
     

  3. #3  
    592
    Jawvuh's Avatar
    Join Date
    Dec 2012
    Posts
    333
    Thanks given
    150
    Thanks received
    53
    Rep Power
    0
    Quote Originally Posted by Tommeh View Post
    They are called parameters, not clientscripts. Looks like there aren't any parameters for your chaotic rapier however.
    Have you tried to use a fresh cache without any editing done on it?
    Currently I’m using the Zaria 887 source which was converted to a by Shnek. I’m not sure if I can load a fresh cache persay that'll work with major configs to the source but is there a way I can just add the correct parameters. It only seems to be the Chaotic weaponry & Barrows gloves.
    Last edited by Jawvuh; 04-26-2020 at 10:36 PM.
    Attached image
    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. Hyperion itemDefinitions Editor
    By Kupo in forum Tools
    Replies: 13
    Last Post: 07-09-2016, 10:46 AM
  2. Replies: 0
    Last Post: 04-17-2010, 11:48 PM
  3. Replies: 0
    Last Post: 01-03-2010, 10:00 AM
  4. Replies: 33
    Last Post: 08-18-2009, 03:20 AM
  5. Replies: 2
    Last Post: 03-03-2009, 06:31 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
  •