blob: f392732e00b73ed2e00fe1a34f82d64eb005230c (
plain) (
tree)
|
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Main Quest
003-0,49,35,0 script #MQ25Trigger NPC_HIDDEN,3,0,{
end;
OnTouch:
.@m$=getmap();
.@n$=instance_npcname(.name$);
.@ni=is_night();
dispbottom col(l("SCRIPT ERROR (%s/%s)", .@m$, .@n$), 1);
end;
OnInit:
disablenpc .name$;
end;
OnInstanceInit:
if (is_night())
debugmes "ERROR creating professor at 49, 24";
end;
}
|