Jump to content

karazu

Members
  • Content Count

    1115
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by karazu

  1. thank you! actually that script was just inserted in the "Universal Rental Npc" Script. (it was about the halter lead which can be rented for 1 TCG per day) yes I only posted that one since that the only line of script that i want. It can be a new NPC with that kind of script which can make people rent some GODLY items via TCG.
  2. 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; } }
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.