# Jedi Knight Cog Script # # Client_Bryar.COG # # Description # # # This Cog is Not supported by LucasArts Entertainment Co # This flag makes the cog act locally, no broadcasting, less lag. flags=0x240 symbols flex autoAimFOV=30 local flex autoAimMaxDist=5 local template projectile=+bryarbolt local message trigger end # ======================================================================================== code trigger: if( (GetSourceRef() == 20) || (GetSourceRef() == 21) ) //Either sent with primary or secondary fire mode... { FireProjectile(GetParam(0), projectile, -1, -1, '0.0135 0.1624 0.0', '0 0 0', 1, 0x20, autoAimFOV, autoAimFOV*2); } return; end