diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-06 19:26:23 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-06 19:26:23 +0100 |
commit | 76ed64d09c767983c73eba2dfbb95af994e67934 (patch) | |
tree | 6d19181f9108cdd6962dfdca3a70926adeaa068f /npc/005-4/rosen.txt | |
parent | f6e732ec840a24758099c481f9a941331d3382bc (diff) | |
download | serverdata-76ed64d09c767983c73eba2dfbb95af994e67934.tar.gz serverdata-76ed64d09c767983c73eba2dfbb95af994e67934.tar.bz2 serverdata-76ed64d09c767983c73eba2dfbb95af994e67934.tar.xz serverdata-76ed64d09c767983c73eba2dfbb95af994e67934.zip |
add Tolchi quest
Diffstat (limited to 'npc/005-4/rosen.txt')
-rw-r--r-- | npc/005-4/rosen.txt | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/npc/005-4/rosen.txt b/npc/005-4/rosen.txt index 60bf6c73f..958d74dee 100644 --- a/npc/005-4/rosen.txt +++ b/npc/005-4/rosen.txt @@ -14,7 +14,7 @@ // 5 Light Armor Shop quest delivered. // 6 Light Armor Shop gave the cloths. -005-4,29,36,0 script Rosen NPC_ELVEN_FEMALE_ARMOR_SHOP,{ +005-4,29,36,0 script Rosen 451,{ function explain_ironingot { speech S_FIRST_BLANK_LINE | S_LAST_NEXT, @@ -69,9 +69,23 @@ } } while (1); +OnTimer1000: + domovestep; OnInit: - .sex = G_FEMALE; - .distance = 2; - end; -} + initpath "move", 28, 36, + "dir", DOWN, 0, + "wait", 31, 0, + "move", 31, 36, + "dir", DOWN, 0, + "wait", 31, 0, + "move", 25, 35, + "dir", UP, 0, + "wait", 2, 0, + "move", 29, 36, + "dir", DOWN, 0, + "wait", 31, 0; + initialmove; + initnpctimer; + .distance = 5; +} |