karazu Posted September 14, 2013 Posted September 14, 2013 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 itemlike 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? Quote
Checkmate Posted September 14, 2013 Posted September 14, 2013 So you want use payment?What kind of payment? Zeny? Cash point? Vote point? Kafra point? Quote
Patskie Posted September 14, 2013 Posted September 14, 2013 So you want use payment? What kind of payment? Zeny? Cash point? Vote point? Kafra point? 10TCG for 1DAY Slipner/Megs etc.. Quote
karazu Posted September 14, 2013 Author Posted September 14, 2013 (edited) TCG My friend before made a script like a rent item } 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; } } its something like that Edited September 14, 2013 by Patskie Change to code Quote
Checkmate Posted September 14, 2013 Posted September 14, 2013 (edited) My bad... i actually did not understand enough what she/he asking for.. ==" Btw did you try thisHere or Here or Here Edited September 14, 2013 by CheckMate Quote
karazu Posted September 14, 2013 Author Posted September 14, 2013 look at the script that i posted its only like that Link number 1 only requires level, its good but it doesn't suit for what i need.Link number 2 is ok! but i need some guide to change the requirements to TCGLink number 3 doesnt suit my needs. Quote
Question
karazu
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?
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.