diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-15 19:43:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-15 19:43:00 -0300 |
commit | ffd7b573c0d4d0ebd4b3981fb9e867718a5849d1 (patch) | |
tree | dd447bd8d6a336bba4dc4f9473fbf0d6d2cf9beb /npc/025-1/commander.txt | |
parent | 5b399b1e3e5c6927871ee98daa0ff1ee893f0bd1 (diff) | |
download | serverdata-ffd7b573c0d4d0ebd4b3981fb9e867718a5849d1.tar.gz serverdata-ffd7b573c0d4d0ebd4b3981fb9e867718a5849d1.tar.bz2 serverdata-ffd7b573c0d4d0ebd4b3981fb9e867718a5849d1.tar.xz serverdata-ffd7b573c0d4d0ebd4b3981fb9e867718a5849d1.zip |
Fortress Town missing npcs
Diffstat (limited to 'npc/025-1/commander.txt')
-rw-r--r-- | npc/025-1/commander.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/025-1/commander.txt b/npc/025-1/commander.txt new file mode 100644 index 000000000..eca701f28 --- /dev/null +++ b/npc/025-1/commander.txt @@ -0,0 +1,22 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Leads the Alliance in the Fortress Town + +025-1,96,26,0 script Commander Povo NPC_BRGUARD_SPEAR,{ + mesn; + mesq l("Greetings %s, I am %s, the man in charge for the Alliance ocupation of Fortress Town.", (strcharinfo(0) == $MOST_HEROIC$ ? lg("Hero") : l("Adventurer"))); + next; + + // Endtrail + mes ""; + mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1; + close; + +OnInit: + .sex = G_MALE; + .distance = 5; + end; +} + |