Advertisement
Traggered

T183105

Jul 25th, 2024 (edited)
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.52 KB | Gaming | 0 0
  1. span class="re5"> class CfgVehicles
  2. {
  3.     class Helicopter;
  4.     class ParachuteBase: Helicopter
  5.     {
  6.         soundGetIn[]=
  7.         {
  8.             "A3\Sounds_f\Characters\Parachute\parachute_open"//← won't work see EventHandlers
  9.             1,
  10.             1,
  11.             500
  12.         };
  13.         soundGetOut[]=
  14.         {
  15.             "A3\Sounds_f\Characters\Parachute\parachute_landing",
  16.             1,
  17.             1,
  18.             250
  19.         };
  20.         class EventHandlers
  21.         {
  22.             getIn="playSound3D ['a3\sounds_f\characters\parachute\parachute_open.wss', (_this # 0), false, getPosASL (_this # 0), 1, 1, 500, 0, false]";    //← works!
  23.         };
  24.     };
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement