Don´t really know hot to achive this great title any help is welcome.
Samu67
@Samu67
Posts
-
Hi i´m new in the community and i´m looking to upload scripts for BO2 please grant me Reputation 1! -
Hi i´m new in the community and i´m looking to upload scripts for BO2 please grant me Reputation 1!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