1 #include "machinegun_weapon.qh"
5 void W_MuzzleFlash_Model(entity wepent, entity muzzlemodel);
6 SOUND(MachineGunTurretAttack_FIRE, W_Sound("electro_fire"));
7 METHOD(MachineGunTurretAttack, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire))
9 bool isPlayer = IS_PLAYER(actor);
11 if (!isPlayer || weapon_prepareattack(thiswep, actor, weaponentity, false, WEP_CVAR(WEP_MACHINEGUN, sustained_refire))) {
13 turret_initparams(actor);
14 W_SetupShot_Dir(actor, weaponentity, v_forward, false, 0, SND_MachineGunTurretAttack_FIRE, CH_WEAPON_B, 0, DEATH_TURRET_MACHINEGUN.m_id);
15 actor.tur_shotdir_updated = w_shotdir;
16 actor.tur_shotorg = w_shotorg;
17 actor.tur_head = actor;
18 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, 0, w_ready);
20 fireBullet(actor, weaponentity, actor.tur_shotorg, actor.tur_shotdir_updated, actor.shot_spread, 0, actor.shot_dmg, 0, actor.shot_force, DEATH_TURRET_MACHINEGUN.m_id, EFFECT_BULLET);
21 W_MuzzleFlash_Model(actor.(weaponentity), MDL_MACHINEGUN_MUZZLEFLASH);
22 setattachment(actor.(weaponentity).muzzle_flash, actor.tur_head, "tag_fire");