diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2010-12-27 23:40:58 +0100 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2010-12-28 00:11:43 +0100 |
commit | 8032c02d7341011acdcdcc9e3b961bf312610992 (patch) | |
tree | 6f5d25d5d3e3ae5ace16fdfbf98b7f54fdf563d9 /npc/009-4 | |
parent | 2c1627f6bb0d5771957666bf5357d052da68201e (diff) | |
download | serverdata-8032c02d7341011acdcdcc9e3b961bf312610992.tar.gz serverdata-8032c02d7341011acdcdcc9e3b961bf312610992.tar.bz2 serverdata-8032c02d7341011acdcdcc9e3b961bf312610992.tar.xz serverdata-8032c02d7341011acdcdcc9e3b961bf312610992.zip |
mobs changed at 011-6, removing xmas, minor fixes
- rearranged the mobs in 011-6
- fixing the whole repo so it can be used with the java converter tool again.
- removing unused files:
- golbanez on gy
- directory names changed, so the old dirs were deleted
- removed xmas active: so golbanez and santa are gone, 031-3 is empty, the warps work for everyone now
- lots of pumpkin spawns are gone
Diffstat (limited to 'npc/009-4')
-rw-r--r-- | npc/009-4/_mobs.txt | 29 | ||||
-rw-r--r-- | npc/009-4/_warps.txt | 46 |
2 files changed, 0 insertions, 75 deletions
diff --git a/npc/009-4/_mobs.txt b/npc/009-4/_mobs.txt deleted file mode 100644 index 71cf010f..00000000 --- a/npc/009-4/_mobs.txt +++ /dev/null @@ -1,29 +0,0 @@ -// 009-4 Cave mobs
-// # see detailed description at orum.txt
-// Cavern
-009-4.gat,107,88,19,28 monster Silkworm 1035,3,20000,14000,Mob009-4::OnSilkworm
-009-4.gat,107,88,19,28 monster Cave Snake 1021,5,20000,14000,Mob009-4::OnCaveSnake
-
-009-4.gat,119,45,5,3 monster Silkworm 1035,3,20000,14000,Mob009-4::OnSilkworm
-009-4.gat,103,28,6,4 monster Cave Snake 1021,3,20000,14000,Mob009-4::OnCaveSnake
-009-4.gat,103,28,6,4 monster Silkworm 1035,2,20000,14000,Mob009-4::OnSilkworm
-
-009-4.gat,36,117,4,4 monster Maggot 1002,3,20000,14000,Mob009-4::OnMaggot
-009-4.gat,71,130,4,4 monster Maggot 1002,3,20000,14000,Mob009-4::OnMaggot
-
-009-4.gat,0,0,0 script Mob009-4 -1,{
-OnCaveSnake:
- set @mobID, 1021;
- callfunc "MobPoints";
- break;
-OnMaggot:
- set @mobID, 1002;
- callfunc "MobPoints";
- break;
-OnSilkworm:
- set @mobID, 1035;
- callfunc "MobPoints";
- break;
-
- end;
-}
diff --git a/npc/009-4/_warps.txt b/npc/009-4/_warps.txt deleted file mode 100644 index 9666a081..00000000 --- a/npc/009-4/_warps.txt +++ /dev/null @@ -1,46 +0,0 @@ -// 009-4 Cave Warps
-
-// Entrances
-009-4.gat,37,112 warp to Outside -1,-1,009-3.gat,162,114
-009-4.gat,37,123 warp to Lair -1,-1,009-4.gat,36,27
-
-009-4.gat,72,125 warp to Outside -1,-1,009-3.gat,162,114
-009-4.gat,72,136 warp to Lair -1,-1,009-4.gat,36,27
-
-// Caverns
-009-4.gat,103,22 warp to Lair -1,-1,009-4.gat,51,46
-009-4.gat,103,76 warp to Lair -1,-1,009-4.gat,51,46
-
-//009-3.gat,162,113,0 script #OrumQuestEnter 0,0,0,{
- if (OrumQuest >= 12) goto L_Second_Entrance;
- warp "009-4.gat", 37, 113;
- close;
-
-L_Second_Entrance:
- warp "009-4.gat", 72, 126;
- close;
-}
-009-4.gat,36,26,0 script #LairExit 0,0,0,{
- if (OrumQuest >= 12) goto L_Second_Entrance;
- warp "009-4.gat", 37, 122;
- close;
-
-L_Second_Entrance:
- warp "009-4.gat", 72, 135;
- close;
-}
-
-009-4.gat,51,47,0 script #CavernEnter 0,0,0,{
- if (OrumQuest >= 14) goto L_Second_Cavern;
- if (OrumQuest < 12) goto L_See_Orum;
- warp "009-4.gat", 103, 23;
- close;
-
-L_Second_Cavern:
- warp "009-4.gat", 103, 77;
- close;
-
-L_See_Orum:
- mes "Right as you are entering you hear Orum call out for you.. Perhaps you should see what he wants first..";
- close;
-}
|