-
Content Count
4642 -
Joined
-
Last visited
-
Medals
-
Medals
-
Everything posted by gossamersolid
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
I'm assuming the revive system put in with Apex is never going to get event handlers added to it?- 1481 replies
-
- 1
-
-
- branch
- development
-
(and 2 more)
Tagged with:
-
PRACS: SLA Faction 2017
gossamersolid replied to wld427's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
I'm a fan of MT-LB and variants :)- 400 replies
-
PRACS: SLA Faction 2017
gossamersolid replied to wld427's topic in ARMA 3 - ADDONS & MODS: DISCUSSION
Good to see PRACS being worked on for ArmA 3. I must have completely missed this thread when it was originally posted.- 400 replies
-
- 2
-
-
I don't think it's necessarily something BI can fix. If you think about it, this has always been something that can be done. Before steam workshop, what stopped somebody from downloading your mod and uploading it to one of many websites out there that allow you to easily upload files? Pretty much the only workaround is that you post your mod to steam workshop so at least you're getting the recognition. Honestly, I know some people (including yourself) don't like what the steam workshop is, but it's not going anywhere - it's here to stay.
-
You're fighting a losing battle, much like prohibition of alcohol in North America in the last century.
-
1.72.142223 Small Marker Text Fix
gossamersolid replied to derbismarck's topic in ARMA 3 - ADDONS & MODS: COMPLETE
I was going crazy trying to find if there was a new command to change the vertical alignment of text against a marker... -
Make Admin Player Invisible
gossamersolid replied to a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Just a small tip in the future, when you look up a command on the BIKI: https://community.bistudio.com/wiki/hideObjectGlobal Look at the top where it marks what the locality of arguments and effects are. hideObjectGlobal needs to be run on the server, but its arguments and effects are global. This means you run the command once on the server and it'll be handled for all clients at the engine level. -
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
Look above at the video I posted. It was a discussion on finding the balance between looks and performance. My current implementation does not appear to cause performance issues from what I can see. As mentioned much earlier, if drawPolygon had the ability to render fills and not just a "border" style, I wouldn't have to resort to markers.- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
See I read the element count was very high and you should basically never hit it, but after outputting 25mx25m markers all over Malden and putting them into arrays (so I can reference them later), the variable was always appearing to have a value of nil - no errors in the RPT. So I started deleting elements and all of the sudden it got the value assigned as expected. You could most likely replicate it if you use my code posted earlier on a larger map like Altis and make 5mx5m squares. Keep in mind you'll probably be waiting a long time for it to finish processing.- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
Thanks. I've been wanting to do something like this for a while (hence the reason I think being able to draw a fill on those polygons I mentioned earlier would make this more possible - cleaner). I tried doing smaller squares at first so that it looked nicer, but I seemingly hit the max size of an array when trying to store the marker information for later (so I can manipulate the colours and such).- 1481 replies
-
- 2
-
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
As promised, here's the video: If you want to run the script or take a look at it, here that is: https://pastebin.com/Rjugu1nC It builds "zones" based around flag objects (classname: Flag_Green_F - so you'll need at least one of those, bare minimum).- 1481 replies
-
- 1
-
-
- branch
- development
-
(and 2 more)
Tagged with:
-
RHS Escalation (AFRF and USAF)
gossamersolid replied to soul_assassin's topic in ARMA 3 - ADDONS & MODS: COMPLETE
So it's just a global var, not per vehicle?- 16525 replies
-
- Weapons
- Accessories
-
(and 1 more)
Tagged with:
-
RHS Escalation (AFRF and USAF)
gossamersolid replied to soul_assassin's topic in ARMA 3 - ADDONS & MODS: COMPLETE
Quick question, is there any way to disable the scripted engine warmup process found in some RHS vehicles? I've noticed that the AI sometimes derps while it's waiting for the engine to startup (as in they'll spam issue orders). If it's not possible, that's fine, just wondering.- 16525 replies
-
- Weapons
- Accessories
-
(and 1 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
Yes. They're 100x100 rectangles touching each other. Appears to be completely seamless at any zoom level (as far as I can see). I'll get a picture (or even a video) when I can.- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
This is definitely a step in the right direction, but I would prefer if drawPolygon had the ability to set a fill texture much like drawTriangle does. I'm basically splitting the map up into zones that are polygons (some are simple, some are more complex in shape). To workaround, I've currently filled the map using little 100x100m square markers to have the illusion that it's a more complex shape.- 1481 replies
-
- 2
-
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
Hmmm, just read it could take up to a minute to delete the empty group. While it's certainly more easy/elegant, if you already have a small snippet written in your unit killed EH function to handle it, then there's pretty much no point. I'm unsure why it cannot be instant. They could easily do the same thing we've had to do, but rather than using SQF, it could be at engine level. Whatever, guess it's an easy alternative if you don't care about empty groups sitting around for up to a minute.- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Scripting Discussion (dev branch)
gossamersolid replied to Dwarden's topic in ARMA 3 - DEVELOPMENT BRANCH
Oh this is a thing now? I forgot to delete groups at one point in time in my mission and around an hour in, nobody's AI would spawn anymore and I couldn't figure it out at the time. Eventually I had figured out that there were a huge amount of groups with 0 units in them, at which point time I realized I need to manually clean them if everybody in the group dies. Guess this command would help with that.- 1481 replies
-
- branch
- development
-
(and 2 more)
Tagged with:
-
Arma 3 1.64 crashing every 10 minutes exactly
gossamersolid replied to Cpl. Webb's topic in ARMA 3 - PORTS
Why are you still playing on 1.64? The current version is 1.70. EDIT: Oh, you're on the mac port? I don't know if those are officially supported as being stable. You might have to dual boot into windows if you want to play. -
Favourite/Least Favourite Aspects of Warfare/CTI?
gossamersolid replied to gossamersolid's topic in ARMA 3 - QUESTIONS & ANSWERS
Ah this thread seems to have got some nice varied responses now. Thanks for everybody who provided their opinions/suggestions. It seems like most people agree that the thing that makes warfare great is the scale and freedom you get within ArmA, put into 1 gamemode. The negatives seem to rely around the quality of the players (not doing what's best for the team, sitting there with sniper + rocket combo, etc) and that matches go for far too long. I know I tried to address the match length issue in my CTI implementation for ArmA 3 with a ticket system. Each team had x amount of tickets (I think 1000), each time a player died the team had 1 ticket subtracted. If your team owned more territories over the enemy team, the enemy team had a ticket "bleed", meaning they lose x amount of tickets (that increases as the other team has more and more territory over your team) every minute. I thought it was a great way to make the fighting more focused and stop the whole 24 hour match length issue, but it just caused people to rage quit when their team had less than 100 tickets (even though the bleed stopped at either 25 or 50 tickets, meaning they could still make a come back). There's a very fine line to walk between restricting the player's choices (having capturable zones connected so the fighting is contained) versus the freedom that people expect from the gamemode. -
Are we ever going to see the drawPolygon command expanded? We really need the ability to set a brush/fill mode. Also it'd be great to have command(s) to get entities/objects within a polygon (array coordinates provided) rather than having to rely on radii from a center location like we currently do.
-
Loving and loathing ARMA. Re-installing again...
gossamersolid replied to Valken's topic in ARMA 3 - GENERAL
Yeah I agree with you here. It's unfortunate to miss out on some good mods out there, but the process of keeping them all manually up-to-date just isn't worth the effort anymore. Either it's because my attitude towards it has changed as the years have went on and/or workshop has made me lazy. Also as I've pointed out before, if you ever want to play with other people, workshop is simply the easiest route. I had way too many headaches getting people to unzip a folder the arma root and add a parameter to the shortcut or use a launcher. It's amazing how difficult this process was for people (because, it really isn't difficult). -
Loving and loathing ARMA. Re-installing again...
gossamersolid replied to Valken's topic in ARMA 3 - GENERAL
No it's not. It's probably the best thing to happen to the series. More exposure and easier mod installation/updates for a vast majority of the playerbase. It's actually viable to run a public server with required mods now because the launcher + workshop allow people to easily join. Before it was a complete headache. -
64-bit Executables Feedback
gossamersolid replied to Richard.biely's topic in ARMA 3 - DEVELOPMENT BRANCH
Speaking of ArmA extensions, whatever happened to a non blocking version of callExtension (spawnExtension?). Also why is the 10KB return limit there in the first place? If there's a reason for a hard limit, why can't it be something much larger? -
Ideas how to improve/clean up the action menu
gossamersolid replied to BL4DE's topic in ARMA 3 - GENERAL
and these are two examples are extremely un-intuitive ways to implement menus because unless somebody tells you about the key to press, you have no clue there is a menu. At least the action menu is something that's just so built into ArmA that people will see an entry there.- 11 replies
-
- action menu
- interface
-
(and 7 more)
Tagged with:
-
Ideas how to improve/clean up the action menu
gossamersolid replied to BL4DE's topic in ARMA 3 - GENERAL
I wouldn't say get rid of it. It's still very useful for scripted content to put an easily visible option.- 11 replies
-
- action menu
- interface
-
(and 7 more)
Tagged with: