diff options
author | Wombat <hpwombat@yahoo.com> | 2010-10-13 14:33:00 -0400 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2010-11-07 14:52:31 +0100 |
commit | 4bb4c388174c9efb583852d27a6d67f603376eb8 (patch) | |
tree | e4beff923097c773ab607ef7e1417fe27b65c161 /npc/011-6/_mobs.txt | |
parent | 001a9d1e61b1785998b26bf30b8c5d103a3c2a65 (diff) | |
download | serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.tar.gz serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.tar.bz2 serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.tar.xz serverdata-4bb4c388174c9efb583852d27a6d67f603376eb8.zip |
Bandit Quest and fixes to peter, mikhail
Bandit quest changes, fixes to peter and mikhail, 011-6 mobs
Diffstat (limited to 'npc/011-6/_mobs.txt')
-rw-r--r-- | npc/011-6/_mobs.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/011-6/_mobs.txt b/npc/011-6/_mobs.txt index dda63569..9b6fc0a5 100644 --- a/npc/011-6/_mobs.txt +++ b/npc/011-6/_mobs.txt @@ -1,7 +1,31 @@ // 011-6 mobs +011-6.gat,0,0,0,0 monster Spiky Mushroom 1019,30,30000,100000,Mob011-6::On1019 +011-6.gat,0,0,0,0 monster Evil Mushroom 1013,15,30000,100000,Mob011-6::On1013 +011-6.gat,115,79,191,110 monster Bandit 1063,8,30000,100000,Mob011-6::On1063 +011-6.gat,0,0,0,0 monster Bat 1017,30,30000,100000,Mob011-6::On1017 011-6.gat,0,0,0 script Mob011-6 -1,{ +On1013: + set @mobID, 1013; + callfunc "MobPoints"; + break; + +On1017: + set @mobID, 1017; + callfunc "MobPoints"; + break; + +On1019: + set @mobID, 1019; + callfunc "MobPoints"; + break; + +On1063: + set @mobID, 1063; + callfunc "MobPoints"; + break; + end; } |