yeah i was thinking in that when i went to sleep lol
but, the script also change a lil. right? for example, it would go like this?
// 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"
80001,0,1115,3,0,0,0,0,"Apha MvP Room-Side"
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;
erasequest 81001;
mes "How sad... allright good luck.";
close;
L_sure:
setquest 80001;
setquest 81001;
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) { //here is where i'm not sure how to do it x_x how to check 2 or more quests
mes "Not bad lol, here is your zeny!";
set Zeny,Zeny+1000000;
erasequest 80001;
erasequest 81001;
close;
}
x_x
if (checkquest (80001,HUNTING) == 2) {
how i make it to read 2 or more quests D:?
thnak you so much euphy for the repply