A-SUICIDAL
Member-
Content Count
520 -
Joined
-
Last visited
-
Medals
Everything posted by A-SUICIDAL
-
CLY Remove Dead script
A-SUICIDAL replied to celery's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Going to give it a whirl now. Thanks. -
CLY Remove Dead script
A-SUICIDAL replied to celery's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I don't mean to sound like a jerk, but I worked really hard on a mission and one day it started getting so laggy to the point where it was unplayable. For over a week I kept trying to figure out what was causing the problem and how to fix it. I lost a lot of sleep and was ready to just scrap the mission and all the work I put into it, then I tried to remember what things I last added to the mission before it became so laggy. I kept thinking that it couldn't be your remove body/vehicles script, because that is supposed to make the mission less laggy, but then I finally removed it from the mission and suddenly my mission was completely lag free. I don't know if anybody else has had this experience. Maybe there is something else in my mission that is conflicting with it. I don't know. Right now I am once again trying to find a good "remove dead bodies/vehicles" script and so far I haven't found a good one. I think my computer just hates sqs files, lol. I wish your script worked for me. -
W.I.C.T -- World In Conflict Tool for ArmAII and OA
A-SUICIDAL replied to ArmAIIholic's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
please -
Need help with stopping a sound
A-SUICIDAL replied to A-SUICIDAL's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Will this work with a playSound? My Music is actually a sound file, so I use "playSound" to start playing the music. Normally I have my in-game music always turned off and I never add a jukebox module to my missions or use "playMusic" ever, because I don't like the music that comes with this game. lol. Most all of my friends always have their in-game music turned off too. So I figured by using playSound, I could force the music to be heard even if their in-game music volume is turned off, but if they really don't want to hear the music, I wanted to give them the option to turn it off. I've already tried Cobra's method, but I tried using "playSound" instead - and it does not work. Basically it gives me a missing sound error when I try to use playSound ""; I've even tried creating a blank sound file that plays 4 seconds of silence and named it blank.ogg and tried to stop the sound by using playSound "blank"; but it just keeps playing. I guess it's just not possible and the only alternative is to actually turn my music volume up in the game and start using playMusic instead of playSound. That sux, lol. ---------- Post added at 05:30 AM ---------- Previous post was at 05:27 AM ---------- In some missions I use: plane1 say "track1"; and then the sound does stop when the vehicle is destroyed. And I was able to make the sound play again when the vehicle respawned. ---------- Post added at 05:43 AM ---------- Previous post was at 05:30 AM ---------- lol, soooo... I addAction "Music On" which creates and attaches a radio to the player and uses radio say "track1"; to make the sound(music) play - and removes the action while adding another action "Music Off" which when selected would delete the radio and stop the sound - and add the action back "Music On" again. Maybe attach the radio in such a way that it's hidden in the players rib cage, heh. Nah, then it would float in the air if the player were to go prone. Or better yet, attach the radio to the inside of the jet cockpit, yeah, that might work. ---------- Post added at 07:34 AM ---------- Previous post was at 05:43 AM ---------- Actually, my crazy idea works perfect, but better suited for the single player mission I am working on. I added this to my vehicle's init: this addAction ["Music On", "music_on.sqf", [], -1, false, true, "", "(_this in _target)"]; Then created a music_on.sqf: _man = _this select 0; _act = _this select 2; if (alive _man) then { _man removeAction _act; radio = "Radio" createVehicle [0,0,0]; radio attachTo [plane1,[0,2,-1]]; radio say "track1"; p1 addAction ["Music Off", "music_off.sqf", [], -1, false, true, "", "(_this in _target)"]; }; Then I created a music_off.sqf: _man = _this select 0; _act = _this select 2; if (alive _man) then { _man removeAction _act; deleteVehicle radio; p1 addAction ["Music On", "music_on.sqf", [], -1, false, true, "", "(_this in _target)"]; }; Basically when I get in my F-16 it gives me the option "Music On" and when I select it - it removes the action and attaches a radio inside my plane and the radio says the sound file and adds the action "Music Off". When I choose "Music Off" it deletes the radio which stops the sound and adds back the option "Music On". Since my single player mission does have respawn in it for the player, the AI and vehicles, I also added an empty trigger (0 radius, activation none) and in the "Condition" I put: !alive plane1 and in the "On Act." I put: deleteVehicle radio Which deletes the radio if the plane is destroyed. Again, I don't like any in-game music turned on, so this is one way to get my sound to stop when I want it too. It also seems kind of cool when I eject and hear the music fade away as my plane descends towards the ground, except the pitch increases and starts sounding like it mickey mouse, like it sucked some helium. Is there a way to fix that by adjusting the class CfgSounds and editing the number that comes after the volume number? sound[]={"sound\track1.ogg",1,1}; ---------- Post added at 07:53 AM ---------- Previous post was at 07:34 AM ---------- Ok, that's the pitch I guess. -
Need help with stopping a sound
A-SUICIDAL posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I have an action added to a player to "Play Music" and then removes the action. What I would like to do is then add another action for "Stop Music". Basically the music is really a just a sound file using: playSound "track1"; I've tried the car radio addon, but I'm not really interested in all that, I just wanted to offer 1 sound file to be turned on or off when desired. I've searched a lot before asking for help here, but couldn't find anything to help me with this. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Your new version of you script works great. I love it, especially all the new options. You thought of everything. Amazing work. Your a genius dude. I started on a new mission design, and everything is working great with the latest version of your script. I also have an older version of your SP_respawn working in a another mission I made and I wanted to update it, so I made a back up of my mission, then went ahead and tried updating the mission with the newer version of your script. I updated the SP_respawn.sqf file, the player init and also updated the marker to "SPR_respawn" and tried testing and it gave me this: There must be something in my mission that is conflicting somehow, if only I knew what. Well, like I said, I have an older version of your respawn script working in a backup mission, so I'll probably just leave it as is and use the your newer version of your script in future mission creations. I really liked how you added the ability to set an amount of respawns. It would be cool if there was a tiny counter in the corner of the screen someplace that kept track of total kills/total deaths. And after x amount of kills, you earn an extra life. Woohoo! And maybe after x amount of kills - the mission creator could execute a script, which could be something like... a script that executes and unlocks a better vehicle, or even better... a script gets executed that creates new marker where even more enemy respawn from - making it even more difficult to survive. Singleplayer always needed score keeper. Yeah, I know it's a military sim game, but there is now reason why we can't have a little bit of arcade action with it. lol. Oh, I was going to try a setFace command on respawn to see if I could force my face to stay the same each time I respawn, since I usually respawn as a different face each time. It's actually funny in a way. I was very busy creating and testing my new single player mission, but now every time I try to test it, I wind up playing it for hours and hours and just having fun instead, all because of your awesome script that allows players to respawn. After 3 hours, I finally stopped playing and started working, and the same thing happened again. ---------- Post added at 04:46 AM ---------- Previous post was at 04:29 AM ---------- I'm going to add a script on respawn that creates a new marker and spawns more enemy - and creates a trigger that detects when the player has died - and when the player dies activates another script that creates more enemy again and adds a new friendly player to my team as well. If only I could figure out how to get a score keeper that shows total kills someplace in the corner of the screen. -
Destroy/Damage Buildings
A-SUICIDAL replied to jakerod's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I think my guess was correct: gamelogic tower = (position this nearestobject 123256); tower allowDamage false; I tried destroying the building and I could not. -
Destroy/Damage Buildings
A-SUICIDAL replied to jakerod's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
What if I am trying to make it so the building cannot be destroyed. For instance the control tower at south air base in Takistan. I have a nonplayable AI commander that stand ins the glass room, but I don't want coop players or enemy destroying the building and leaving the commander standing in rubble, lol. It would be easier if I could just set the building to "this allowDamage false;". How would I do this? ---------- Post added at 08:00 PM ---------- Previous post was at 07:51 PM ---------- Do I add a gameLogic and set it to "objects" and put this in it's init field? tower = (position this nearestobject 123256); tower allowDamage false; The id number of the building was 123256. I'm guessing that I am way off. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
In my single player mission, if pilot ejects and is stranded I use norrins chopper extraction/taxi script. It gives me the action to call for an extraction chopper at missions start, but when I die and respawn it doesn't give me back the action. I've tried a zillion different ways to try to get it working correctly, but either I give up and just set it so if player abandons his vehicle, that 20 seconds later it destroys the plane and if plane is destroyed, it then destroys the player. For the 3 AI teammates, I already have it set this way, but for the player, I really wanted this chopper extract thing to work. Here's the link for Norrin's taxi script: http://www.armaholic.com/page.php?id=12141 If you know what I need to add to the bottom of the "SP_respawn.sqf" to get it to give me back the action to "Call for helicopter extraction" after I respawn, it would be greatly appreciated. It's the only thing left in the mission that I need to get working, then I'm done. Or I might just write my own script that spawns a chopper and crew and moves them to my position, lands etc. It would be much easier to get norrins script to work in this mission instead. -
FRL Airforce Addons release thread
A-SUICIDAL replied to [frl]myke's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
My friend is getting a message that says: Cannot open object glt_missilebox\glt_aim120\glt_aim120.p3d What is strange to me is... I made a mission and uploaded it to my server and included the addons needed in the zip as well. The mission worked fine for me and I was never aware that I needed @CBA enabled to use the F-16 and the Missilebox, and yet without @CBA enabled, everything worked fine for me, except the names of the missiles in the top right corner of my screen had full names, Like AMRAAM instead of AIM-120/C. But all the missiles worked fine, and left smoke trails and blew up enemy fighters, but then my friend joins using my exact addons enabled and he tells me he can't see or hear his AMRAAM's firing, but he could hear them blow up when he shot one at a hill. This is when I went back to armaholic and noticed that it said that CBA was required for the F-16, so I told him to enable CBA in his Arma 2 launcher and reconnect. Then he received a CBA version mismatch error. So we both downloaded and installed the latest CBA and we both enabled CBA in the Launcher and he receives the error shown above. My friend is asleep right now, but I'm on teamviewer trying to fix the problem on his computer. I have his game open in a window mode right now, I've transferred my exact mod folders to his comp and enabled the required mods in his launcher and still this keeps occurring. The only thing left I can think of is maybe a computer restart, but if I restart his comp, I can't get reconnected on teamviewer, lol. Any idea why he is getting this message? ---------- Post added at 02:20 AM ---------- Previous post was at 01:02 AM ---------- Again... I have teamviewer open and I made absolute certain that both computers have exactly the same mod folders installed and enabled to play the mission. I am running in window mode on both machines and I have both windows open side by side and at the main menu screen, both show that the same mods are loaded and the same version of the game is running. I tried hosting and made my friends computer connect to me and he gets the error: Cannot open object glt_missilebox\glt_aim120\glt_aim120.p3d Then I tried having his computer host and he gets the same message, yet I can join his game and I don't get any errors. This makes absolutely no sense to me. He is on a 64bit computer, besides that there really is no difference between our machines. Another friend joined and also got this same message, and he's on 32 bit Vista. Why is this happening? I just wanna play this damn mission. ---------- Post added at 02:52 AM ---------- Previous post was at 02:20 AM ---------- I found the problem. His mods were loaded in a different order down the side of his screen than on my screen. Does this matter? Yes, it does matter when the F16 mod folder already had missilebox mod files in it that had the same file name as the files inside the other missilebox mod folder. Obviously the older files were loading after the new files. So I deleted the missilebox files that resided in the F16 mod folder on both computers since there is already another missilebox mod folder being loaded that has newer files. Obviously the F16 Mod download used to contain it's own missilebox files. I still don't know why his Arma 2 launcher loaded the mods in a different order than my Arma 2 launcher does, but right now I just don't care anymore, as long as this stuff is working. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Somebody asked me earlier how I got my XFire ingame to work for Arma 2 CO. I don't get xfire ingame. I use ventrilo to talk to friends, chat in the game with sidechat, or minimize quick to read an xfire message, but to record movies and upload to xfire, this is what you do... record with Fraps and make Fraps to save the movies to "C:\ProgramData\Xfire\videos" Once your are done recording, go "C:\Program Files\Xfire" and launch "xfencoder.exe" and the browse to the Fraps movie that you recorded and then hit the "Go!" button and it will convert it. Once it is done converting, you can then see the movie on your XFire list of movies that are ready to be uploaded. The best part about this method is... it allows you to upload movies much longer than 10 minutes in length. Normally xfire never lets you upload anything over 10 minutes long. I make good movies. When uploading the movie, choose either "Unknown" game as the title, or add Arrowhead to your list of games in XFire manually by browsing to the Arma 2 exe root directory. Then go ahead and upload your movie to XFire. For best result, record using Frap in "Full size" not half size, but set your game to 1024x768 at highest. This will lag you less when recording and give you decent quality. Or - install and use "Wegame". www.wegame.com. Good site. Record with wegame and upload to their site, but if you are not a paid member, you can only upload half size movies, which is fine, because the quality is video quality is great. Here's a wegame sample movie of me playing my Ghost Recon Advanced Warfighter 2 Mod using new weapons, unsuppressed and flashlight attachments. It's a good movie. http://www.wegame.com/watch/graw2-operation-herrera-hardcore/ -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I just use keyboard and I freelook with mouse the entire time. All my keys are remapped. I use the 6 keys above the arrow keys for my movement. Basically I fly using only 3 fingers, lol, except for when I occasionally tap my "next target", "toggle weapons" & "gear up". Here's a chopper mission I made for SP and MP where I use 100% freelook while flying. http://www.xfire.com/video/47a2db/ I'm going to put the respawn in the SP version and release both as a CO download. The music is trigger in the mission for both the movies. ---------- Post added at 08:05 AM ---------- Previous post was at 07:42 AM ---------- That chopper movie is old, the latest version has enemy tanks and troops and stuff at each waypoint, but I also have a simple patrol version like in the movie, where you simply take out trucks and a few soldiers here and there. It's the mission I use when I help friends learn to fly and gun. I've also played the same mission where I was the gunner and the AI would do the flying, and wow, they are really good at flying low and lining up shots for me. Very impressive, but I prefer to fly. Another SP version where there are two choppers, one follows the other, and lots of placed enemy tanks, trucks and Troops and other stuff at each objective, Civilians, Animals, and Ambient Combat module. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Well, here's a movie I made of my "single player mission with respawn" thanks to Demonized. It's much easier to play it when I'm not recording, since recording lags me a little. Even my 3 AI teammates respawn and get back into their F-16's and continue to do battle against SU-33's. Anyway, check it out. Give it time to load. http://www.xfire.com/video/49e49a/ -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I keep checking to see the new changes, so the errors I'm getting are probably just me making mistakes again. Damn AI pilots eject the moment their Falcon has a tiny scratch. I'm trying to check if they are not in the plane and over 200m away from the respawn area, then wait enough time for them to parachute to the ground so it looks cool, then setpos them back the the start, and setDamage them to 0. But I need to get the get in plane after respawn stuff working first. ---------- Post added at 02:14 AM ---------- Previous post was at 02:11 AM ---------- yeah I have a vehicle_respawn script. but it's just for if the plane is abandoned and if it's destroyed to respawn it immediately at base so the getIn commands work. ---------- Post added at 02:30 AM ---------- Previous post was at 02:14 AM ---------- The getIn stuff seems to be working better now. I started the mission, blew myself up with a pipebomb, respawned and the vehicle was still assigned to me, but he never told me to get in a second time and there was no mount symbol on the plane, but at least it wasn't locked like it was before, lol. I have it on default, because if I set it to be unlocked and a friends plays my mission and gets in the wrong plane, it will screw the AI up. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
It gave me errors. hmm -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Ok, got everything working perfect except for 1 thing, but that belongs in the other thread. ---------- Post added at 01:17 AM ---------- Previous post was at 01:16 AM ---------- damn, I just refreshed, typed 1 sentence, and already you replied before I could, lol. ---------- Post added at 01:18 AM ---------- Previous post was at 01:17 AM ---------- That looks better than my method of 8 triggers that check for when each of the 4 players are alive and when the 4 planes are alive and exec the script to make them get back in. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'm trying to get these other 3 AI on my team to hop back into their planes when they respawn. It was working when I tested in MP with AI enabled - before your SP_respawn script, but in this single player version I'm making, it doesn't seem to be working. For instance assigning AI named "s3" to plane "p3" and ordering him to get in and head towards our only waypoint. Maybe I should tell them all to head towards a marker. The main player/me is "s4" and lowest in chain of command, but when I tested as player "s1" I lost command when I respawned. I'll keep trying to figure it out. As usually I'm probably doing something wrong. This idea for singleplayer respawn could be the beginning of a new era of awesome single player missions. Your the man! -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
When an AI on my team gets killed, it causes me to die instantly, lol. So I guess it wont work for them. ---------- Post added at 11:27 PM ---------- Previous post was at 11:20 PM ---------- Edit, lol. You script changed. Works now. This is awesome. -
Single Player - respawn [script]
A-SUICIDAL replied to demonized's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'm so happy! Thank you thank you thank you! Dancing banana -
Absolute Frustration = Respawn
A-SUICIDAL replied to ghosttracer71's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Works nice. I love it. I'm trying to understand exactly what the script is doing. Is there a way to leave the player dead for a moment, fade to black, then have a 10 second timer over the blackness, then the player finds himself back at the SP_respawn marker? ---------- Post added at 09:22 PM ---------- Previous post was at 09:01 PM ---------- Like, maybe right after the player respawns do something like from Norrin's script: if ((_respawnAtBaseWait select 1) != 0) then { _timer = (_respawnAtBaseWait select 1); _name disableAI "anim"; _c = 1; _name setCaptive true; while {_timer >= 0} do { if (_c >= 1 ) then { if (_name == player) then { _timer_message = format ["You will respawn in %1 seconds", _timer]; titletext [_timer_message,"BLACK FADED", 0.3]; }; _timer = _timer - 1; _c = 0; }; sleep 0.05; _c = _c + 0.05; }; _name setCaptive false; _name enableAI "anim"; }; [\code] -
Absolute Frustration = Respawn
A-SUICIDAL replied to ghosttracer71's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Yeah, I use "this allowDamage false;" all the time, but I actually want to die and respawn at base in this mission I'm trying to make. I am making it for singleplayer and multiplayer. My jet gets shot down, I die, the jet respawns and activates a script that unassigns me from vehicle, then reassigns me back to the vehicle and then I'm given the order to get back in. I want to play it single player with AI, this way we are all assigned to a vehicle. We die, respawn and get back in and keep fighting. In the multiplayer version, nobody is assigned to any vehicles. Normally, with Norrin's revive, the enemy die and respawn at the ralley point spawn location that I added, because it's the closest spawn point. I tried to shorten the spawn timer for the mission I'm working on now, but what's the point of using Norrin's revive script if I don't want to use any of the revive abilities in this 1 particular mission. Norrin somehow get's the players and AI to actually respawn, so it should be possible to create a more simplified script just for respawning in singleplayer. If I could borrow Norrin's brain for an hour, I would be writing the script right now, lol. The most I would need is to respawn with same weapons I started the mission with. Edit... Actually, we don't need any weapons, we got jets with rockets, heh. ---------- Post added at 06:35 PM ---------- Previous post was at 06:12 PM ---------- Honestly, out of all the scripts I've seen for this game, I can't believe that nobody has ever written a simple singleplayer respawn script. I've been looking at the Norrin's "respawn.sqf" file trying to figure out how to remove all the stuff that I wouldn't need. So maybe when the player dies, it fades to black with a message saying "you will respawn at base in 10 seconds", leaves the player in somekind of captive state, then set's his position back to the "respawn_west" marker and then the black screen fades away and your back in the game. This is Norrin's "respawn.sqf" file: -
Absolute Frustration = Respawn
A-SUICIDAL replied to ghosttracer71's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I test new missions I work on and sometimes die and hate having to restart the mission from scratch, so I use norrins revive script in the mission and then it allows me to respawn in singleplayer. I once found a script that gave the ability to respawn in singleplayer missions without the need of any addons, but I never used it and now I can't find it anywhere. Does anybody know where I can find it? It was a very simple and short script. If I remember correctly, I think it used "this addEventHandler ["killed", blah blah blah..." in the players init. I can't remember much other than that. There are a couple of singleplayer respawn downloads at armaholic.com, but they required an addon to be installed. I was hoping to avoid using an addon. Norrin's revive doesn't use any addons, and I've tried to figure out how to write my own simplified respawn script by analyzing how Norrin's script works, but I kinda gave up on that. Well, if somebody knows how to do this, it would be very helpful. -
Magic Runway -repair,rearm,refuel,heal
A-SUICIDAL posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'm almost done making a coop jet flying mission, but I wanted to add a trigger covering the runway at our base that when players fly less than 30m over the runway - it will instantly repair, rearm and refuel the plane and also heal the player. Much like in Battlefield 2. I put this in another mission months ago, but it only rearmed the vehicle and the trigger failed to work after the player and vehicle respawned. So far I have a trigger covering the runway, set to be activated by BLUFOR, repeatedly and this in the condition field: this && {((getPosATL _x) select 2) < 30} count thislist > 0 Now I just need to figure out how to script things correctly for: _unit setDamage 0; _veh setDamage 0; _veh setFuel 1; _veh setVehicleAmmo 1; ...and make sure that it works for vehicles/players after they respawn. Any help with this would be appreciated. It's not a bad idea for flying missions. -
Magic Runway -repair,rearm,refuel,heal
A-SUICIDAL replied to A-SUICIDAL's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Trying it now. Oh, when I mentioned before... The part where I use "vehicle player != player" as the condition, this works, but if the get in a support truck or a jeep, it gives them the same message. So I changed the condition to: vehicle player isKindOf "GLT_Falcon_lg_cap" -
Magic Runway -repair,rearm,refuel,heal
A-SUICIDAL replied to A-SUICIDAL's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I experimented with each script. They all seem to work well. ST_Dux, your script seemed the most simplified, but the player was not healing at all, so I tried changing it a little. I also decided to set the height to 50m and add a vehicleChat message with it. condition: this on activation: {if ((getPosATL _x select 2) < 50) then {player setDamage 0;(vehicle _x) setDamage 0;(vehicle _x) setFuel 1;(vehicle _x) setVehicleAmmo 1}} forEach thisList; vehicle player vehicleChat "Your Fighter is eady..." I also created a trigger with radius 0, activation "NONE" with... condition: vehicle player != player on activation: hint composeText [parsetext format["<t size='1.2' align='center' color='#FFA500'>Reminder%1</t><br/><br/><t size='0.9' align='center' color='#FFFFFF'>To rearm, repair, refuel and heal mid-air, simply fly less than 50m over the runway at your Air Base.%1</t>"]]; Now when anybody hops in a fighter, they will get a reminder message telling them that they can low fly-by over the runway to service their vehicle and heal. ---------- Post added at 02:49 PM ---------- Previous post was at 02:34 PM ---------- I use zeno's script in a few of my other missions, it works awesome. I also have a mission where I equipped a couple of littlebirds with 14 additional rockets, and the littlebirds use a vehicle respawn script that adds an additional 14 rockets when they respawn, but I also had to add tell zeno's script to add 14 additional rockets as well, because his script normally removes all weapons and the adds back the default amount. I also have a couple of Bradleys and a couple of Stryker MGS that have additional ammo too, so right at the near the bottom of Zeno's script, where it says "_object setFuel 1;" I then added these lines below it: _object addMagazineTurret ["14RND_FFAR",[-1]]; //for Littlebird _object addMagazineTurret ["2RND_TOW2",[0]]; // for Bradley _object addMagazineTurret ["2RND_TOW2",[0]]; // for Bradley _object addMagazineTurret ["2RND_TOW2",[0]]; // for Bradley _object addMagazineTurret ["2RND_TOW2",[0]]; // for Bradley _object addMagazineTurret ["210RND_25MM_M242_APDS",[0]]; // for Stryker MGS _object addMagazineTurret ["210RND_25MM_M242_HEI",[0]]; // for Stryker MGS This tries to add the weapons to any vehicle that uses the vehicle service trigger, but I figure it can't hurt because if the the vehicle can't use the added weapons, then it obviously can't equip them and fire them, lol. So it works well.