Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save TinkerWorX/dac27415e942ab44aa3eacf03e7b5de9 to your computer and use it in GitHub Desktop.
Save TinkerWorX/dac27415e942ab44aa3eacf03e7b5de9 to your computer and use it in GitHub Desktop.
function Trig_Melee_Initialization_Actions takes nothing returns nothing
call CreateFogModifierRectBJ( true, Player(0), FOG_OF_WAR_VISIBLE, GetPlayableMapRect() )
call CreateTextTagLocBJ( "WWWWW", Location(-256, -256), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location(-256, -256), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location( 0, -256), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location( 0, -256), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location( 256, -256), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location( 256, -256), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location(-256, 0), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location(-256, 0), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location( 0, 0), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location( 0, 0), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location( 256, 0), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location( 256, 0), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location(-256, 256), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location(-256, 256), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location( 0, 256), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location( 0, 256), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
call CreateTextTagLocBJ( "WWWWW", Location( 256, 256), 0, 10, 100, 100, 100, 0 )
call AddSpecialEffectLocBJ( Location( 256, 256), "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl" )
endfunction
//===========================================================================
function InitTrig_Melee_Initialization takes nothing returns nothing
set gg_trg_Melee_Initialization = CreateTrigger( )
call TriggerRegisterTimerEventSingle( gg_trg_Melee_Initialization, 0.00 )
call TriggerAddAction( gg_trg_Melee_Initialization, function Trig_Melee_Initialization_Actions )
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment