Question Hi, Does anyone know a script for infinite perk cells for Black Ops 2?

artjomgo

New Member
Messages
1
Reaction score
1
Points
3
I wanted to make a server on Plutonium. I think that those who played on this client in zombie mode know such servers as ''No Limit Perks''. I also wanted to make No Limit Perks, but so far I haven’t found a script. Help me please
 

CabCon

Head Administrator
Staff member
Head Staff Team
Messages
5,000
Reaction score
2,920
Points
1,103
I wanted to make a server on Plutonium. I think that those who played on this client in zombie mode know such servers as ''No Limit Perks''. I also wanted to make No Limit Perks, but so far I haven’t found a script. Help me please
I'm not 100% sure if it's working but try to set this:
C#:
level.perk_purchase_limit = 4;

You can check how much perks you can buy on a map with this function in _zm_utility.gsc:
C#:
get_player_perk_purchase_limit()

In general I recommend to check the source code of the game to find their variables and function to modify the game. You can download a dump here: Release - Black Ops 2 GSC Decompiled Raw Dump +Download

You can find the zombie scripts in patch_zm/maps/mp/zombies


Good luck with your project :wink:
 
Top