derringer
Member-
Content Count
34 -
Joined
-
Last visited
-
Medals
Everything posted by derringer
-
Does anyone know how to disable AFAR? Or can someone explain how my friends and I can all see each other's Tactical Pings? We are in the same group/squad but even when we join the same channel (Group for example) no one can see anyone else's ping. I would love to just have the standard Arma radio functionality back.
-
If I go into an object's editor, the Object Type drop down list is open. I cannot close it. I can scroll it, I can click on items in the list but it will not close at all. This persists to new objects created, through opening the mission again and even through restarting Arma 3 with a brand new mission open. I have tried all mouse buttons, enter, space, escape and nothing I have done has closed it. It is permanently stuck open. I am aware that there is a known issue with irregular aspect ratios, but I am running 16:9 (1920x1080). This is the drop down I am talking about for clarification. http://imgur.com/CASAQgO This also means that I can no longer use the Type that the menu is blocking. It's pretty frustrating and I'm hoping there is some work around or someone found a way to close it. Thanks!
-
Any work around for the broken drop down list?
derringer replied to derringer's topic in ARMA 3 - EDEN EDITOR
Unfortunately this did not work. It just tabs down to the Variable Name box in the Object: Init section. Thanks for replying though! -
Are you shooting around 300m all the time. Weapon zeroing seems to default to 300m, so if you are in an urban area a lot of times guys are less than 300m. This means you either change your zeroing (if the scope/iron sights allow) or you compensate your aim or you will shoot over their head.
-
You're partially right, it's most likely un-optimized scripting for whatever mission you are playing. Try Wasteland to see what I mean about un-optimized scripting.
-
Tutorial: Installation & Configuration of ArmA3 Dedicated Server
derringer replied to terox's topic in ARMA 3 - SERVERS & ADMINISTRATION
I have another question, this is a new post as it's unrelated to the previous one. Is there a way to save mission progress on a dedicated server? I am running Insurgency and if everyone disconnects and we connect again the progress is gone as it starts the mission again. I know that I can set it to be persistent, but for this mission that wouldn't work as the enemy can take back what you clear out. So eventually it would be just like restarting any way. I don't see any admin commands to save it either. Is there a command or something I can add to the server.cfg to enable this? -
Tutorial: Installation & Configuration of ArmA3 Dedicated Server
derringer replied to terox's topic in ARMA 3 - SERVERS & ADMINISTRATION
Edit: It's working now, not sure why but it just showed up in the server list and my friends have been able to connect. Maybe it just took a bit to propagate. Hiya, I have set up a server on a Win7 machine and I can connect to it fine with localhost, but no one else can connect from outside my lan. I have opened ports from 2300-2305 as well as 27016 and 8766. I have no mods running and I have tried having an empty MPMissions folder with no luck. The insurgency.altis is the mission in the MPMissions right now. I am using the DEV branch and both server and client are the same version. These are my config files: StartServer.bat Server.cfg -
Cannot get "this && isServer" to work in a trigger
derringer posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hiya, I am currently pulling out whatever hair I have left over what I think is a simple issue. I have Googled the hell out of this yet I cannot figure it out. I have an OpFor site module that I want to initialize with a trigger. I have the condition set to "triggerActivated Test" (without quotes) in the module. I want to have the trigger fire when there is 2 or less OpFors in the area. So I "have {alive _X} count thislist <= 2;" (again, no quotes) in the condition. Now, the part that is giving me all sorts of problems is that I want this to run in multiplayer, so I need to use "this && isServer" to prevent the trigger from firing on all clients. I have a game logic named server. This is what I have in my trigger condition field: this && isServer; {alive _X} count thislist <= 2; This returns a "Type BOOL, expected nothing" error. How do I get this run server side only? I've tried "if (isServer) then ..." and that didn't work, but that's probably because I'm not familiar with that usage. Any help would be greatly appreciated. -
Cannot get "this && isServer" to work in a trigger
derringer replied to derringer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Thank you very much Kylania, you truly are the saviour of Arma scripting! -
If statement with weapons and ammo
derringer replied to derringer's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I swear that I tried it with the quotes and it didn't work. It's working with them now. I knew it had to be something easy. The other way you mentioned will have to be the way to do it when I add the other launchers, I had no idea that it could be done that way. Many thanks Larrow! -
Hiya, I hate asking for help, but I tried and I just can't figure this out. I want to have a random weapon chosen from an array and then based on what is chosen, add the correct ammo type for that weapon, also from an array. This is my script that adds a random weapon, ammo type and item: Gun = ["arifle_MX_F","arifle_MX_GL_F","arifle_TRG20_F","arifle_TRG21_F","LMG_Mk200_F","launch_RPG32_F","launch_NLAW_F"] call BIS_fnc_selectRandom; Mags = ["30Rnd_65x39_Caseless_mag","200Rnd_65x39_cased_Box","NLAW_F","RPG32_F"] call BIS_fnc_selectRandom; Item = ["acc_pointer_IR","FirstAidKit","ItemCompass","ItemGPS","ItemMap","ItemRadio","ItemWatch","Medikit","ToolKit","Binocular","NVGoggles","acc_flashlight"] call BIS_fnc_selectRandom; Waffe1 = "groundweaponholder" createvehicle getpos this; Waffe1 addweaponcargo [Gun,1]; Waffe1 addmagazinecargo [Mags,3]; Waffe1 additemcargo [item,1]; Waffe1 setPos [getPos this select 0, getPos this select 1,4.34]; This works with no problem in the init of an invisible H (I can't get an execVM to work, it throws me an error if I try, but that is something I can live with). Now, I wanted to do the same thing just with the launchers and I have this: Launcher = ["launch_RPG32_F","launch_NLAW_F"] call BIS_fnc_selectRandom; LauncherAmmo = ["NLAW_F","RPG32_F"] call BIS_fnc_selectRandom; Item = ["acc_pointer_IR","FirstAidKit","ItemCompass","ItemGPS","ItemMap","ItemRadio","ItemWatch","Medikit","ToolKit","Binocular","NVGoggles","acc_flashlight"]call BIS_fnc_selectRandom; Waffe1 = "groundweaponholder" createvehicle getpos this; Waffe1 addweaponcargo [Launcher,1]; Waffe1 addmagazinecargo [LauncherAmmo,2]; Waffe1 additemcargo [item,1]; Waffe1 setPos [getPos this select 0, getPos this select 1,0.00]; This also works with no problems. What I want to do though is make sure that the right ammo spawns with the right launcher. This is what I have for an If statement to try to do this: Launcher = ["launch_RPG32_F","launch_NLAW_F"] call BIS_fnc_selectRandom; LauncherAmmo = ["RPG32_F","NLAW_F"] call BIS_fnc_selectRandom; If (Launcher == launch_RPG32_F) then { LauncherAmmo = "RPG32_F"; } else { LauncherAmmo = "NLAW_F"; }; Item = ["acc_pointer_IR","FirstAidKit","ItemCompass","ItemGPS","ItemMap","ItemRadio","ItemWatch","Medikit","ToolKit","Binocular","NVGoggles","acc_flashlight"]call BIS_fnc_selectRandom; Waffe1 = "groundweaponholder" createvehicle getpos this; Waffe1 addweaponcargo [Launcher,1]; Waffe1 addmagazinecargo [LauncherAmmo,2]; Waffe1 additemcargo [item,1]; Waffe1 setPos [getPos this select 0, getPos this select 1,0.00]; I have tried with and without LauncherAmmo being defined and it doesn't make a difference. I have also tried LauncherAmmo = "RPG32_F"; as LauncherAmmo = RPG32_F; and LauncherAmmo = ["RPG32_F"]; and none have worked. I receive no errors. It works exactly as my second example, it spawns a random launcher, random ammo type and a random item. Is there something small and obvious I am missing? Or am I going about this the wrong way? Any help would be greatly appreciated. Oh, I suck at coding because I do not know the syntax. So it's probably something with that. Thanks in advance!
-
I just KNOW this is most likely a really easy thing to implement, but I cannot find any help on this. I would like to have the blue HQ Radio Chat message pop-up with a custom message when a trigger goes off. For example: Between 10-20mins a group of OpFor spawns and attacks a BluFor base. When this trigger happens, I would like the Blue HQ text to read something similar to, "Base under attack, return to assist.". I apologize if this is really easy, but I can't find a thing about it other than globalRadio. But the example I see is _soldierOne globalRadio "messageOne". I'm not sure how to implement that, it mentions the description.ext, but how do I call or implement it? Gah I am horrible at scripting :/ ---------- Post added at 10:49 PM ---------- Previous post was at 10:47 PM ---------- Just for clarification, I have the group spawning and attacking with no problems, I just need the radio message text to appear.
-
So, after literally hours all night into the morning and many many searches here and on Armaholic, I cannot figure this out. I want to have a Helicopter fly in, land and drop off troops then either stay or fly off somewhere. I can get it to fly in and drop the troops off, but only if I want to do it at the start of a mission. I want to clear an enemy base then transport troops and unload them there. I cannot for the life of me get the helicopter to wait until I trigger it to move. No matter what I do the helicopter instantly takes off when the mission starts. I've read about how the helicopter AI sucks, but I'm curious if there is an actual way to do this yet? I just want something easy like this: Have a Transport Unload Waypoint set up. Make the Helicopter wait until I trigger it to move. The Transport Unload works fine, except the damn helicopter will not wait. I have used Stop, DisableAI Move, I have taken the fuel away (then the troops on board all disembark), doStop, Land and even tried moveTo and Move and all sorts of other things, I am at my wit's end and I'm out of patience with this so-called "easy to use editor". :( Any help would be greatly appreciated.
-
Another Helicopter Thread.
derringer replied to derringer's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
This should help out, I didn't find it because I didn't search for extraction as 'm not doing one, should have thought to look for it since it's the same principle. Kupla: This is doing what I already have done, I just need to have the helicopter wait until I tell it to go to the waypoint, which is what I can't do. PhelanKA7: Will try this out if the other two don't work, it's not what I want to do, but it may work if I change it up a little. Thanks for the replies all. ---------- Post added at 02:52 PM ---------- Previous post was at 01:32 PM ---------- UPDATE: I got it working perfectly. Here's how I did it: 1: I started with having a group In Cargo of the Helicopter. 2:I created two Waypoints for the Heli. The first one is a Hold right beside it, the second one is an Unload on my destination. I also added an Invisible H at the Unload Waypoint. 3: I created a Switch Trigger synchronized with the Hold Waypoint, when the trigger fires the Heli cancels the Hold Waypoint and proceeds to the Unload Waypoint. Also of note is that Kupla's method above works perfectly as well, except I had to add the Hold Waypoint with the Switch Trigger to make it work like above. My problem initially was that I didn't know that a Hold Waypoint is indefinite without a Switch trigger to cancel it. Many thanks for your replies and help. :) -
How to get briefing to show up before mission starts?
derringer replied to Hoppern's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Apparently I am cursed with getting the custom images to show. Now all I'm getting is a black box where the image should be, whereas before it was nothing at all. Anyone encounter this? Could it be bit-depth? I'm using a jpg, nothing fancy. -
Keeping Command Privileges after respawn.
derringer replied to derringer's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Thanks for the response, that worked great. I feel pretty dumb not realizing that one actually. -
Keeping Command Privileges after respawn.
derringer posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I know respawning players has a lot of topics, but I couldn't find any info on this. In a SecOps mission, if I die as the commander (the one who accepts the missions and sets tasks for the waypoints), when I respawn I can no longer accept missions or assign tasks since another unit (always AI, never the other player) gets promoted to lead. Anyone know how to retain the commander privileges after a respawn? -
How to get briefing to show up before mission starts?
derringer replied to Hoppern's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Thanks Mike, I think the power of 2 rule is causing my problem. -
Vehicle drop from C130
derringer replied to frattonstation's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I think I'll just suck it up and use normal crates. I'm nowhere near the level of knowledge for that kind of undertaking. Thanks for the reply though. -
How to get briefing to show up before mission starts?
derringer replied to Hoppern's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
What's the size limitation for custom images in briefings? I can't get any to show up. -
Basic Briefing howto
derringer replied to Mike84's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
I'm having no luck with tasks and the briefing after patching to 1.02. I can set notes with no problem but tasks won't show up and the briefing won't show up at all. I've tried the step-by-step from this post. I've copied the great script that is posted here as well. I get no errors but tasks and the briefing just won't show up at all. I have execVM "briefing.sgf"; in my init.sqf so it should be execing. This is my briefing.sqf, maybe I'm dumb and missed something obvious: player createDiaryRecord ["Diary", ["Title 2", "Isn't whitespace awesome? <br/><br/><br/>Yes it totally is!"]]; player createDiaryRecord ["Diary", ["Title 1", "We have an objective <marker name=tsk1'>here</marker> and one <marker name='tsk1'>there</marker>]]; tskExample1 = player createSimpleTask ["Task Title 1"]; tskExample1 setSimpleTaskDescription ["Task Message 1", "Task Title 1", "Task HUD Title 1"]; tskExample1 setSimpleTaskDestination (getMarkerPos "tsk1"); tskExample1 setTaskState "SUCCEEDED"; tskExample1 setTaskState "FAILED"; tskExample1 setTaskState "CANCELED"; tskExample1 setTaskState "CREATED"; The only thing that I changed was I created a marker called tsk1, which works in the notes. Any help please? Yes, they are in the mission folder. ---------- Post added at 04:23 PM ---------- Previous post was at 03:38 PM ---------- Please disregard, I had no idea briefings didn't show up in the editor preview unless you hold Shift when clicking preview. -
Vehicle drop from C130
derringer replied to frattonstation's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Sorry to revive an older thread, but I'd rather bump this than create a new one. Can someone help me with dropping a custom crate? The script works perfectly for me already, except that I can't drop a custom crate. Just adding the name of the create in the init isn't working. nul=[getpos Derringer,"HMMWV_Armored","ammo","HMMWV_Avenger",225] execVM "dropspawn.sqf"; ammo is obviously the crate. All help is appreciated! -
Ordering Units into an Osprey or C-130?
derringer posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Hiya, how do you get a squad to board an Osprey or C-130? I'd like to have them jump out of the Osprey, complete a task (which is working) and then be able to give the order to board the Osprey again when I want to, not automatically. Right now, if I select the squad and order "Get in MV22", my order will be "Rearm at MV22" to which they will all reply "Negative". Is there something obvious I'm missing for them to get into it? I have them start out in it, which is great, but I'd love to have them jump out and then be able to be ordered back in. I've looked it up and tried the assignUnit and such but none of it seems to work unless I'm using them wrong (which is entirely possible and even likely). Any help would be appreciated! -
Yeah, my bad on assuming you're using XP.
-
Open a folder window and choose: Tools -> Folder Options -> View -> Uncheck Hide Extensions of Known File Types -> Ok You should see every file extension now.