hi, im looking for this Magic Gear script i saw that it can be found on npc/merchant/renters.txt but when i checked i didnt find it.. i saw a script here but when i test it its not working.. the NPC was there but when i try to talk to it even im on Mechanics jobs nothing happens..
here's the script can anyone check this out ?
thanks in advance
// Magic Gear Renter
prontera,163,178,4 script Magic Gear Master 105,{
mes "[Magic Gear Master]";
if (Class == Job_Mechanic || Class == Job_Mechanic_T || Class == Job_Baby_Mechanic) {
mes "Welcome. Would you like to rent a Magic Gear?";
next;
switch(select("Yes:No")) {
case 1:
if (!getskilllv("NC_MADOLICENCE")) {
mes "[Magic Gear Master]";
mes "Please learn how to use a Magic Gear first.";
close;
}
else if (checkmadogear()) {
mes "[Magic Gear Master]";
mes "You already have a Magic Gear.";
close;
}
else if(ismounting()) {
mes "[Magic Gear Master]";
mes "Please remove your cash mount.";
close;
}
setmadogear;
close;
case 2:
mes "[Magic Gear Master]";
mes "I see. Then have a great day.";
close;
}
}
mes "How may I help you?";
mes "Magic Gears are only available for Mechanics.";
close;
}
Question
jigsgfx
hi, im looking for this Magic Gear script i saw that it can be found on npc/merchant/renters.txt but when i checked i didnt find it.. i saw a script here but when i test it its not working.. the NPC was there but when i try to talk to it even im on Mechanics jobs nothing happens..
here's the script can anyone check this out ?
thanks in advance
Edited by jigsgfx8 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.