diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-10-19 17:36:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-10-19 17:36:41 -0300 |
commit | 18873a210079aa8f463d2d9d0438bce2b0fcc81a (patch) | |
tree | c1b0c6066376981b8df07399fe01a264fb8a1d0b /npc/031-7 | |
parent | 06d256053a09359e48f7d9ab77a14f81faf5599e (diff) | |
download | serverdata-18873a210079aa8f463d2d9d0438bce2b0fcc81a.tar.gz serverdata-18873a210079aa8f463d2d9d0438bce2b0fcc81a.tar.bz2 serverdata-18873a210079aa8f463d2d9d0438bce2b0fcc81a.tar.xz serverdata-18873a210079aa8f463d2d9d0438bce2b0fcc81a.zip |
"Placeholders" for Tyrca, Tametomo and Beatrice.
Diffstat (limited to 'npc/031-7')
-rw-r--r-- | npc/031-7/_import.txt | 1 | ||||
-rw-r--r-- | npc/031-7/tametomo.txt | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/npc/031-7/_import.txt b/npc/031-7/_import.txt index 9a8d59f60..dfa82e0d7 100644 --- a/npc/031-7/_import.txt +++ b/npc/031-7/_import.txt @@ -1,3 +1,4 @@ // Map 031-7: Aethyr Townhall // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/031-7/_warps.txt", +"npc/031-7/tametomo.txt", diff --git a/npc/031-7/tametomo.txt b/npc/031-7/tametomo.txt new file mode 100644 index 000000000..03a7770bc --- /dev/null +++ b/npc/031-7/tametomo.txt @@ -0,0 +1,30 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// Description: +// Questmaker Handbook 14.0 (F = Favorable) + +031-7,76,49,2 script Tametomo NPC_SAVIOR,{ + .@q = getq(AethyrQuest_Tametomo); + if (BaseLevel < 90) { + mesc l("The wizard seems busy. He ignores you."); + close; + } + mesn; + mesq l("Go away."); + close; + +OnInit: + .@npcId = getnpcid(.name$); + setunitdata(.@npcId, UDT_HEADBOTTOM, GraduationRobe); + setunitdata(.@npcId, UDT_HEADMIDDLE, ManaGloves); + setunitdata(.@npcId, UDT_HEADTOP, ImperialCrown); + setunitdata(.@npcId, UDT_HAIRSTYLE, 9); + setunitdata(.@npcId, UDT_HAIRCOLOR, 18); + npcsit; + + .sex = G_MALE; + .distance = 5; + end; +} + |