- if players bring the item he/she can enter the warper
- if players go out and deside to enter again he /she need to bring item required again
thank you this is the script
prontera,162,176,0 script Mining 1907,3,3,{
mes "[^0000FFMining Entrance^000000]";
switch(QuestWarp) {
default:
mes "Before i warp you to mining ground you must have mithril coin from skill matching event";
mes "5x Mithril Coin";
mes "1x Gold Coin US";
QuestWarp = 1;
close;
case 1:
if(countitem(674) >= 5 && countitem(7720) >= 1) {
mes "Great! You have the items.";
select("Warp Me");
delitem 7720,1;
delitem 674,5;
QuestWarp = 2;
warp "force_2-2",173,121;
end;
} else {
mes "Bring me the items I asked for!";
close;
}
case 2:
mes "Would you like to warp?";
select("Yes!");
warp "force_2-2",173,121;
end;
}
}
Question
Quesooo
good day please help me with this script
- if players bring the item he/she can enter the warper
- if players go out and deside to enter again he /she need to bring item required again
thank you this is the script
prontera,162,176,0 script Mining 1907,3,3,{ mes "[^0000FFMining Entrance^000000]"; switch(QuestWarp) { default: mes "Before i warp you to mining ground you must have mithril coin from skill matching event"; mes "5x Mithril Coin"; mes "1x Gold Coin US"; QuestWarp = 1; close; case 1: if(countitem(674) >= 5 && countitem(7720) >= 1) { mes "Great! You have the items."; select("Warp Me"); delitem 7720,1; delitem 674,5; QuestWarp = 2; warp "force_2-2",173,121; end; } else { mes "Bring me the items I asked for!"; close; } case 2: mes "Would you like to warp?"; select("Yes!"); warp "force_2-2",173,121; end; } }
12 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.