diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-24 14:34:59 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-24 14:34:59 -0300 |
commit | 3b20961d1dfe6e4b932ef607d4ff6ce0faee128b (patch) | |
tree | 087b410a7cf8b130b8d270292058602f1d87b67e | |
parent | 20014a0c0c595aebe906229a6aabd2c283157763 (diff) | |
download | serverdata-3b20961d1dfe6e4b932ef607d4ff6ce0faee128b.tar.gz serverdata-3b20961d1dfe6e4b932ef607d4ff6ce0faee128b.tar.bz2 serverdata-3b20961d1dfe6e4b932ef607d4ff6ce0faee128b.tar.xz serverdata-3b20961d1dfe6e4b932ef607d4ff6ce0faee128b.zip |
King Arthur the Micksha
-rw-r--r-- | npc/042-0/_import.txt | 1 | ||||
-rw-r--r-- | npc/042-0/arthur.txt | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/npc/042-0/_import.txt b/npc/042-0/_import.txt index 208d161d7..93ab82793 100644 --- a/npc/042-0/_import.txt +++ b/npc/042-0/_import.txt @@ -1,4 +1,5 @@ // Map 042-0: Camelot - Throne Room // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/042-0/_warps.txt", +"npc/042-0/arthur.txt", "npc/042-0/mf.txt", diff --git a/npc/042-0/arthur.txt b/npc/042-0/arthur.txt new file mode 100644 index 000000000..562148f61 --- /dev/null +++ b/npc/042-0/arthur.txt @@ -0,0 +1,25 @@ +// TMW 2 Script +// Author: +// Jesusalva +// Micksha +// Description: +// Part of Kamelot Guild Dungeon + +042-0,58,28,0 script King Arthur NPC_KING_ARTHUR,{ + npctalkonce l("Don't bore me."); + end; + + +OnInit: + .distance=4; + .sex=G_MALE; + npcsit; + end; + +OnInstanceInit: + .distance=4; + .sex=G_MALE; + npcsit; + end; +} + |