Thread: [718] Gear set-ups.

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 [718] Gear set-ups. 
    Registered Member
    Join Date
    Oct 2013
    Posts
    48
    Thanks given
    2
    Thanks received
    2
    Rep Power
    6
    Does anyone want to help me out? I forgot how to code a lot cause of school. Can anyone help me out by giving me Like a fully coded gear setup's like u know how servers have ;;gear > Choose dh and it auto puts on dh and food etc pots, i need someone who can be willing to help me out.
    Reply With Quote  
     

  2. #2  
    Registered Member
    hc747's Avatar
    Join Date
    Dec 2013
    Age
    23
    Posts
    1,448
    Thanks given
    3,133
    Thanks received
    672
    Discord
    View profile
    Rep Power
    1029
    Code it yourself. It's literally like two arrays for the most basic form of this concept.
    [Only registered and activated users can see links. ]
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Nov 2013
    Posts
    180
    Thanks given
    46
    Thanks received
    37
    Rep Power
    0
    I forgot how to code a lot cause of school

    lol , come on man that's the worst excuse i've heard ever, you dont know how to "code" in the first place
    Reply With Quote  
     

  4. Thankful users:


  5. #4  
    Soon to be a Blaziken

    Torchic's Avatar
    Join Date
    Mar 2011
    Age
    26
    Posts
    1,712
    Thanks given
    14
    Thanks received
    452
    Rep Power
    529
    Code:
    			player.getEquipment().set(new Item(4587), Equipment.SLOT_WEAPON); // Dragon scimitar
    			player.getEquipment().set(new Item(6524), Equipment.SLOT_SHIELD); // Tokz-ket-xil
    			player.getEquipment().set(new Item(6129), Equipment.SLOT_CHEST); // Rockshell platebody
    			player.getEquipment().set(new Item(6130), Equipment.SLOT_LEGS); // Rockshell platelegs
    			player.getEquipment().set(new Item(10828), Equipment.SLOT_HELM); // Helm of Neitznot
    			player.getEquipment().set(new Item(3105), Equipment.SLOT_BOOTS); // Climbing boots
    			player.getEquipment().set(new Item(1712), Equipment.SLOT_AMULET); // Amulet of glory
    			player.getEquipment().set(new Item(7462), Equipment.SLOT_HANDS); // Barrows gloves
    			player.getEquipment().set(new Item(2414), Equipment.SLOT_CAPE); // Zamorak Cape
    			player.getEquipment().set(new Item(2550), Equipment.SLOT_RING); // Ring of recoil
    			player.getInventory().add(new Item(4675, 1)); // Ancient Staff
    			player.getInventory().add(new Item(3842, 1)); // Zamorak book
    			player.getInventory().add(new Item(4091, 1)); // Blue mystic robetop
    			player.getInventory().add(new Item(4093, 1)); // Blue mystic robeskirt
    			player.getInventory().add(new Item(2503, 1)); // Black d'hide top
    			player.getInventory().add(new Item(5698, 1)); // Dragon dagger
    			player.getInventory().add(new Item(2440, 1)); // Strength potion
    			player.getInventory().add(new Item(2436, 1)); // Attack potion
    			player.getInventory().add(new Item(3040, 1)); // Magic potion
    			player.getInventory().add(new Item(6685, 3)); // Saradomin brew
    			player.getInventory().add(new Item(3024, 2)); // Super restore
    			player.getInventory().add(new Item(560, 800)); // Death runes
    			player.getInventory().add(new Item(565, 400)); // Blood runes
    			player.getInventory().add(new Item(555, 1200)); // Astral runes
    			player.getInventory().add(new Item(385, 50)); // Shark
    Basic example...could be done better. took me all of about 15 seconds.

    Reply With Quote  
     

  6. #5  
    ZzzzZzzzzZzzzzZzzz
    Shoutout's Avatar
    Join Date
    Sep 2014
    Posts
    260
    Thanks given
    19
    Thanks received
    7
    Rep Power
    11
    Quote Originally Posted by Torchic View Post
    Code:
    			player.getEquipment().set(new Item(4587), Equipment.SLOT_WEAPON); // Dragon scimitar
    			player.getEquipment().set(new Item(6524), Equipment.SLOT_SHIELD); // Tokz-ket-xil
    			player.getEquipment().set(new Item(6129), Equipment.SLOT_CHEST); // Rockshell platebody
    			player.getEquipment().set(new Item(6130), Equipment.SLOT_LEGS); // Rockshell platelegs
    			player.getEquipment().set(new Item(10828), Equipment.SLOT_HELM); // Helm of Neitznot
    			player.getEquipment().set(new Item(3105), Equipment.SLOT_BOOTS); // Climbing boots
    			player.getEquipment().set(new Item(1712), Equipment.SLOT_AMULET); // Amulet of glory
    			player.getEquipment().set(new Item(7462), Equipment.SLOT_HANDS); // Barrows gloves
    			player.getEquipment().set(new Item(2414), Equipment.SLOT_CAPE); // Zamorak Cape
    			player.getEquipment().set(new Item(2550), Equipment.SLOT_RING); // Ring of recoil
    			player.getInventory().add(new Item(4675, 1)); // Ancient Staff
    			player.getInventory().add(new Item(3842, 1)); // Zamorak book
    			player.getInventory().add(new Item(4091, 1)); // Blue mystic robetop
    			player.getInventory().add(new Item(4093, 1)); // Blue mystic robeskirt
    			player.getInventory().add(new Item(2503, 1)); // Black d'hide top
    			player.getInventory().add(new Item(5698, 1)); // Dragon dagger
    			player.getInventory().add(new Item(2440, 1)); // Strength potion
    			player.getInventory().add(new Item(2436, 1)); // Attack potion
    			player.getInventory().add(new Item(3040, 1)); // Magic potion
    			player.getInventory().add(new Item(6685, 3)); // Saradomin brew
    			player.getInventory().add(new Item(3024, 2)); // Super restore
    			player.getInventory().add(new Item(560, 800)); // Death runes
    			player.getInventory().add(new Item(565, 400)); // Blood runes
    			player.getInventory().add(new Item(555, 1200)); // Astral runes
    			player.getInventory().add(new Item(385, 50)); // Shark
    Basic example...could be done better. took me all of about 15 seconds.
    as in copy paste?
    Reply With Quote  
     

  7. #6  
    Banned

    Join Date
    Jul 2011
    Posts
    1,772
    Thanks given
    495
    Thanks received
    426
    Rep Power
    0
    Quote Originally Posted by Torchic View Post
    Code:
    			player.getEquipment().set(new Item(4587), Equipment.SLOT_WEAPON); // Dragon scimitar
    			player.getEquipment().set(new Item(6524), Equipment.SLOT_SHIELD); // Tokz-ket-xil
    			player.getEquipment().set(new Item(6129), Equipment.SLOT_CHEST); // Rockshell platebody
    			player.getEquipment().set(new Item(6130), Equipment.SLOT_LEGS); // Rockshell platelegs
    			player.getEquipment().set(new Item(10828), Equipment.SLOT_HELM); // Helm of Neitznot
    			player.getEquipment().set(new Item(3105), Equipment.SLOT_BOOTS); // Climbing boots
    			player.getEquipment().set(new Item(1712), Equipment.SLOT_AMULET); // Amulet of glory
    			player.getEquipment().set(new Item(7462), Equipment.SLOT_HANDS); // Barrows gloves
    			player.getEquipment().set(new Item(2414), Equipment.SLOT_CAPE); // Zamorak Cape
    			player.getEquipment().set(new Item(2550), Equipment.SLOT_RING); // Ring of recoil
    			player.getInventory().add(new Item(4675, 1)); // Ancient Staff
    			player.getInventory().add(new Item(3842, 1)); // Zamorak book
    			player.getInventory().add(new Item(4091, 1)); // Blue mystic robetop
    			player.getInventory().add(new Item(4093, 1)); // Blue mystic robeskirt
    			player.getInventory().add(new Item(2503, 1)); // Black d'hide top
    			player.getInventory().add(new Item(5698, 1)); // Dragon dagger
    			player.getInventory().add(new Item(2440, 1)); // Strength potion
    			player.getInventory().add(new Item(2436, 1)); // Attack potion
    			player.getInventory().add(new Item(3040, 1)); // Magic potion
    			player.getInventory().add(new Item(6685, 3)); // Saradomin brew
    			player.getInventory().add(new Item(3024, 2)); // Super restore
    			player.getInventory().add(new Item(560, 800)); // Death runes
    			player.getInventory().add(new Item(565, 400)); // Blood runes
    			player.getInventory().add(new Item(555, 1200)); // Astral runes
    			player.getInventory().add(new Item(385, 50)); // Shark
    Basic example...could be done better. took me all of about 15 seconds.

    15 seconds my ass lol
    Reply With Quote  
     

  8. #7  
    Soon to be a Blaziken

    Torchic's Avatar
    Join Date
    Mar 2011
    Age
    26
    Posts
    1,712
    Thanks given
    14
    Thanks received
    452
    Rep Power
    529
    Quote Originally Posted by Tristam View Post
    15 seconds my ass lol
    [Only registered and activated users can see links. ]

    Regardless, it honestly didn't take more than a couple of minutes. The hardest part is getting the item ids which is pretty simple still.

    Reply With Quote  
     

  9. #8  
    Banned

    Join Date
    Jul 2011
    Posts
    1,772
    Thanks given
    495
    Thanks received
    426
    Rep Power
    0
    Quote Originally Posted by Torchic View Post
    [Only registered and activated users can see links. ]

    Regardless, it honestly didn't take more than a couple of minutes. The hardest part is getting the item ids which is pretty simple still.
    why are u calling me a dipshit after you exaggerated then admitted it took longer? lmao
    Reply With Quote  
     

  10. Thankful user:


  11. #9  
    Sexy User
    User's Avatar
    Join Date
    Apr 2013
    Posts
    603
    Thanks given
    97
    Thanks received
    218
    Rep Power
    346
    Quote Originally Posted by Tristam View Post
    why are u calling me a dipshit after you exaggerated then admitted it took longer? lmao
    Because you are such a dipshit you felt the need to post on how he exaggerated in the first place, based on his original post it is quite clear why he said 15 seconds and that was to stress the ease of what he did.
    Reply With Quote  
     

  12. Thankful user:


  13. #10  
    Registered Member

    Join Date
    Aug 2012
    Posts
    3,161
    Thanks given
    2,843
    Thanks received
    855
    Rep Power
    2235
    Quote Originally Posted by User View Post
    Because you are such a dipshit you felt the need to post on how he exaggerated in the first place, based on his original post it is quite clear why he said 15 seconds and that was to stress the ease of what he did.
    Reply With Quote  
     

Page 1 of 2 12 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: 13
    Last Post: 09-09-2013, 08:33 PM
  2. Replies: 3
    Last Post: 09-07-2013, 05:50 PM
  3. Replies: 2
    Last Post: 06-05-2013, 10:04 AM
  4. [718[ matrix based - setting up forum
    By Installed in forum Requests
    Replies: 2
    Last Post: 05-18-2013, 05:13 AM
  5. Can anyone help set up my 718 server?
    By inytrixx in forum Help
    Replies: 0
    Last Post: 01-31-2013, 03:42 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
  •