Hello I've been searching all over in the forum about a Rental that ive been looking for but seems to be i cannot find one.    Its only like this, the NPC requires a certain Item to let the players rent an item  like for example :  10TCG for 1DAY  Slipner/Megs  etc..   I saw alot of post here about rental NPC but they dont have payments. can anyone help/give/show me please?   This is the script of my friend before and i think its not working anymore.    
  
   }        case 6: //halter lead          if (countitem(12622) > 0) {            mes "[Universal Rental Npc]";            mes "Sorry " + strcharinfo(0) + ", but you already have a halter lead.";            close;          } else if (countitem(7227) < 1) {            mes "[Universal Rental Npc]";            mes "Sorry " + strcharinfo(0) + ", but you need one TCG Card to rent one halter lead for one day.";            close;          } else {            mes "[Universal Rental Npc]";            mes "How many days do you intend to rent a halter lead?";            input @days;            if (countitem(7227) < @days) {              mes "[Universal Rental Npc]";              mes "I'm sorry " + strcharinfo(0) + ", but you need " + @days + " TCG Card to rent a halter lead for " + @days + " day(s).";              close;            } else {                delitem 7227, @days;                rentitem 12622, @days * 86400;                close;            }          }