Thread: help with ruse helm's

Results 1 to 9 of 9
  1. #1 help with ruse helm's 
    Perplexity owner

    Join Date
    Feb 2011
    Posts
    171
    Thanks given
    32
    Thanks received
    15
    Rep Power
    0
    wondering if anyone could look over this and check it's correct for me for player appearance updating helms wise



    Code:
                if (ItemDefinition.forId(equip[Equipment.HEAD_SLOT]).isFullHelm() || ItemDefinition.forId(equip[Equipment.HEAD_SLOT]).isHat()) {
                    properties.put(0);
                } else {
                    properties.putShort(0x100 + appearance.getLook()[Appearance.HEAD]);
                }

    Code:
                if (appearance.getLook()[Appearance.BEARD] <= 0 || ItemDefinition.forId(equip[Equipment.HEAD_SLOT]).isFullHelm() || appearance.getGender().equals(Gender.FEMALE)) {
                    properties.put(0);
                } else {
                    properties.putShort(0x100 + appearance.getLook()[Appearance.BEARD]);
                }
            }

    ItemDefinition.java
    Code:
    	public boolean isFullHelm() {
    		return equipmentType.equals(EquipmentType.FULL_HELMET);
    	}
    	public boolean isHat() {
    		return equipmentType.equals(EquipmentType.HAT);
    	}
    Code:
    	private enum EquipmentType {
    		HAT(Equipment.HEAD_SLOT),
    		CAPE(Equipment.CAPE_SLOT),
    		SHIELD(Equipment.SHIELD_SLOT),
    		GLOVES(Equipment.HANDS_SLOT),
    		BOOTS(Equipment.FEET_SLOT),
    		AMULET(Equipment.AMULET_SLOT),
    		RING(Equipment.RING_SLOT),
    		ARROWS(Equipment.AMMUNITION_SLOT),
    		FULL_MASK(Equipment.HEAD_SLOT),
    		FULL_HELMET(Equipment.HEAD_SLOT),
    		BODY(Equipment.BODY_SLOT),
    		PLATEBODY(Equipment.BODY_SLOT),
    		LEGS(Equipment.LEG_SLOT),
    		WEAPON(Equipment.WEAPON_SLOT);
    		
    		private EquipmentType(int slot) {
    			this.slot = slot;
    		}
    		
    		private int slot;
    	}
    does this look right if not whats missing

    even with this code my haed still shows through items set as Equipment type: HAT
    https://prnt.sc/t6gtfr
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Apr 2020
    Posts
    32
    Thanks given
    1
    Thanks received
    5
    Rep Power
    42
    Is this a custom model or from a newer revision like 700+?
    Reply With Quote  
     

  3. #3  
    Im an albatraoz

    Nand0's Avatar
    Join Date
    Feb 2010
    Age
    31
    Posts
    948
    Thanks given
    233
    Thanks received
    128
    Rep Power
    241
    put equipment type as FULL_HELMET

    https://i.gyazo.com/0e52af6006b17477...c1361d78c9.gif



    Looking for blazing fast and affordable vps or web hosting?
    AllGeniusHost



    Reply With Quote  
     

  4. #4  
    Perplexity owner

    Join Date
    Feb 2011
    Posts
    171
    Thanks given
    32
    Thanks received
    15
    Rep Power
    0
    Quote Originally Posted by Nand0 View Post
    do all your full helmet's show beards?
    Reply With Quote  
     

  5. #5  
    Im an albatraoz

    Nand0's Avatar
    Join Date
    Feb 2010
    Age
    31
    Posts
    948
    Thanks given
    233
    Thanks received
    128
    Rep Power
    241
    Quote Originally Posted by Perplexity View Post
    do all your full helmet's show beards?
    nope



    Looking for blazing fast and affordable vps or web hosting?
    AllGeniusHost



    Reply With Quote  
     

  6. #6  
    Perplexity owner

    Join Date
    Feb 2011
    Posts
    171
    Thanks given
    32
    Thanks received
    15
    Rep Power
    0
    Quote Originally Posted by ggtip2 View Post
    Is this a custom model or from a newer revision like 700+?
    this is a custom model correct, is it something to do with priorities?
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Apr 2020
    Posts
    32
    Thanks given
    1
    Thanks received
    5
    Rep Power
    42
    You may need to shift the positioning of the helmet. If you change your hair to spikey style does it stick through it?
    Reply With Quote  
     

  8. #8  
    ᗪ乇尺乇乙乙乇ᗪ

    lumplum's Avatar
    Join Date
    Nov 2015
    Posts
    1,145
    Thanks given
    529
    Thanks received
    1,463
    Rep Power
    5000
    Seems like you're having issues with PRI, positioning, and the fact your beard is coming through the helmet. Setting something as full helm should essentially make the head of the character go away while the helmet remains. You may want to edit the defs to make sure the head sits properly in position by messing with the values, i think offsets, but this can also be done through a cache editor tool afaik. the PRI issue could be "solved" by running it through datmaker with a PRI of 10
    Attached image
    Reply With Quote  
     

  9. #9  
    Perplexity owner

    Join Date
    Feb 2011
    Posts
    171
    Thanks given
    32
    Thanks received
    15
    Rep Power
    0
    Thanks very much ggtip
    Quote Originally Posted by ggtip2 View Post
    You may need to shift the positioning of the helmet. If you change your hair to spikey style does it stick through it?
    Thanks, don't worry about beard showing through helm, I just noticed that nando told me to set it as a FULL_HELMET (not sure why...) and his picture had a beard, I do not have beardS set to show through full helmets already fixxed that issue
    I though maybe something in my player updating was causing the issue and totally overlooked the fact that it was rather more likely a model issue.
    Quote Originally Posted by lumplum View Post
    Seems like you're having issues with PRI, positioning, and the fact your beard is coming through the helmet. Setting something as full helm should essentially make the head of the character go away while the helmet remains. You may want to edit the defs to make sure the head sits properly in position by messing with the values, i think offsets, but this can also be done through a cache editor tool afaik. the PRI issue could be "solved" by running it through datmaker with a PRI of 10
    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. Need help with ruse client
    By Amirtje12 in forum Help
    Replies: 0
    Last Post: 02-27-2016, 10:56 PM
  2. paying for help with ruse client
    By teachmetocodee in forum Buying
    Replies: 0
    Last Post: 02-26-2016, 07:52 PM
  3. Need help with ruse
    By Icefishjj in forum Buying
    Replies: 1
    Last Post: 12-24-2015, 01:15 AM
  4. Help with Ruse Client
    By Torag16 in forum Help
    Replies: 0
    Last Post: 12-10-2015, 05:38 PM
  5. Help with RUSE cachedownloader.java
    By dabs in forum Help
    Replies: 5
    Last Post: 11-05-2015, 02:30 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
  •