Modme Forums

The Giant Perks?

Game Modding | Call of Duty: Black Ops 3 | Scripting


ModmeBot:

Thread By: soundcb
Does anyone know who to give perks random locations at the start of every game?


ModmeBot:

Reply By: KillJoyYT

loc = struct::get("perk_drop", "targetname");
	thread zm_powerups::specific_powerup_drop("full_ammo", loc.origin);
//can replace full_ammo with free_perk


ModmeBot:

Reply By: Symbo
You can modify this script https://aviacreations.com/modme/index.php?view=topic&tid=1802&page=1


ModmeBot:

Reply By: mathfag

level.randomize_perk_machine_location = true; // set before zm_usermap::main 

zm_giant.gsc



assuming you want to randomize the locations of the machines every game


ModmeBot:

Reply By: soundcb
Thanks guys, appreciate it.