void NPCsScripts::npc_1051001(NPC* npc){
int state = npc->getState();
if(state == 0){
npc->addText("Hello due to issues on Gogo's Maple Story I'm giving free 600 Ilbi stars");
npc->addText("Do you want them?");
npc->sendYesNo();
}
else if(state == 1){
if(npc->getSelected() == YES){
npc->addText("Here you have, enjoy.");
npc->giveItem(2070006, 600);
npc->sendOK();
}
else{
npc->addText("Ok then, have a good day.");
npc->sendOK();
}
}
npc->end();
}
}
I made this and its working fine with me , its the storage keeper of kerning
he says "Hello due to issues on Gogo's Maple Story I'm giving free 600 Ilbi stars"
and if you click yes he gives them to you
