Thread: Guthans

Results 1 to 5 of 5
  1. #1 Guthans 
    Registered Member
    Join Date
    Apr 2011
    Posts
    146
    Thanks given
    7
    Thanks received
    1
    Rep Power
    1
    How do I make other sets? I'm trying to make them but it keeps getting me errors.

    Code:
    public boolean fullGuthans() {
    		return c.playerEquipment[c.playerHat] == 4724
    		&& c.playerEquipment[c.playerChest] == 4728
    		&& c.playerEquipment[c.playerLegs] == 4730
    		&& c.playerEquipment[c.playerWeapon] == 4726;
    		c.playerEquipment[c.playerHat] == 4904
    		&& c.playerEquipment[c.playerChest] == 4916
    		&& c.playerEquipment[c.playerLegs] == 4922
    		&& c.playerEquipment[c.playerWeapon] == 4910;
    	}
    Any ideas how to make other sets?
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Dec 2008
    Posts
    2,097
    Thanks given
    1,419
    Thanks received
    732
    Rep Power
    0
    Code:
    public boolean wearingVeracs() {
    return wearing helm && wearing skirt && wearing chest && weilding flail;
    }
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Jan 2012
    Age
    29
    Posts
    675
    Thanks given
    69
    Thanks received
    164
    Rep Power
    0
    My eyes! That's the shittiest code I've seen.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Oct 2010
    Age
    30
    Posts
    612
    Thanks given
    20
    Thanks received
    7
    Rep Power
    9
    here
    public boolean fullVeracs() {
    return c.playerEquipment[c.playerHat] == 4753
    && c.playerEquipment[c.playerChest] == 4757
    && c.playerEquipment[c.playerLegs] == 4759
    && c.playerEquipment[c.playerWeapon] == 4755;
    }

    public boolean fullGuthans() {
    return c.playerEquipment[c.playerHat] == 4724
    && c.playerEquipment[c.playerChest] == 4728
    && c.playerEquipment[c.playerLegs] == 4730
    && c.playerEquipment[c.playerWeapon] == 4726;
    }
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Sep 2008
    Posts
    4,833
    Thanks given
    894
    Thanks received
    1,439
    Rep Power
    2924
    Code:
    public boolean fullVeracs() {
    		return c.playerEquipment[c.playerHat] == 4753 && c.playerEquipment[c.playerChest] == 4757 && c.playerEquipment[c.playerLegs] == 4759 && c.playerEquipment[c.playerWeapon] == 4755;
    	}
    	public boolean fullGuthans() {
    		return c.playerEquipment[c.playerHat] == 4724 && c.playerEquipment[c.playerChest] == 4728 && c.playerEquipment[c.playerLegs] == 4730 && c.playerEquipment[c.playerWeapon] == 4726;
    	}
    There a bit cleaner, Also those are the only two needed. the other Barrow sets are handled Diffrently, Perhaps Dharok can be done like that...
    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. Guthans LOL?
    By Nikki in forum Configuration
    Replies: 11
    Last Post: 04-11-2009, 04:36 AM
  2. Really just followed guthans tutorial lol
    By Templer in forum RS 503+ Client & Server
    Replies: 12
    Last Post: 08-03-2008, 06:34 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
  •