prontera,150,150,3 script Man-Hunt Event 831,{
if(getgmlevel() >= 99){
mes "Do you want to start the Hunt?";
if(select("Yes:No") -1){
next;
}else
deletearray $in$, getarraysize($in$);
set .i, 0;
donpcevent "Inside Event::OnGMStart";
next;
}
if($hstart == 1){
mes "Do you want to join the Hunt?";
if(select("Yes:No") -1) end;
mes .i;
warp "06guild_01",50,50;
set $in$[.i], strcharinfo(0);
set .i, .i++;
close;
}else if($hstart == 2){
mes "The hunt has started, you are not allowed to join now.";
mes "Your current Points are: " + #MHPoint;
mes "";
mes "You get 1 Item for 1 Point.";
if(select("Reward:Cancel") -1) end;
next;
for(.@i = 0; .@i < #MHPoint ; .@i ++){
getitem .get_item, .get_num;
}
set #MHPoint, 0;
mes "You got "+.@i+" " + .get_item + ".";
close;
}else{
mes "The hunt is not active!";
mes "Your current Points are: " + #MHPoint;
mes "";
mes "You get 1 Item for 1 Point.";
if(select("Reward:Cancel") -1) end;
next;
for(.@i = 0; .@i < #MHPoint ; .@i ++){
getitem .get_item, .get_num;
}
set #MHPoint, 0;
mes "You got "+.@i+" " + .get_item + ".";
close;
}
OnInit:
.get_item = 607; //Item you get
.get_num = 1; //how many?
end;
}