Hello, i would like to know how to make the quest_db can allow to hunt more than 3 mobs, because i tryied that and it doesn't count the Eddgas.
Theres my script and the Quest Databse
// Quest Database
//
// Structure of Database:
// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title
80001,0,1059,3,1147,3,1150,3,"Apha MvP Room"
turbo_room,129,133,4 script Alpha MvP Quest 504,{
mes "[Hunter]";
mes "Hello, if you hunt some MvPs i will give you Zemy. Wanna try?";
next;
menu "~Sure!~",L_sure,"No thanks",L_no,"Drop Quest",L_drop;
L_drop:
erasequest 80001;
mes "How sad... allright good luck.";
close;
L_sure:
setquest 80001;
mes "Defeat those:";
mes "3 Mistress";
mes "3 Maya";
mes "3 Moonlight Flower";
mes "3 Eddga.";
next;
menu "-Got it!",L_ok,"-Done!.",L_hunted;
L_ok:
mes "Get them!!";
close;
L_hunted:
if (checkquest (80001,HUNTING) == 2) {
mes "Not bad lol, here is your zeny!";
set Zeny,Zeny+1000000;
erasequest 80001;
close;
}
Hello, i would like to know how to make the quest_db can allow to hunt more than 3 mobs, because i tryied that and it doesn't count the Eddgas.
Theres my script and the Quest Databse
turbo_room,129,133,4 script Alpha MvP Quest 504,{ mes "[Hunter]"; mes "Hello, if you hunt some MvPs i will give you Zemy. Wanna try?"; next; menu "~Sure!~",L_sure,"No thanks",L_no,"Drop Quest",L_drop; L_drop: erasequest 80001; mes "How sad... allright good luck."; close; L_sure: setquest 80001; mes "Defeat those:"; mes "3 Mistress"; mes "3 Maya"; mes "3 Moonlight Flower"; mes "3 Eddga."; next; menu "-Got it!",L_ok,"-Done!.",L_hunted; L_ok: mes "Get them!!"; close; L_hunted: if (checkquest (80001,HUNTING) == 2) { mes "Not bad lol, here is your zeny!"; set Zeny,Zeny+1000000; erasequest 80001; close; }than you in advance o:!
Link to comment
Share on other sites