diff options
author | Wushin <pasekei@gmail.com> | 2015-05-02 22:23:06 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-05-02 22:23:06 -0500 |
commit | 71578221bf847b9f6849604f3f738bbd5a232085 (patch) | |
tree | 21e6d1e9b3c8e1a8ff3503b2f662cc9d89ff6542 | |
parent | de1654d92d83fdee95ee20ec4c2f07cba6e0403a (diff) | |
parent | 3d4a9b63fc7bafc6e27ebaee66d36a83ddf846c0 (diff) | |
download | serverdata-71578221bf847b9f6849604f3f738bbd5a232085.tar.gz serverdata-71578221bf847b9f6849604f3f738bbd5a232085.tar.bz2 serverdata-71578221bf847b9f6849604f3f738bbd5a232085.tar.xz serverdata-71578221bf847b9f6849604f3f738bbd5a232085.zip |
Merge pull request #351 from nashley/npc/hurnscald_constable
Add a Constable to Hurnscald
-rw-r--r-- | world/map/npc/009-1/_import.txt | 1 | ||||
-rw-r--r-- | world/map/npc/009-1/constable.txt | 11 | ||||
-rwxr-xr-x | world/map/npc/functions/debug.txt | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/world/map/npc/009-1/_import.txt b/world/map/npc/009-1/_import.txt index 32014688..4c902627 100644 --- a/world/map/npc/009-1/_import.txt +++ b/world/map/npc/009-1/_import.txt @@ -3,6 +3,7 @@ map: 009-1 npc: npc/009-1/_mobs.txt npc: npc/009-1/_warps.txt +npc: npc/009-1/constable.txt npc: npc/009-1/dock.txt npc: npc/009-1/guide.txt npc: npc/009-1/jack.txt diff --git a/world/map/npc/009-1/constable.txt b/world/map/npc/009-1/constable.txt new file mode 100644 index 00000000..c82a8b21 --- /dev/null +++ b/world/map/npc/009-1/constable.txt @@ -0,0 +1,11 @@ +// + +009-1,52,33,0|script|Constable Bob|419 +{ + mes "[Constable Hank Atkins]"; + mes "\"Hello.\""; + mes "\"I've been getting complaints of lawlessness in Hurnscald recently, so I thought I'd come down here myself and explain the rules.\""; + mes "\"Please make sure that you follow them!\""; + callfunc "GameRules"; + close; +} diff --git a/world/map/npc/functions/debug.txt b/world/map/npc/functions/debug.txt index 5affb8f0..7885c821 100755 --- a/world/map/npc/functions/debug.txt +++ b/world/map/npc/functions/debug.txt @@ -936,7 +936,7 @@ OnInit: end; } -009-1,52,33,0|script|Debug#2|154 +009-1,45,33,0|script|Debug#2|154 { callfunc "Debug"; end; |