diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-02-06 18:21:14 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-02-06 18:21:14 +0100 |
commit | f6e732ec840a24758099c481f9a941331d3382bc (patch) | |
tree | 208025ef555d153c6bc3fafefece7dcc3527117f /npc/005-4/tolchi.txt | |
parent | 67cf28c842fde3a13e4be06ac23db89a815cdedc (diff) | |
download | serverdata-f6e732ec840a24758099c481f9a941331d3382bc.tar.gz serverdata-f6e732ec840a24758099c481f9a941331d3382bc.tar.bz2 serverdata-f6e732ec840a24758099c481f9a941331d3382bc.tar.xz serverdata-f6e732ec840a24758099c481f9a941331d3382bc.zip |
add movement to tolchi in 005-4
Diffstat (limited to 'npc/005-4/tolchi.txt')
-rw-r--r-- | npc/005-4/tolchi.txt | 54 |
1 files changed, 39 insertions, 15 deletions
diff --git a/npc/005-4/tolchi.txt b/npc/005-4/tolchi.txt index 99d68d691..4653259a8 100644 --- a/npc/005-4/tolchi.txt +++ b/npc/005-4/tolchi.txt @@ -1,24 +1,48 @@ -// Evol scripts. +// TMW2 scripts. // Author: -// Reid -// Description: -// Light Armor shop keeper. +// Saulc // Variables: -// ArtisQuests_Enora +// CandorQuests_BlackSmith // Values: // 0 Default. -// 1 BlackSmith quest delivered. -// 2 Chelios Quest given. -// 3 Chelios Quest done. -// 4 BlackSmith gave the sword. -// 5 Light Armor Shop quest delivered. -// 6 Light Armor Shop gave the cloths. +// 1 BlackSmith quest ask for 1 iron oore +// 2 BlackSmith quest ask for 3 coal +// 3 BlackSmith quest ask for 1 iron ingot -005-4,42,37,0 script Tolchi NPC_ELVEN_FEMALE_ARMOR_SHOP,{ +005-4,42,37,0 script Tolchi NPC_RAIJIN_FEMALE_LEGION_ARTIS,{ + + +OnTimer1000: + domovestep; OnInit: - .sex = G_FEMALE; - .distance = 2; - end; + initpath "move", 44, 35, + "dir", UP, 0, + "wait", 30, 0, + "move", 43, 40, + "dir", UP, 0, + "wait", 30, 0, + "move", 40, 35, + "dir", UP, 0, + "wait", 30, 0, + "dir", LEFT, 0, + "wait", 30, 0, + "move", 42, 37, + "dir", DOWN, 0, + "dir", UP, 0, + "wait", 30, 0, + "Mmove", 45, 37, + "dir", DOWN, 0, + "wait", 30, 0, + "move", 33, 37, + "dir", LEFT, 0, + "wait", 30, 0, + "move", 33, 37, + "dir", RIGHT, 0, + "wait", 30, 0; + + initialmove; + initnpctimer; + .distance = 5; } |