Modme Forums

[Bo3] How to Increase the Perk Limit

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: natesmithzombies
Currently there is something a little goof about editing stock scripts. Use this method to ensure you adjust the perk limit:



Instructions:

-----------------

1) Add this function to the bottom of your mapname.gsc located in root\usermaps\mapname\scripts\zm





function set_perk_limit(num)
{
	wait( 30 ); 
	level.perk_purchase_limit = num;
}





2) At the top of your mapname.gsc underneath:



function main()
{



Add:



level thread set_perk_limit(10);  // This sets the perk limit to 10


ModmeBot:

Reply By: xX_D4rK_Porto_Xx
Thanks ! :D


BIGCountry77x:

Thanks bud! New map builder here so these little things help me ALOT!


Blac:

ok thank you for this highly detailed tutorial


KillJoy:

its not necessary to put in a function
you can just put it directly under zm_usermap::main - like this


function main()
{
    zm_usermap::main();

level.player_starting_points = 420000;
level.perk_purchase_limit = 30;