Well i have a problem, when i kill the porings that spawn, it gives the error :
[Error]: npc_event: event not found [summon Guide::L_PoringKilled]
If anyone could help, that would be great.
new_1-1,50,114,5 script Leveling Guide 442,{
if (LevelA == 0) {
mes "[Leveling Guide]";
mes "Hello " + strcharinfo(0) + "";
mes "I can see you're new here and are";
mes "in need of some assistance.";
next;
switch(select("Sure","No I'm fine")) {
case 1:
mes "[Leveling Guide]";
mes "Alright I'd like you to help me kill 15 porings";
next;
mes "[Leveling Guide]";
mes "Let me take you to somewhere special";
mes "When you have killed 15 porings";
mes "you will be warped back";
mes "";
mes "";
mes "^0000FFReward^000000";
mes "Base EXP: +70000";
mes "Job EXP: +50000";
next;
warp "quiz_02",363,346;
case 2:
mes "Leveling Guide]";
mes "Alright then, have a nice day";
close;
end;}}}
quiz_02,369,351,5 script Summon Guide 442,{
if (LevelA == 0) {
mes "[summon Man]";
mes "Want to start the kill?";
next;
menu "Yes",L_Yes,"No",-;
mes "[summon Man]";
mes "Alright talk to me when you're ready";
close;
L_Yes:
monster "quiz_02",362,347,"Quest Poring",1002,15,"Summon Guide::L_PoringKilled";
mes "[summon Man]";
mes "Now go and kill all the Poring I summoned";
close;
L_PoringKilled:
set $PoringKilled,$PoringKilled+1;
if ($PoringKilled==15) goto L_AllDead;
end;
L_AllDead:
set $PoringKilled,0;
end;
set LevelA,1;
warp "new_1-1",53,111;
end;
}
}