Im not fixing anything for you because those swords arent supposed to be a problem, anyone who can actually get into that dungeon the real way must have a pc that can handle the bolts not to mention those are some of the hardest non mvp monsters
just make it into a variable and set it to 1 for your account once you do it and return false if 1
set #tutorial_air1,0;
or maybe its @ not # for account, pretty sure pound is character
just place that at the bottom of the job change
then at the top do this
if (#tutorial_air1 == 0) {
mes "sorry you already use the promo red potion";
end;
}
cant you just use if itemcount for the red potion and check for novice yourself ? open the script commands doc
if (countitem(501) => 1 && Class == JOB_NOVICE ) {
removeitem 501
change job
end;
}
etc etc
I would like to be able to use an item , that use viewpoint script command, to mark all of an npc, including its duplicates on the current map
can this be done ? thank you
unless i gotta make a bunch of arrays and functions then ill figure it out
nvm i can use questinfo
If anyone curious as to what i was trying to do was to make an item trigger the showevent functionrino
item
Script: <" callfunc "Fairyorb"; ">
npc
function script Fairyorb {
doevent("Soldier::OnFairyorb");
end;
}
macanu,187,145,2 script Soldier 4_SOLDIER01,{
OnFairyorb:
showevent 1,1;
}