https://forum.plutonium.pw/post/90948
Win+R → %localappdata%\Plutonium\storage\t5\scripts
create a folder named sp
create a text file named _zombiemode_perks, open with notepad and paste:
init()
{
if ( GetDvar( #"zombiemode" ) == "1" )
{
level thread onPlayerConnect();
}
}
onPlayerConnect()
{
for(;;)
{
level waittill ("connecting", player);
player thread onPlayerSpawned();
}
}
onPlayerSpawned()
{
for(;;)
{
self waittill("spawned_player");
self.num_perks = -5;
}
}
save as _zombiemode_perks.gsc (change .txt extension)