Question about jtags

Automatic

User is banned.
Reputation
0
Not that I want one, but I want to know if modifying lobbys is anything like the PC mods.

Example code:

Code:
createzom() {
	
		self maps\mp\perks\_perks::givePerk( "throwingknife_mp" );
		self giveWeapon( "throwingknife_mp" );
		self setWeaponAmmoClip("throwingknife_mp", 1);
        self giveWeapon( "deserteagle_tactical_mp", 0, false );
        self setWeaponAmmoClip("deserteagle_tactical_mp", 0 );
        self setWeaponAmmoStock("deserteagle_tactical_mp", 0 );
		while(self getCurrentWeapon() == "none") {
		self switchToWeapon("deserteagle_tactical_mp");
		wait 0.05; }
		
        self maps\mp\perks\_perks::givePerk("specialty_marathon");
		self maps\mp\perks\_perks::givePerk("specialty_automantle");
		self maps\mp\perks\_perks::givePerk("specialty_fastmantle");
        self maps\mp\perks\_perks::givePerk("specialty_longersprint");
		self maps\mp\perks\_perks::givePerk("specialty_fastsprintrecovery");
        self maps\mp\perks\_perks::givePerk("specialty_lightweight");
		self maps\mp\perks\_perks::givePerk("specialty_coldblooded");
		
		//AddOn
		self thread zomclass();
		self thread maps\mp\gametypes\_hud_message::hintMessage("^2Kill and eat Brainz!");
		self thread zomtk();
		self setClientDvar("compass_show_enemies", "0");
		i = 1;
		while(i == 1) {
		self playsound( "freefall_death" );
		wait 2;
		i = 0;
		}
	wait 0.01;
}

credits to SiiKsKiiLz1 for releasing his PC mod.
 
It's KIND of like that, my JTAG is unbanned right now, since Microsoft 'unbanned' all Consoles, I kind of want to sell the KV on it.
 
Back
Top