Jump to content

Grapjas

Community Members
  • Posts

    498
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Grapjas

  1. IIRC someone was working on improving AI and making personalities for it. Not sure how that progressed, havent been on IRC for some time. His name was jcwasmx96 or something like that. Edit: he hasn't been active since may 2022 it seems.
  2. I'm pretty sure someone can recompile the game and still play with people in the lobby if all you did was disable a check. Maybe someone more knowledgeable can confirm. A checksum can be networked, what isn't there can be made. Still leaves the problem above though. But you'd cut out a decent portion of cheaters, untill someone publishes an alternative 0ad build they can install with a simple .exe. It only shows signed mods afaik. Or better said, mods downloaded through the ingame downloader, which is the same thing.
  3. Yeah it's gotta be exhausting being obtuse on purpose i guess. It's wasted energy. But now some volunteers have to find a solution to make games fair, which would've happened sooner or later anyway so its not a bad thing persé. Onto that subject, i think a "no mods" toggle for the host would be nice thats on by default. But im not sure 0ad supports loading/unloading mods on the fly yet, seeing how you need to restart the game if you download a mod. On the other hand coding while playing does live update. Haven't looked into that much yet, and if it's on the cpp side of things im not even going to lol. Maybe a mod can be made that detects unsigned mods or shows what files people have altered.
  4. I mean alot of games have tasks/routine that come with the genre, but that's not what i said anyway. You still need to adapt to the game and what's happening around you and be faster than the enemy. And thats excactly the unfair advantage it gives opposed to someone who doesn't use it, dont you see that? You're being really obtuse about it tbh. I'm sure there are people that would love to play it. It honestly sounds like total war games are better suited for your RTS itch if all you want to do is slay but w/e.
  5. I'd be heavily against implementing more automation into vanilla. It's part of the rts to juggle all balls, economy, warfare and management. Satisfaction comes from mastering those aspects of the game and beat your opponent fairly, meaning either all have the same mod(s) or no one has a mod. If you feel you need automation to win certain games then you are simply playing against players out of your league. Or if you feel like you are forgetting to keep producing units then you have an area to focus and improve on. No disrespect meant to any player whatsoever. I do think you have to be a little dense if you think automating half the game for you does not give you an advantage and isn't cheating though.
  6. You could probably do it via triggerscripts, you can then control which maps you want what soundtrack on very specifically.
  7. Can confirm you can do this via delayed damage cmp, just tested it. Fun fact; only missed projectiles stay on the ground in vanilla (if they have an actor anyway).
  8. IIRC the delayed damage cmp does all. Might misremember though, been a while. Also, I doubt theres anything to gain from this at all if a projectile has no particles tbh.
  9. You can override the impactActorLifetime in the Attack component. There is also a DelayedDamage component, which I used in grapejuice as a workaround at some point (not anymore though). You're going to have to test OOS cases yourself although im fairly sure when doing it through DelayedDamage component it wont OOS.
  10. It's not an abandoned project, i'll come around to it but it's not a focus atm. Ty for the interest
  11. I thought they did this to just troll and f around, but this is honestly a sign of mental illness in some form. Although taking pleasure in ruining other people's experiences is also walking that line but i digress.
  12. lmk if you need some help or have some suggestions when you get to it, would love to hear it.
  13. @real_tabasco_sauceYeah i plan to expand upon it with different types of envoirementals in the future with some even having some beneficial effects. It's technically an template entity with an aura. I made a small component for the moving and spawning, but needs a map script[1][2] i made so that i can control what maps get what types of envoirementals. Not familiar with the random map gen code but i guess it should be failry easily if you wanted to.
  14. Big update! New structure: Braziers! Ranged units near it will shoot flaming projectiles and apply burning. Can be toggled on or off. While on it consumes 1 wood per second. Han civilization is working Arcing projectiles! (thanks to @BB code with some of my own modifications to it) Improved rearm aura code Numerous prop & animation fixes Code cleanup Better flaming projectiles Walls can be built on top of tree's (tree's will be destroyed upon completion) Improved tooltips (added ammo and energy stats to them aswell) Unit resistance corrections Pikeman and spearman cav bonus fixed Add bleed status effect to the game (dogs have this now) Envoirementals like sandstorms! (just sandstorm for now). They will spawn randomly throughout the game and move around and dissapear after some time. Sandstorm effects: Slowly damages organic units caught within and heavily reduces vision range. sandstorm maps: atlas valleys, butana steppe, crocodilopolis, death canyon, egypt, golden oasis, hindu kush, libyan oasis (2p, 4p), median oasis (2p, 4p), saharan oasis (2p, 4p), sahel, syria, team oasis, tarim basin (2p, 4p) Probably other new stuff i forgot to note down along the way. sandstorm.mp4 sandstorm showcase arcing_fire_projectiles.mp4 brazier & arcing projectiles showcase Updated orignal post download links. @Stan`when you have time can you take a look and approve on modio? Also why is my orignal post hidden after edit?
  15. It gets called alot throughout when the foundation is being built, but the statement should still only run once. Maybe twice, but engine.DestroyEntity does nothing gamebreaking if the ent doesn't exist anyway otherwise i'd expect it to throw an error. EDIT: you are right the var should be emptied if it does called multiple times though
  16. Well, as i said it was more of a prototype code and expected someone to build off of it . As for entsToDestroy, it doesn't need to be cleaned or emptied because a foundation will just start with an empty variable to begin with and be gone when the foundation has been built. The new zip below has some fun JS edge case (also why are empty arrays truthy ) going on where it pushes ent twice, not really an issue but it shouldn't regardless. Also got the shading to mark entities red that would be destroyed semi working aswell (not in this zip tho) but i've honestly got to much projects going on to finish it anytime soon lol. Lemme know if this one's better and tweak it as you need. BTW, can't you simply delete my mod (or files) to test if it still happens without? walls_destroy_trees.zip
  17. The last line in Stan's link is pretty important and different from a "normal" component type aswell so be sure to get that right. If that doesn't solve it, could you share your code on pastebin or something?
  18. Just a heads up this line should be if (this.GetBuildProgress() == 1.0 && this.entsToDestroy) and i also didnt check OOS (probably fine though). Was more of a prototype code.
  19. Was a bit bored so i made it anyway, lol. Do with it as you (anyone) please. Delete the Foundation file if you want the trees to disappear the moment they start building, otherwise they will only be deleted until the wall is done (to prevent exploits?). walls_destroy_trees.pyromod Btw, the tooltips like "cannot be built on another building or resource" for walls aren't working in vanilla. A project for someone else
  20. You could probably do something like replacing this line with let collisions = cmpObstruction.GetEntitiesBlockingConstruction(); then check if those entities are a tree class (or whatever class it is) and pass ret as "success". Not sure if that would delete the trees but if not then you probably need to tweak the commit function in foundation or the IsFinished() function if you only wanted them deleted when the building is done.
×
×
  • Create New...