diff options
Diffstat (limited to 'npc/031-3_Cave/cindyCave.txt')
-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 25e14b8d..5c1e91b7 100644 --- a/npc/031-3_Cave/cindyCave.txt +++ b/npc/031-3_Cave/cindyCave.txt @@ -58,7 +58,7 @@ L_Try_Cage: // initialize fight set $@FIGHT_YETI_STATUS, 1; - set $@FIGHT_YETI_WAVE, 1; + set $@FIGHT_YETI_WAVE, 0; set $@YETI_COUNT, 0; set $@FIGHT_YETI_PLAYER_COUNT, getareausers("031-3.gat", 80, 20, 160, 90); @@ -150,7 +150,7 @@ L_NextWave: if ($@FIGHT_YETI_WAVE > 10) goto L_Return_1; //TODO: adjust number of yetis spawned //TODO: use yeti count here - set $@FIGHT_YETI_NUMBER, (30 + (2 * $@FIGHT_YETI_WAVE) + (4 * $@FIGHT_YETI_PLAYER_COUNT))/5; + set $@FIGHT_YETI_NUMBER, (1 + (1 * $@FIGHT_YETI_WAVE) + (2 * $@FIGHT_YETI_PLAYER_COUNT))/4; set $@YETI_COUNT, $@YETI_COUNT + $@FIGHT_YETI_NUMBER; areamonster "031-3.gat", 80, 20, 160, 90, "", 1072, $@FIGHT_YETI_NUMBER, "Cindy::onPetDeath"; |