diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-01-01 22:08:07 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-01-01 22:08:07 +0100 |
commit | b077cee9fee04e16fb3a8fe6e19f7c8a041787b3 (patch) | |
tree | 0c2bcc860c1e2bb8dfef4ce183e7815bd670fc19 | |
parent | 5f1a59561d869afb7e159497654478b7dace68aa (diff) | |
download | serverdata-b077cee9fee04e16fb3a8fe6e19f7c8a041787b3.tar.gz serverdata-b077cee9fee04e16fb3a8fe6e19f7c8a041787b3.tar.bz2 serverdata-b077cee9fee04e16fb3a8fe6e19f7c8a041787b3.tar.xz serverdata-b077cee9fee04e16fb3a8fe6e19f7c8a041787b3.zip |
Cindy quest: Changing number of Yetis spawned
-rw-r--r-- | npc/031-3_Cave/cindyCave.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/031-3_Cave/cindyCave.txt b/npc/031-3_Cave/cindyCave.txt index 080e5ea9..25e14b8d 100644 --- a/npc/031-3_Cave/cindyCave.txt +++ b/npc/031-3_Cave/cindyCave.txt @@ -148,9 +148,9 @@ L_NextWave: set $@FIGHT_YETI_WAVE, $@FIGHT_YETI_WAVE + 1; if ($@FIGHT_YETI_WAVE > 10 && $@YETI_COUNT == 0) goto L_CleanUp; if ($@FIGHT_YETI_WAVE > 10) goto L_Return_1; -//TODO: adjust number of yetis spawned, maybe yeti wave * 2/3 and player count /12 +//TODO: adjust number of yetis spawned //TODO: use yeti count here - set $@FIGHT_YETI_NUMBER, ($@FIGHT_YETI_WAVE * 2 / 3) + ($@FIGHT_YETI_WAVE * $@FIGHT_YETI_PLAYER_COUNT/12); + set $@FIGHT_YETI_NUMBER, (30 + (2 * $@FIGHT_YETI_WAVE) + (4 * $@FIGHT_YETI_PLAYER_COUNT))/5; set $@YETI_COUNT, $@YETI_COUNT + $@FIGHT_YETI_NUMBER; areamonster "031-3.gat", 80, 20, 160, 90, "", 1072, $@FIGHT_YETI_NUMBER, "Cindy::onPetDeath"; |