Call of duty bo3: LightningStrikeEffects

From COD Modding & Mapping Wiki
Revision as of 03:34, 29 June 2020 by Zeroy (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

To add Lightning strike sky effect (not the FXs but the brightness) + Audio


In Radiant

  • In your Map WorldSpawn add a new KVP:
"vsky" "zm_factory_lightning_ukko"

In Script

  • In your map GSC, add the following in Main Function
clientfield::register("toplayer", "lightning_strike", VERSION_SHIP, 1, "counter");
callback::on_spawned( &on_player_spawned );
level.lightningstrike_delay = 12; // You can change this value to suit
  • Then add 2 functions like so:
function on_player_spawned()
{
	level endon("game_ended");
	self endon("death");
	self endon("disconnect");

	self thread lightning_strike_player();
}

function lightning_strike_player()
{
	self endon("disconnect");

	util::wait_network_frame();

	while(1)
	{
		if(isdefined(self) && isPlayer(self))
		{
			self notify("lightning_strike");
			self clientfield::increment_to_player("lightning_strike", 1);
		}
		wait(level.lightningstrike_delay);
	}
}
  • In your Map CSC add the following to the Main function:
clientfield::register("toplayer", "lightning_strike", VERSION_SHIP, 1, "counter", &lightning_strike, !CF_HOST_ONLY, !CF_CALLBACK_ZERO_ON_NEW_ENT);
  • Then add a new function:
function lightning_strike(localClientNum, oldVal, newVal, bNewEnt, bInitialSnap, fieldName, bWasTimeJump)
{
	SetUkkoScriptIndex(localClientNum, 1, 1);
	playsound(0, "amb_lightning_dist_low", (0, 0, 0));
	wait(0.02);
	SetUkkoScriptIndex(localClientNum, 3, 1);
	wait(0.15);
	SetUkkoScriptIndex(localClientNum, 1, 1);
	wait(0.1);
	SetUkkoScriptIndex(localClientNum, 4, 1);
	wait(0.1);
	SetUkkoScriptIndex(localClientNum, 3, 1);
	wait(0.25);
	SetUkkoScriptIndex(localClientNum, 1, 1);
	wait(0.15);
	SetUkkoScriptIndex(localClientNum, 3, 1);
	wait(0.15);
	SetUkkoScriptIndex(localClientNum, 1, 1);
}
  • Finally, for audio, you will need to get the following Audio Files and place in your BO3 Root
  • Add the following to your sound config file (located in your map folder under sound\zoneconfig and open the szc file )


  • Find this :
"Sources" : [
{
	"Type" : "ALIAS",
	"Name" : "user_aliases",
	"Filename" : "user_aliases.csv",
	"Specs" : [ ] 
},

- add this directly underneath

{
	"Type" : "ALIAS",
	"Name" : "zm_thunder",
	"Filename" : "zm_thunder.csv",
	"Specs" : [ ] 
},
  • Compile the map fully