diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-26 03:39:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-26 03:39:04 -0300 |
commit | 6569f451c9c75817825c86cd3b670b0b08f96b60 (patch) | |
tree | 8633d59d80f8044b81c3b4ac4f264a002c8f996e /npc/003-0 | |
parent | 6fdbb9c2bb8657ed641a06bc037dc54c5a302d03 (diff) | |
download | serverdata-6569f451c9c75817825c86cd3b670b0b08f96b60.tar.gz serverdata-6569f451c9c75817825c86cd3b670b0b08f96b60.tar.bz2 serverdata-6569f451c9c75817825c86cd3b670b0b08f96b60.tar.xz serverdata-6569f451c9c75817825c86cd3b670b0b08f96b60.zip |
Fix bugs, add placeholders
Diffstat (limited to 'npc/003-0')
-rw-r--r-- | npc/003-0/_import.txt | 1 | ||||
-rw-r--r-- | npc/003-0/mainquest.txt | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/npc/003-0/_import.txt b/npc/003-0/_import.txt index c9fea03ef..d7fe2f96f 100644 --- a/npc/003-0/_import.txt +++ b/npc/003-0/_import.txt @@ -2,5 +2,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/003-0/_mobs.txt", "npc/003-0/_warps.txt", +"npc/003-0/mainquest.txt", "npc/003-0/recepcionist.txt", "npc/003-0/trickmaster.txt", diff --git a/npc/003-0/mainquest.txt b/npc/003-0/mainquest.txt new file mode 100644 index 000000000..a145d111a --- /dev/null +++ b/npc/003-0/mainquest.txt @@ -0,0 +1,21 @@ +// 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; +} + |