Jump to content

thirith

Member
  • Content Count

    387
  • Joined

  • Last visited

  • Medals

Everything posted by thirith

  1. We've just started playing with ACE3, but we don't do our own missions but use downloaded ones instead. As non-ACE3 missions without a Virtual Arsenal don't really leave us with enough bandages, blood etc., I was wondering how one would go about creating a client-side mod that the admin of the game sessions could load and that would basically allow the admin to spawn an ACE Medical Crate at their position, ideally at the press of a button (though addAction would also be okay). How simple would it be to create something like this that works on a dedicated server?
  2. Cheers, that helps a lot. I wasn’t aware that logged-in admins have access to the console by default, since I’ve never had to use it before. That way I can just play Oprah: ACE Medical Crates for everyone!
  3. I've seen that ACE3 was discussed a couple of years ago, but I didn't see any concrete discussion of The Forgotten Few 2 and the ACE medical system. I quickly launched the mission in SP and MP, and from what I can tell a problem with running this with ACE3 would be that we simply wouldn't have the necessary medical equipment, i.e. bandages, blood and the like. Do I understand this correctly, and if so, are there any solutions? Or is there a way of getting this kind of equipment in the mission?
  4. I'm using the code below in a waypoint completion script. It plays when a unit has boarded a transport helicopter, playing a "Go, go go!" sound originating from the unit. This works fine when I play the mission from the editor or on a non-dedicated server, but last weekend we tried it out on a dedicated server and the "Go, go, go!" didn't play. if (isServer) then { call { [] spawn { playSound3D ["A3\dubbing_f_beta\firing_drills\Timing\firing_drills_timing_ROF_4.ogg", passengerGreen1]; sleep .32; playSound3D ["A3\dubbing_f_beta\firing_drills\Timing\firing_drills_timing_ROF_4.ogg", passengerRed2]; sleep .32; playSound3D ["A3\dubbing_f_beta\firing_drills\Timing\firing_drills_timing_ROF_4.ogg", passengerRed2] }; }; }; Any idea what the problem might be? (To be honest, I don't work with call or spawn very often, and this is code that I originally wrote years ago but never tried on a dedicated server, so I wouldn't remember why I went for the call/spawn combo, in case this is what causes the problem.)
  5. I agree with you about the call; I put it in there for a reason, probably because someone told me to, or because I read it somewhere, but I can't remember what that reason was - as I said, this was years ago, and unfortunately I don't script on a regular basis. The variables and names are definitely defined in server, because they're also used for different scripts. The only bits of script that I actively noticed not working were the playSound3D ones.
  6. Thanks for having a look at it! Over the last two days, the problem with the slots hasn't reoccurred, so I'm really thinking it may have been due to any other number of factors and not the obvious, clear ones. I'll tweak the mission a bit more and then I'll upload it on Steam. I might also start a thread here, just to see if people are interested in that kind of thing and if they have any suggestions how I can improve it.
  7. I've been running into the common problem that when I create a non-dedicated server and open a mission, no slots whatsoever are shown on the lobby screen. Usually people say that the problem is one of mods, e.g. the mission needs mods that you haven't currently loaded. The thing is this: I'm talking about a mission I created from scratch that doesn't include any mods, and I'm launching Arma without mods as well. More than that, this is a mission that worked okay yesterday, but today I added a couple of invisible helipads - and, suddenly, no more slots! Can anyone help me with this problem? I can test the mission in SP, but obviously this won't let me check if all the slots are set up properly. P.S.: In case this helps, here's a link to the RPT file: https://1drv.ms/u/s!AiIhjeAs3M6RkcVwJeEaMlgSRuiTHA?e=P9tgM0
  8. No worries, Gunter! I don't expect the pros on the forums to be at my beck and call 24/7. 😉 I've since continued working on the mission, and sometimes the slots pop up, sometimes they don't. Sometimes without me having made any changes to the mission. If you want to have a look to see if there's an immediate problem with the code, you can download the mission here: https://1drv.ms/u/s!AiIhjeAs3M6RkcV1JynIwO9_coGm3Q?e=kZ9uRj I've not done any optimisation, so there's definitely code in there that will make most people roll their eyes or go pale, but if there are any obvious errors in how I've gone about things that could explain the issue with the slots, I'd definitely be happy to hear about them. However, I will not take any blame for the AI pilots' tendency to crash into each other and burn - and that's half the fun of a helicopter race, innit? 😁
  9. From reading a fair number of threads, both here and on Reddit, on the topic, I get the impression that the following is still not something that's self-evident: what's the best way to have an AI helicopter on the ground at point A take off, fly to B and land? The first part seems easy enough: I just put down the helicopter at A and a helipad at B, name them something along the lines heli1 and waypoint1, and then put heli1 move (getPos waypoint1) in the helicopter's init field. However, when it comes to landing, it seems to get a bit complicated. I was thinking of something like this: waitUntil (unitReady heli1); heli1 land "LAND"; But would I also put this in the helicopter's init field? And if I did this with, say, a dozen units, would those individual scripts have a noticeable effect on how the mission runs? Might it make more sense to have triggers close to point B and only run the waitUntil part of the script once the helicopter has entered the trigger area? Or am I going about this entirely the wrong way?
  10. Thanks - I'll check out that video. For the mission I'm working on the combat environment shouldn't be an issue; it's a helicopter race, the kind of thing we might play at the end of a session to unwind. A couple of helicopter teams need to go and pick up units and drop them off at the base. I'm hoping to add scripting so that any helicopters not manned by players still take part, so that solo players don't feel all alone (and there's always something cool about flying together with other helicopters!).
  11. Yup, just tried with the correction you suggested, and I'm afraid there are still no slots to choose from. Here's the RPT file: https://justpaste.it/1uodj
  12. Cool, that's a good tip re: justpaste.it! I'll check the description, though it'd be weird, because the state the mission was in yesterday, when the slots showed, was the same as today, other than the additional invisible helipads. Then again, Arma wouldn't be Arma if it wasn't weird every now and then...
  13. thirith

    Combat Den

    Okay, thanks. I was looking for the intel when a message popped up that it had been destroyed, so I couldn’t confirm either way.
  14. thirith

    Combat Den

    Is it possible that there's some issue with respect to ACE3 and missions where you have to find intel? I just played a mission on the Lythium map, where my task was to clear out a camp and search for intel. There were two tables that looked like they should be searchable - there were maps and stuff on them - but I didn't seem to get the option to search them, either in the default scroll menu nor in the ACE interaction menu. Though I'm pretty new to ACE, so it's possible I simply didn't do it right.
  15. Thanks, that's what I thought I'd previously read somewhere. I'll stick to that rule of thumb. Any idea what the situation's like with respect to Project OPFOR?
  16. We're currently mostly playing missions like Dynamic Recon Ops and TRGM2, where you can mix and match factions, so I was wondering: how well does it work to set up CUP factions against, say, RHS factions or factions from Project OPFOR? Are there things to keep in mind that don't work particularly well?
  17. There's a lot that appeals to me when it comes to ACE3, including some functionality that simply isn't on offer otherwise, from the ACE3 interaction menu via map gestures/tools and advanced throwing to the way it ties into ACRE2 (e.g. vehicle racks and intercom). At the same time, I don't think the many elements that strive for more realism would be right for me and my small coop group, at least not at present. From what I understand, it's easy enough to deactivate pretty much all of these elements. What I'm wondering, though, is whether there are any players here who have some experience with ACE3 stripped of those elements and whether it's worth including it already for the additional functionality, even if we end up deactivating a large part of what makes ACE3 ACE3? P.S.: Obviously there is a chance of a minimalist ACE3 setup acting as a gateway drug. I don't know how feasible this is, but who knows...
  18. I think it’s the medical system (advanced or not) that I think might be the sticking point, because it seems to add a fair bit of friction. Many other aspects seem more like additions you can but don’t have to use, and some fill in gaps in the options the game offers. At the same time, since the missions we play use a few different medical systems, so we never know whether we can drag or not in this system or whether the wounded can crawl or not, ACE3 might make every mission work the same medical-wise (that is, if it overwrites whatever is built into the missions).
  19. And a second question - which may well have been answered elsewhere, but I’ve not found a clear answer: for groups not using ACE3, is the vehicle intercom functionality restricted or entirely absent?
  20. At present, does ACRE2 have any well-known issues with other common mods? Or does it play well with most others?
  21. We just had a game using the new TFAR version for the first time. Regular directional voice chat worked well - but regardless of what frequency we were on, the radios didn't seem to work properly. We get the regular radio pop, but the others don't receive the signal as they would in the old version. Even weirder (though I can't speak from my own experience, as I only heard about this from the other players): it seems that when they spoke on the radio, they'd hear their voice (without the radio effect) coming from me! Any idea what might be causing this? And are there any specific settings I have to change before the new mod will work okay with all or most missions?
  22. I’ve been recording our A3 sessions for a while using Shadowplay, but recently I’ve run into the following problem: when I edit the videos in Vegas Movie Studio, the audio desyncs from the video. I gather it’s a problem with variable vs fixed frame rates. Any tips on how I can best capture footage to avoid this problem and end up with video that Movie Studio works well with?
  23. Thanks, Gunter, and a Happy New Year to you too! I'll check out OBS and the video.
  24. What kind of CBA config is necessary?
  25. When switching from the old version to the beta version, is there anything in particular to keep in mind?
×