prontera,138,183,5 script Mount System Manager 921,{
mes "[Mount Manager]";
mes "You want to Rent the [Reins of Mount]?. you need to pay 10,000,000z and bring 2x [Reins] - drop by abbysmal knight monster";
mes "This item will be expire for 7 days";
mes "[Mount Manager]";
mes "Let see if you already Have [Reins of Mount] and the requirements...";
next;
if (countitem(12622) > 1) goto noway;
if (zeny < 10000000) goto nocash;
if (countitem(1064) < 2) goto noitem;
rentitem 12622,432000;
set Zeny,Zeny -10000000;
delitem 1064,2;
close;
noway:
mes "you can't Rent [Reins of Mount]. You already have 1x in your inventory.";
close;
nocash:
mes "[Mount Manager]";
mes "You dont have enough money to rent it, please come back if you already have enough money.";
close;
noitem:
mes "[Mount Manager]";
mes "You dont have enough [Reins] you can get it from abbysmal knight monster.";
close;
L_bye:
mes "[Mount Manager]";
mes "Have a nice day, please come back again.";
close;
}
Question
GM Takumirai
can someone check my script?
Edited by Takumirai4 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.