Thread: Spirit shield making

Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23
  1. #11  
    Registered Member
    Join Date
    Feb 2012
    Posts
    29
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    cant add more than one? i got 80 errors... heres what i have.
    Code:
    	public enum ItemOnItem {
    
    		ELYSIAN_SPIRIT_SHIELD(13750, 13736, 13742, Skills.PRAYER, 90, 10, Skills.SMITHING, 85, 10);
    		GODSWORD_SHARDS(11710, 11712, 1186, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		GODSWORD_BLADE(1186, 1174, 11690, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		GODSWORD_SHARDS(11712, 11714, 11692, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		GODSWORD_SHARDS(11710, 11714, 11688, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		ARMADYL_GODSWORD(11690, 11702, 11694, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		BANDOS_GODSWORD(11690, 11704, 11696, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		SARADOMIN_GODSWORD(11690, 11706, 11698, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		ZAMORAK_GODSWORD(11690, 11708, 11700, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    
    		/**
    Reply With Quote  
     

  2. #12  
    #FLAWLESSDUPES

    Monum3ntal's Avatar
    Join Date
    Oct 2011
    Posts
    704
    Thanks given
    35
    Thanks received
    83
    Rep Power
    92
    Quote Originally Posted by lizard king View Post
    cant add more than one? i got 80 errors... heres what i have.
    Code:
    	public enum ItemOnItem {
    
    		ELYSIAN_SPIRIT_SHIELD(13750, 13736, 13742, Skills.PRAYER, 90, 10, Skills.SMITHING, 85, 10);
    		GODSWORD_SHARDS(11710, 11712, 1186, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		GODSWORD_BLADE(1186, 1174, 11690, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		GODSWORD_SHARDS(11712, 11714, 11692, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		GODSWORD_SHARDS(11710, 11714, 11688, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		ARMADYL_GODSWORD(11690, 11702, 11694, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		BANDOS_GODSWORD(11690, 11704, 11696, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		SARADOMIN_GODSWORD(11690, 11706, 11698, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    		ZAMORAK_GODSWORD(11690, 11708, 11700, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    
    		/**
    Code:
    		ELYSIAN_SPIRIT_SHIELD(13750, 13736, 13742, Skills.PRAYER, 90, 10, Skills.SMITHING, 85, 10),
    		GODSWORD_SHARDS(11710, 11712, 1186, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		GODSWORD_BLADE(1186, 1174, 11690, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		GODSWORD_SHARDS(11712, 11714, 11692, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		GODSWORD_SHARDS(11710, 11714, 11688, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		ARMADYL_GODSWORD(11690, 11702, 11694, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		BANDOS_GODSWORD(11690, 11704, 11696, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		SARADOMIN_GODSWORD(11690, 11706, 11698, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10),
    		ZAMORAK_GODSWORD(11690, 11708, 11700, Skills.PRAYER, 90, 10, Skills.SMITHING, 1, 10);
    Reply With Quote  
     

  3. #13  
    Donator

    Josh''s Avatar
    Join Date
    Jul 2012
    Age
    26
    Posts
    2,036
    Thanks given
    1,119
    Thanks received
    520
    Rep Power
    192
    What the fuck. I don't have ItemOnItemHandler.java :O
    Reply With Quote  
     

  4. #14  
    Strive for whats best.

    Chaz's Avatar
    Join Date
    Jul 2012
    Age
    28
    Posts
    2,499
    Thanks given
    376
    Thanks received
    614
    Rep Power
    170
    Quote Originally Posted by Joshreynolds123 View Post
    What the fuck. I don't have ItemOnItemHandler.java :O
    Because this is for 667.
    Reply With Quote  
     

  5. #15  
    Registered Member
    'Shinobi's Avatar
    Join Date
    Jan 2011
    Posts
    254
    Thanks given
    50
    Thanks received
    16
    Rep Power
    121
    This is not only for 667 it works on 718 if you have ItemOnItemHandler.java, I believe there is a snippet/tutorial to add that in.

    Edit: OT, good snippet. Goes fine with the other ones that add godswords and such. Can also use it as a reference to create your own item combinations which are easy to add in as long as you know how to correctly add them.
    Reply With Quote  
     

  6. #16  
    Strive for whats best.

    Chaz's Avatar
    Join Date
    Jul 2012
    Age
    28
    Posts
    2,499
    Thanks given
    376
    Thanks received
    614
    Rep Power
    170
    Quote Originally Posted by 'Shinobi View Post
    This is not only for 667 it works on 718 if you have ItemOnItemHandler.java, I believe there is a snippet/tutorial to add that in.

    Edit: OT, good snippet. Goes fine with the other ones that add godswords and such. Can also use it as a reference to create your own item combinations which are easy to add in as long as you know how to correctly add them.
    No shaaaaaaaat.
    Reply With Quote  
     

  7. #17  
    The Emperor of the Sands

    Azir's Avatar
    Join Date
    Nov 2008
    Posts
    2,466
    Thanks given
    8
    Thanks received
    487
    Rep Power
    117
    Quote Originally Posted by Java! View Post
    No shaaaaaaaat.
    and people call was i release stupid....


    Reply With Quote  
     

  8. #18  
    Banned

    Join Date
    Apr 2012
    Posts
    3,225
    Thanks given
    2,554
    Thanks received
    832
    Rep Power
    0
    Quote Originally Posted by King J Scape View Post
    and people call was i release stupid....
    inb4makesabitofsense
    Reply With Quote  
     

  9. #19  
    Strive for whats best.

    Chaz's Avatar
    Join Date
    Jul 2012
    Age
    28
    Posts
    2,499
    Thanks given
    376
    Thanks received
    614
    Rep Power
    170
    Quote Originally Posted by Demonhorn View Post
    inb4makesabitofsense
    What you just said didn't make a bit of sense.
    Reply With Quote  
     

  10. #20  
    Donator

    Josh''s Avatar
    Join Date
    Jul 2012
    Age
    26
    Posts
    2,036
    Thanks given
    1,119
    Thanks received
    520
    Rep Power
    192
    Sorry, I thought this was for 718
    Reply With Quote  
     

Page 2 of 3 FirstFirst 123 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. [667] Godsword and Spirit Shield Making [667]
    By `Cocaine in forum Snippets
    Replies: 7
    Last Post: 04-08-2012, 12:52 AM
  2. Replies: 19
    Last Post: 07-18-2011, 05:20 AM
  3. Spirit shield help
    By divinescape99 in forum Help
    Replies: 2
    Last Post: 06-20-2011, 05:38 AM
  4. Replies: 20
    Last Post: 02-19-2010, 04:27 PM
  5. Help with spirit shield making
    By TaylorRawr in forum Help
    Replies: 5
    Last Post: 12-06-2009, 07:46 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
  •