diff options
author | Reid <reidyaro@gmail.com> | 2015-06-17 00:53:24 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-06-17 00:53:24 +0200 |
commit | b2521321dccce26a55d85dc0033e598e0523953b (patch) | |
tree | 585d9e32ab97f5dd7f811611f0489356fe9fa26a | |
parent | b8409b308bed1d12c5bb609d435d2138efdd44e2 (diff) | |
download | serverdata-b2521321dccce26a55d85dc0033e598e0523953b.tar.gz serverdata-b2521321dccce26a55d85dc0033e598e0523953b.tar.bz2 serverdata-b2521321dccce26a55d85dc0033e598e0523953b.tar.xz serverdata-b2521321dccce26a55d85dc0033e598e0523953b.zip |
Add animation script on beuss.
-rw-r--r-- | npc/001-1/beuss.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/001-1/beuss.txt b/npc/001-1/beuss.txt index 181b873f..da2d2d79 100644 --- a/npc/001-1/beuss.txt +++ b/npc/001-1/beuss.txt @@ -5,13 +5,25 @@ // Angry member of the legion of Aemil. 001-1,45,52,0 script Beuss 424,{ + stopnpctimer; + initnpctimer; + setnpcdir 4; mesn; - mesq l("You are too weak, what a piece of bone like you is doing around here?"); + mesq l("You are too weak, what is a piece of bone like you doing around here?"); + goto L_Close; + +L_Close: close; +OnTimer10000: + setnpcdir 2; + stopnpctimer; + end; + OnInit: setnpcsex G_MALE; setnpcdistance 2; end; } + |