• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help mw2 tactical insertion fx on head?
#1
Hey guys i need a help.
I am making juggernaut for zombie mode and i want to get the tact insertion's "flares" on the head is it possible? ty for helpBig Grin
it is my thread but dont workAngry
juggernaut()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 170;
self.health = self.maxhealth;
self setModel( "mp_body_us_army_riot" );
while (1) {

fx = loadfx( "misc/aircraft_light_wingtip_green" );


Body0 = SpawnFX(fx, self getTagOrigin("tag_weapon_left"));
Body1 = SpawnFX(fx, self getTagOrigin("j_head"));
Body2 = SpawnFX(fx, self getTagOrigin("tag_weapon_right"));
Body3 = SpawnFX(fx, self getTagOrigin("back_mid"));
Body4 = SpawnFX(fx, self getTagOrigin("torso_stabilizer"));
Body5 = SpawnFX(fx, self getTagOrigin("pelvis"));


TriggerFX(Body0);
Body0 Delete();
wait 0.5;


TriggerFX(fx);
Body1 Delete(Body1);
wait 0.5;


TriggerFX(Body2);
Body2 Delete();
wait 0.5;

TriggerFX(Body3);
Body3 Delete();
wait 0.5;

TriggerFX(Body4);
Body4 Delete();
wait 0.5;

TriggerFX(Body5);
Body5 Delete();
}
}
  Reply
#2
Code:
fx = loadFx( "misc/aircraft_light_wingtip_green" );
playFxOnTag( fx, self, "j_head" );
  Reply
#3
i've tried this way but nothing happens Sad

it works i did something wrong thanks u are awesomeBig Grin
  Reply
#4
Just a headsup I don't know if all maps will support this model: mp_body_us_army_riot
So check _class.gsc or whever the model selection code is and use that.
Do not take life too seriously. You will never get out of it alive.
[Image: UGPjFJa.jpg]
  Reply
#5
As DUKIP said, that model might not work. Try this instead:

Code:
self [[game["allies_model"]["RIOT"]]]();

Feel free to change to "axis" instead of "allies" for the enemy team model.
  Reply
#6
yes i know i made it for every single map already just the fx was the problem
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Release] Tactical Training Mod Beta 2 Hixos 30 26,292 05-31-2013, 17:20
Last Post: kool123
Wink Preview Realistic Tactical Mod Dominator56 7 4,851 04-20-2013, 09:17
Last Post: Dominator56
  Tactical Crouch server thanatos 0 1,846 02-15-2013, 17:59
Last Post: thanatos
Brick [Release] Tactical Crouch Ich1994 5 4,061 01-21-2013, 21:59
Last Post: thanatos
  Tactical insertion alternative Rendflex 28 12,656 06-16-2012, 10:54
Last Post: Yamato
  Help Why do I use PROMOD, tactical dagger in fly out and not pick it up? yefuqing 6 3,754 04-09-2012, 15:59
Last Post: yefuqing
  tactical grenades Camelot 2 2,007 03-22-2012, 08:40
Last Post: xbedestroyed
  Head Icon dthem_2000 1 2,142 03-22-2012, 00:45
Last Post: kraze1994
  Splinter Cell: Tactical Light Bulb Action Yamato 0 1,779 09-25-2011, 09:26
Last Post: Yamato
  Help make a working Camera spike on players head rotceh_dnih 2 2,419 07-25-2011, 14:52
Last Post: Scripts18

Forum Jump:


Users browsing this thread: 1 Guest(s)