Quote:
Originally Posted by sssssssssss
Yup.
That was echo("trigger" SPC params[1]);
Putting .nick didn't work.
|
You have Jaqor but your variable is jaqor, and the lack of a nick would indicate to me that it's not finding the npc.
Variables are case-sensitive:
PHP Code:
function onCreated() {
temp.a = 1;
temp.A = 2;
echo(temp.a == temp.A);
echo(temp.a SPC temp.A);
}
//The script of NPC JerretNPC has been updated by fowlplay4
//0
//1 2
I would probably go back to using level instead of Control-NPC for now as well.