diff options
Diffstat (limited to 'npc/021-1')
-rw-r--r-- | npc/021-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/021-1/logic.txt | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/npc/021-1/_import.txt b/npc/021-1/_import.txt index 322b886cd..c5b485973 100644 --- a/npc/021-1/_import.txt +++ b/npc/021-1/_import.txt @@ -2,4 +2,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/021-1/_mobs.txt", "npc/021-1/_warps.txt", +"npc/021-1/logic.txt", "npc/021-1/yeti.txt", diff --git a/npc/021-1/logic.txt b/npc/021-1/logic.txt new file mode 100644 index 000000000..b57844cb0 --- /dev/null +++ b/npc/021-1/logic.txt @@ -0,0 +1,16 @@ +// TMW2 scripts. +// Authors: +// The Mana World Team +// Jesusalva +// Description: +// Cave logic + +021-1,155,196,0 script #MainLogic NPC_NOSPRITE,0,0,{ + if ($@CINDY_STATE == 0) goto L_Blocked; + //warp "031-4", 40, 70; + end; + +L_Blocked: + dispbottom l("This place is reeking blood. We better come again later."); + end; +} |