Thread: warrior guide

Results 1 to 2 of 2
  1. #1 warrior guide 
    Registered Member
    Join Date
    Jul 2008
    Posts
    3,163
    Thanks given
    235
    Thanks received
    74
    Rep Power
    209
    can someone convert this tut pls i use devo 2,7http://www.rune-server.org/showthread.php?t=164987
    Example:

    Code:

    if ((objectIDz == 4626)) {
    if(playerHasItem(553, 100)) {
    teleportToX = 2897;
    teleportToY = 3569;
    heightLevel = 1;
    }
    else if(!playerHasItem(553, 100)) {
    talk(588, "I am sorry, but you need atleast", "100 or more tokens to enter the cyclopes", "room. Try using the armour animator", "downstairs to receive some.", 198);
    }
    }

    Can became...

    Code:

    switch (objectIDz) {
    case 4626:
    if(!playerHasItem(553, 100)) {
    talk(588, "I am sorry, but you need atleast", "100 or more tokens to enter the cyclopes", "room. Try using the armour animator", "downstairs to receive some.", 198);
    break;
    }
    teleportToX = 2897;
    teleportToY = 3569;
    heightLevel = 1;
    break;
    }
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Aug 2008
    Posts
    144
    Thanks given
    0
    Thanks received
    0
    Rep Power
    18
    Quote Originally Posted by dani_gonzales View Post
    can someone convert this tut pls i use devo 2,7http://www.rune-server.org/showthread.php?t=164987
    Example:

    Code:

    if ((objectIDz == 4626)) {
    if(playerHasItem(553, 100)) {
    teleportToX = 2897;
    teleportToY = 3569;
    heightLevel = 1;
    }
    else if(!playerHasItem(553, 100)) {
    talk(588, "I am sorry, but you need atleast", "100 or more tokens to enter the cyclopes", "room. Try using the armour animator", "downstairs to receive some.", 198);
    }
    }

    Can became...

    Code:

    switch (objectIDz) {
    case 4626:
    if(!playerHasItem(553, 100)) {
    talk(588, "I am sorry, but you need atleast", "100 or more tokens to enter the cyclopes", "room. Try using the armour animator", "downstairs to receive some.", 198);
    break;
    }
    teleportToX = 2897;
    teleportToY = 3569;
    heightLevel = 1;
    break;
    }
    LMFAO, I usually don't flame people but you walked into this one. Why the Fuck would someone clean up a tut for you? It's bad enough someone is telling you step by step where to put things in your server, now you want someone to go through the tutorial and make everything perfect for you? LMFAO Please l2 program.....This is what makes RSPS's suck....Honestly...WOW all people want is to be spoon fed..Then he's gonna release his source and say "AMG PERFECT WARRIOR GUILD"
    Credits: 100% ME


    Bringin' it back old School.....
    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
  •