Thread: Help... killcount

Results 1 to 3 of 3
  1. #1 Help... killcount 
    Registered Member
    Join Date
    Apr 2010
    Posts
    83
    Thanks given
    10
    Thanks received
    4
    Rep Power
    3
    Alright I made a barrelchest god wars, and a requirement to enter the portal is 20 kills. When you get 20 kills it doesn't let you enter, but if theres a system update or dc it allows you to enter even if you don't have 20 kills. If you log out and log in it doesn't let you enter. Can someone please help me?
    This is my code:
    Code:
    if(objectID == 4153) {
    if(BarrelKill > 19){
    triggerTele(3170, 9758, 0);
    BarrelKill = 0;
    sM("The Barrelchest kills drain from you..");
    } else
    sM("You need at least 20 kills to get in the cave.");
    }
    Thanks
    Reply With Quote  
     

  2. #2  
    Registered Member
    PSNB's Avatar
    Join Date
    Aug 2009
    Posts
    885
    Thanks given
    8
    Thanks received
    103
    Rep Power
    590
    You've got to make them save on disconnect (character file).
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Jan 2008
    Posts
    1,328
    Thanks given
    14
    Thanks received
    19
    Rep Power
    416
    if(objectID == 4153){
    if(BarrelKill > 19){
    toX = 3170;
    toY = 9758;
    BarrelKill -= 19;
    sM("The Barrelchest kills drain from you..");
    } else
    sM("You need at least 20 kills to get in the cave.");
    }
    Might work, who knows.
    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
  •