Thread: [pi]help asap

Results 1 to 7 of 7
  1. #1 [pi]help asap 
    Registered Member
    Join Date
    Apr 2012
    Posts
    33
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    Source: Solitude

    You must be Donator to wear EVERYTHING...

    Where do i change this...?

    The message i get is "You must be a donator to wear this item."

    And the code i found for it was:
    Code:
    if(c.isDonator == 0)
    			for(int i : donItems)
    			if(12742 == i) {
    				c.sendMessage("You must be a donator to wear this item.");
    			return false;
    		}
    Thats in ItemAssist.java / Its for Donator Cape
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Dec 2011
    Posts
    177
    Thanks given
    11
    Thanks received
    16
    Rep Power
    20
    c.isDonator == 0 Try looking for that
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Apr 2012
    Posts
    33
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    I've tried but i cant find anything
    Reply With Quote  
     

  4. #4  
    Registered Member
    LeBron James's Avatar
    Join Date
    Jan 2009
    Posts
    1,510
    Thanks given
    166
    Thanks received
    129
    Rep Power
    165
    search "donItems"



    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Apr 2012
    Posts
    33
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    I have but i've just deleted the donator cape so yea...
    Reply With Quote  
     

  6. #6  
    Registered Member

    Join Date
    May 2009
    Posts
    1,440
    Thanks given
    655
    Thanks received
    530
    Rep Power
    366
    if(c.isDonator == 0)
    for(int i : donItems)
    if(12742 == i) {
    c.sendMessage("You must be a donator to wear this item.");
    return false;
    }
    Remove all of that, save, compile, restart.
    Retired from RSPS development 2008-2018
    Reply With Quote  
     

  7. #7  
    Fuckin PRO Derek's Avatar
    Join Date
    May 2008
    Posts
    1,257
    Thanks given
    38
    Thanks received
    86
    Rep Power
    67
    Quote Originally Posted by quackie View Post
    Source: Solitude

    You must be Donator to wear EVERYTHING...

    Where do i change this...?

    The message i get is "You must be a donator to wear this item."

    And the code i found for it was:
    Code:
    if(c.isDonator == 0)
    			for(int i : donItems)
    			if(12742 == i) {
    				c.sendMessage("You must be a donator to wear this item.");
    			return false;
    		}
    Thats in ItemAssist.java / Its for Donator Cape
    If you want to fix it so donator items work for donator items then replace
    Code:
    if(c.isDonator == 0)
    			for(int i : donItems)
    			if(12742 == i) {
    				c.sendMessage("You must be a donator to wear this item.");
    			return false;
    		}
    with this
    Code:
    if(c.isDonator == 0) {
    			for(int i : donItems)
    			if(12742 == i) {
    				c.sendMessage("You must be a donator to wear this item.");
    			return false;
    		}
    }
    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 ASAP
    By 'Zant in forum Help
    Replies: 0
    Last Post: 11-17-2011, 05:19 AM
  2. Need help ASAP
    By hitman2009 in forum Help
    Replies: 0
    Last Post: 07-13-2010, 07:32 PM
  3. Help ASAP please :)
    By Le Jitt in forum Help
    Replies: 7
    Last Post: 11-12-2009, 06:20 PM
  4. Need help ASAP
    By CTucker in forum Application Development
    Replies: 3
    Last Post: 10-21-2009, 05:08 PM
  5. Need help ASAP
    By bmaw in forum Requests
    Replies: 1
    Last Post: 10-08-2009, 04:10 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
  •