diff options
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; +} |