diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-01-13 20:50:42 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-01-13 20:50:42 +0100 |
commit | 20df2abc1aca00d6aa5dc78347133890f36b32f3 (patch) | |
tree | 4ad4a8bb8b0605473a702e314799a4626347721a /npc/test/npc4.txt | |
download | serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.gz serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.bz2 serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.xz serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.zip |
Initial commit
Diffstat (limited to 'npc/test/npc4.txt')
-rw-r--r-- | npc/test/npc4.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/test/npc4.txt b/npc/test/npc4.txt new file mode 100644 index 000000000..b85d1bf88 --- /dev/null +++ b/npc/test/npc4.txt @@ -0,0 +1,30 @@ +// Evol scripts. +// Author: +// 4144 +// Description: +// test npc4 + +test,25,20,0 script npc4 NPC_PLAYER,{ + close; +OnTimer1000: + domovestep; +OnInit: + .walkmask = WALK_WATER; + initpath "move", 20, 20, + "sit", 0, 0, + "dir", 6, 0, + "move", 25, 20, + "emote", 3, 0, +// "class", 104, 0, + "speed", 100, 0, + "wait", 2, 0, + "move", 22, 10, + "rmove", 3, 3, +// "class", 801, 0, + "speed", 200, 0, + "wait", 1, 0, + "warp", 22, 30, + "goto", 0, 0; + initialmove; + initnpctimer; +} |