blob: 87a660324207dcdefed0e1f6d26068f6bfb5b04e (
plain) (
tree)
|
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Sagratha Quest
015-8-1,49,38,0 script #SaggyDungeonCore NPC_HIDDEN,{
// Not in instance, we don't care.
if (instance_id() < 0)
end;
end;
// There is no instance init
OnBegin:
// We're in an instance, ofc. But without player attached
initnpctimer;
end;
OnTimer1000:
end;
}
// Dummy NPC to fire #SaggyDungeonCore when you get close to battle scene
015-8-1,49,38,0 script #SaggyDungeonFire NPC_HIDDEN,0,0,{
end;
}
|