Home   Help Search Login Register  

Author Topic: AA missile hit simulation script request  (Read 591 times)

0 Members and 1 Guest are viewing this topic.

BronzeEagle

  • Guest
AA missile hit simulation script request
« on: 30 Jan 2005, 01:11:27 »
combine the tail rotor script with a set damage texture, and some audio like a missile zooming in sound and a booom sound and you got a simulated AA missile hit.  I need this script for  a mission where i only want to simulate an AA missile hit, i don't want to actually get hit by one as its unpredictable as to whether or not the AA missile will actually destroy the chopper.  
« Last Edit: 30 Jan 2005, 01:14:06 by BronzeEagle »

bored_onion

  • Guest
Re:AA missile hit simulation script request
« Reply #1 on: 30 Jan 2005, 11:40:06 »
put me down for one. would go perfectly in a mission of my campaign.

thanks.

Offline penguinman

  • Contributing Member
  • **
  • Money is worthless, just paper, ink, and threads
Re:AA missile hit simulation script request
« Reply #2 on: 05 Feb 2005, 06:32:17 »
i know how to do it

place a trigger where u want the chopper to be hit
name the chopper helo1. put in the on activ part

exec"scriptname.sqs"
scriptname is what u name the script below.

the c-130 addon by hawk has a very loud (if i was in a real c-130 and it went off i would be pretty scared) alarm tone so get that out by depboing it, while ur getting the alarm tone out of the addon also get the flare launching noise from it too.

make a script that basicly just

Code: [Select]
helo1 playSound "alarm tone"
~1.5
helo1 sidechat"Incoming missile!"
~1
helo1 playSound "flarelaunchsound"
~1.5
_blast ="Grenade" camcreate getpos helo1
~.7
helo1 SideChat"We're hit!"
~.2
[helo1]exec"tailrotor.sqs"
exit
somthing to that effect ;code not garenteed;

in the playsound"nameofsound" parts u must replace it with the actual names of the sounds from the C-130. and of course remember to put them in the description file with the mission.

and find the tail rotor script in the ed depot u will have to add other things like #of people in chopper to randomly die and stuff like that to the

[helo1]exec"tailrotor.sqs"
part


the effect(or so i hope, i am a worse scripter than u i was just trying to give u an idea ho to do it) if it works is when u hit the trigger in the chopper, an audio tone to warn of incoming missiles will sound, the pilot will yell incoming, then the flare launch sound will sound like the missle zooming in sound and the nade will give the boom, a little dammage and jolt the chopper. then the tail rotor script will activate.

i hope this helps,

BronzeEagle

  • Guest
Re:AA missile hit simulation script request
« Reply #3 on: 05 Feb 2005, 19:57:34 »
thank you, thats just what the community could use.