diff options
author | Reid <reidyaro@gmail.com> | 2012-06-13 20:38:45 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-06-13 20:38:45 +0200 |
commit | b57db5ddac56d20fd01d7f9f68195c0dc495b1b9 (patch) | |
tree | 5351c6b2e8bbf2f08d754227a22662983eba6208 | |
parent | 42babbf3c88ee43abe1e319819c1a6f6877a0dfb (diff) | |
download | serverdata-b57db5ddac56d20fd01d7f9f68195c0dc495b1b9.tar.gz serverdata-b57db5ddac56d20fd01d7f9f68195c0dc495b1b9.tar.bz2 serverdata-b57db5ddac56d20fd01d7f9f68195c0dc495b1b9.tar.xz serverdata-b57db5ddac56d20fd01d7f9f68195c0dc495b1b9.zip |
Update 000-2-3 wlk,
Correct an incorect gender tag on julia.txt,
Add direction on tarlan script.
-rw-r--r-- | data/000-2-3.wlk | bin | 2760 -> 2760 bytes | |||
-rw-r--r-- | npc/000-1/tarlan.txt | 33 | ||||
-rw-r--r-- | npc/000-2-0/julia.txt | 2 |
3 files changed, 33 insertions, 2 deletions
diff --git a/data/000-2-3.wlk b/data/000-2-3.wlk Binary files differindex 17b127e2..9bd58d35 100644 --- a/data/000-2-3.wlk +++ b/data/000-2-3.wlk diff --git a/npc/000-1/tarlan.txt b/npc/000-1/tarlan.txt index 5284fc5d..b59fd86e 100644 --- a/npc/000-1/tarlan.txt +++ b/npc/000-1/tarlan.txt @@ -7,8 +7,39 @@ 000-1.gat,35,43,0,1 script Tarlan 315,{ mesn; - mesq l(""); + setnpcdir 2; + set @a, rand(4); + if (@a == 0) goto L_HardToHit; + if (@a == 1) goto L_Aouch; + if (@a == 2) goto L_11; + if (@a == 3) goto L_22; + + mesq l("."); + + goto l_Close; + +L_HardToHit: + mesq l("These Croco Trees are full of Croconut, but they are so hard to hit."); + + goto l_Close; + +L_Aouch: + mesq l("Aouch! My head..."); + next; + mesq l("Damned Croconut."); + + goto l_Close; + +L_11: + mesq l("."); + goto l_Close; + +L_22: + mesq l("."); + +L_Close: + setnpcdir 4; close; }
\ No newline at end of file diff --git a/npc/000-2-0/julia.txt b/npc/000-2-0/julia.txt index c0de90fd..58c1ad8d 100644 --- a/npc/000-2-0/julia.txt +++ b/npc/000-2-0/julia.txt @@ -16,7 +16,7 @@ 000-2-0.gat,27,24,0,0 script Julia 304,2,10;5,{
mesn;
- mesq g(l("Hello dear!");
+ mesq lg("Hello dear!");
next;
mesq l("What do you want today?");
next;
|