laatSmokeTipRB1.sqf 677 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. _this addAction ["<t color='#886688'>Smoker--------U13</t>",
  2. {
  3. for [{_i=0}, {_i<1}, {_i=_i+1}] do
  4. {
  5. _frag_grenade = createvehicle ["smokeshellred",((_this select 0 ) getPos [0, (direction (_this select 0 ))]) ,[],0,"none"];
  6. comment "side,forward,up";
  7. _frag_grenade attachTo [_this select 0 ,[-8,-1.8+_i/50,-1.8]];
  8. _frag_grenade = createvehicle ["smokeshellblue",((_this select 0 ) getPos [0, (direction (_this select 0 ))]) ,[],0,"none"];
  9. comment "side,forward,up";
  10. _frag_grenade attachTo [_this select 0 ,[8,-1.8+_i/50,-1.8]];
  11. };
  12. },[1],0,false,true,"User13"," driver _target == _this"];