How can I remove Perk Limit in Solo BO1?
-
is there any way to remove the perk limit in solo zombies? I looked online and couldnt find anything useful.
-
kapzalot some of the maps are limited to 4 perks. Moon, for example, does not have the perk limit.
EDIT: I think you need to look into _zombiemode.gsc and change level.perk_limit = 4 (found on CODZombies reddit).
I personally wouldn't recommend you to do this, but you do you.
and as always, use LAN mode. -
This post is deleted!
-
level.perk_limit doesn't exist in BO1 in _zombiemode_perks.gsc you need to go to vending_trigger_think() function you will find if (player.num_perks >= 4) this check if the player have 4 perks and block the player from buying more perks just change the limit to anything else.
example: if (player.num_perks >= 10) this will change the perks limit to 10 -