-
Posts
2.596 -
Joined
-
Last visited
-
Days Won
63
Everything posted by real_tabasco_sauce
-
Non-random BuildingAI
real_tabasco_sauce replied to real_tabasco_sauce's topic in Gameplay Discussion
Yes there are some that should be looked at. But there is some grey area: if the graphics give the user enough information, it may be good to avoid adding too many sound cues to avoid audio clutter. for example, aoe2 docks will make a lot of ding dongs and it can get overwhelming XD. -
Non-random BuildingAI
real_tabasco_sauce replied to real_tabasco_sauce's topic in Gameplay Discussion
20240916-1553-07.9350148.mp4 -
Non-random BuildingAI
real_tabasco_sauce replied to real_tabasco_sauce's topic in Gameplay Discussion
I don't think any sound is used. I kind of like the idea of using https://gitea.wildfiregames.com/0ad/0ad/src/branch/main/binaries/data/mods/public/audio/attack/weapon/arrowfly_02.ogg but with more volume. It's fairly quick sound and is the least monotonous of the arrowfly sounds. maybe even one of the old sling sounds could be good: https://gitea.wildfiregames.com/0ad/0ad/src/branch/main/binaries/data/mods/public/audio/attack/weapon/sling_22.ogg edit: I went with the second one since the first one doesn't sound very exciting. -
Non-random BuildingAI
real_tabasco_sauce replied to real_tabasco_sauce's topic in Gameplay Discussion
@Stan` @wowgetoffyourcellphone any sound recommendations for telling a building to attack something with its arrows? -
Non-random BuildingAI
real_tabasco_sauce replied to real_tabasco_sauce's topic in Gameplay Discussion
Ok so I have made some developments: 20240916-0307-49.9922231.mp4 In the above are some nice UI improvements: Instead of the arrow, a rally point cursor appears when a unit's destination is just to a particular location. When all a structure's firepower (building arrows AND degarrisoned soldiers) are to be sent to a particular enemy unit, the familiar sword icon appears. This is the behavior if no hotkeys are involved. If you press ctrl ("autorally" hotkey, for example used to garrison trained soldiers back into the selected building), the rally point alone is set to that enemy and building arrows remain untargeted if you press "force attack" (unfortunately this is also ctrl by default), you are in command of the building arrows and only the building arrows. shown by the red crosshairs. Also, the arrows now fire in sort of volleys or bursts, rather than a constant stream of arrows. This means they can be dodged to a degree, which is fun. Next steps: change force attack default hotkey (or find another appropriate hotkey). add some audio feedback for when the arrows of a building are being targeted. rebalance building damage according to non-random building AI. rework building technologies and/or change building damage with each phase. -
Ok, there have been issues with OOS in the new version of the community mod. It seems many of these are related to install issues with version 12: For example: <p class="warning">WARNING: Technology "phase_town_spart" does not exist</p> In this case, a version 10 file called "phase_town_spart" remains after installing version 12, which is supposed to be deleted in version 12. How to fix (and hopefully this solves the OOS for good). uninstall all your mods navigate to your mods folder (For example, windows might be C:/Documents/My\ Games/0ad/mods/ delete the community mod folder open 0ad and re-install the community mod and your other mods.
-
yeah seems fairly flexible. I'd probably like to experiment with stuff like that in the future. Right now, i'm working on some random maps and the map placement options.
- 87 replies
-
- rebalance
- atlas templates
-
(and 5 more)
Tagged with:
-
@Grapjas I really love the sandstorm! Its a really cool feature. It seems it might not be too hard to make a blizzard based off of the sandstorm. It could slow units down a little. How do these work, generally speaking? Are they baked into skirmish maps, or are they something you can enable in the json file for a random map for example?
- 87 replies
-
- 1
-
-
- rebalance
- atlas templates
-
(and 5 more)
Tagged with:
-
Buena suerte!
-
recently, I tried another conditional return, only when totalBuildRate was NaN. This didn't help, because totalBuildRate presumably becomes NaN after commit(). if (isNaN(this.totalBuilderRate)) { warn("Value of builder rate is NaN"); return false; } I wonder if there is something we can check instead of totalBuildRate that will return false when we want it to. Maybe EntstoDestroy being empty or something else?
-
community-testing-5.zip these changes add @Norse_Harold's above suggestion to prevent entities from being deleted more than once, and includes the changes to only return false; if the building is not a wall or palisade. This prevented any crashes until we started building walls. We did a game where we only placed walls on completely bare ground, completely avoiding trees and decorative entities, and the crash still occurred.