try this
prontera,155,181,5 script Diablo Akatsuki Suit 718,{
setarray .Item[0],
607,100,
608,10,
7539,1;
for( set .@i,0; .@i < getarraysize( .Item ) - 1; set .@i,.@i + 2 )
if( countitem( .Item[.@i] ) < .Item[.@i + 1] ){
mes "You required "+.Item[.@i + 1]+" x "+getitemname( .Item[.@i] )+" .";
close;
}
mes "Go in Kill AmonRa to get Custom Suit ?";
if( select("Hunt AmonRa:Cancel") == 2 ) close;
killmonster "guild_vs5","All";
warp "guild_vs5",50,50;
end;
}
guild_vs5,50,50,5 script Summoner 718,{
initnpctimer;
killmonster "guild_vs5","All";
monster "guild_vs5",0,0,"--ja--",1511,1,strnpcinfo(0)+"::OnMobKill";
hideonnpc strnpcinfo(0);
end;
OnMobKill:
hideoffnpc strnpcinfo(0);
getitem 7539,100;
stopnpctimer;
warp "prontera",155,181;
end;
OnTimer300000:
mapannounce "guild_vs5","Time's Up....",0;
hideoffnpc strnpcinfo(0);
stopnpctimer;
mapwarp "guild_vs5","prontera",155,181;
end;
}