Thread: [delta]donaion items[delta]

Results 1 to 2 of 2
  1. #1 [delta]donaion items[delta] 
    Registered Member
    Mister Maggot's Avatar
    Join Date
    Dec 2008
    Posts
    7,227
    Thanks given
    3,283
    Thanks received
    2,875
    Rep Power
    5000
    how can i make it so that u need to be a doner to be able to use some items, ui tried boolean process() but it didnt work (im used to czar)
    Reply With Quote  
     

  2. #2  
    tonic
    Guest
    Search For:
    Code:
    if(wearID == 1052 && q7 != 15){
    sM("You must complete Legends Quest to equip this.");
    return false;
    }
    Step 2: look just after the } but before the next
    Code:
    if
    paste this into the space

    Code:
    if(wearID == ITEMIDHERE && donator == 1){
    sM("You must be a Donator to Use This!");
    return false;
    }
    So it should look like this:
    Code:
    if(wearID == 1052 && q7 != 15){
    sM("You must complete Legends Quest to equip this.");
    return false;
    }
    if(wearID == 1050 && donator == 1){
    sM("You must be a Donator to use This!");
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •