Didnt know that i couldnt ask for reputation but here is one of my scripts for unlimited perks
#include maps\mp_utility;
#include common_scripts\utility;
init()
{
// Escucha cuando un jugador se conecta al servidor / partida
level thread onPlayerConnect();
}
onPlayerConnect()
{
for(;;)
{
level waittill("connected", player);
player thread onPlayerSpawned();
}
}
onPlayerSpawned()
{
self endon("disconnect");
for(;;)
{
self waittill("spawned_player");
// Cambia el límite de ventajas del jugador a 10 (cubre todas las ventajas posibles)
self.max_perks = 10;
// Notificación discreta en pantalla al aparecer
self iprintln("^2Limite de Perks cambiado a 10!");
}
}
I code in spanish btw