diff options
-rw-r--r-- | npc/006-5/groata.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/006-5/groata.txt b/npc/006-5/groata.txt index 645238eaa..ed459b74c 100644 --- a/npc/006-5/groata.txt +++ b/npc/006-5/groata.txt @@ -5,7 +5,7 @@ // Groata Grotto is NOT instanced, NOT timed, and meant to be weird. function script GroataGrotto { - .@lv = getarg(0, BaseLevel) + ($@GROTTO/3); + .@lv = getarg(0, $@GROATA); .@mb[0] = MagicGoblin; .@mb[1] = IceMaggot; @@ -361,8 +361,8 @@ function script GroataGrotto { } $@GROTTO += 1; // Create monsters based on GROTTO - $@GROATA = max(BaseLevel, $@GROATA); - GroataGrotto($@GROATA); + $@GROATA = max(BaseLevel, $@GROATA+1); + GroataGrotto(); close; } mesc l("The torch is lit."); @@ -462,8 +462,8 @@ OnInit: } $@GROTTO += 5; // Create monsters based on GROTTO - $@GROATA = max(BaseLevel, $@GROATA); - GroataGrotto($@GROATA); + $@GROATA = max(BaseLevel, $@GROATA+1); + GroataGrotto(); close; } mesc l("The crystal has a shard missing."); |