Can someone please add a worth of 20million zeny when renting a God Item.
Heres the script:
prontera,161,178,5 script God Item Rental 806,{
mes "[God Item Rental]";
if(hasitem == 1) {
mes "Hello. You already claimed your rental God items.";
close;
}
else
{
mes "Hello "+strcharinfo(0)+"!";
mes "I can let you use my God item set for ^008C00a day^000000! Please make sure that you have reached the required level to use these items.";
next;
mes "Sleipnir - ^8C0000Level 94^000000";
mes "Megingjard - ^8C0000Level 94^000000";
mes "Mjolnir - ^8C0000Level 94^000000";
mes "Brisingamen - ^8C0000Level 94^000000";
mes "Asperika - ^8C0000Level 94^000000";
switch(select("Rent the items:Maybe later")) {
case 1:
set hasitem, 1;
rentitem 2629,432000;
rentitem 2630,432000;
rentitem 2410,432000;
rentitem 5013,432000;
rentitem 1530,432000;
rentitem 2541,432000;
close;
break;
case 2:
mes "OK. Maybe some other time.";
close;
break;
}
}
}
Question
Kanor
Hello,
Can someone please add a worth of 20million zeny when renting a God Item.
Heres the script:
Edited by Kanor6 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.