Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.123
  • Joined

  • Last visited

  • Days Won

    587

Everything posted by Stan`

  1. Would be nice to have capturable rolling fireballs you could throw on your enemies.
  2. Well it seems in his case it didn't even work so... I'm not sure.
  3. The issue with this is that it assumes the engine will never be used for anything else without the public mod. While it's true now, I hope it won't be in the future. For things like
  4. https://trac.wildfiregames.com/wiki/ScrollingWithButtons https://trac.wildfiregames.com/wiki/ScrollingWithText
  5. EDIT: Can you right click on every of those files and check they are not locked? Sometimes windows locks file from the internet preventing their use. @The Undying NephalimNephalim
  6. That's really weird considering it worked for someone else. But it's a sanity check so you can ignore it for now. If you haven't made a backup you should be able to copy the files from your old computer
  7. If you want to make more cheat units, I guess we could come up with something
  8. I don't think so, it's a bit like hiding a bug under the rug
  9. It has been reported to @wraitii sometime ago I think, no fix yet.
  10. How do you launch the game? Do you have multiple instances of 0 A.D. installed?
  11. Can you show me your folder? You need to copy the fourfiles in something like %localappdata%\0 A.D. alpha\binaries\system
  12. Using this patched version you should be able to play. You need to copy the four files.
  13. If they are on the same connection as the host they should connect via IP the lobby will try to connect them as if they were external players and fail.
  14. Sure if this gets done it should not be rushed.
  15. @Lion.Kanzen Can you try to come up with a number of how many people would be interested ?
  16. @Lion.Kanzen Timezone an avaibility might still be an issue.
  17. @Alexandermb In case you didn't know the engine also supports animations variants for packing and unpacking. Thanks @Angen for noticing. Pack.prototype.Pack = function() { if (this.IsPacked() || this.IsPacking()) return; this.packing = true; let cmpTimer = Engine.QueryInterface(SYSTEM_ENTITY, IID_Timer); this.timer = cmpTimer.SetInterval(this.entity, IID_Pack, "PackProgress", 0, PACKING_INTERVAL, { "packing": true }); let cmpVisual = Engine.QueryInterface(this.entity, IID_Visual); if (cmpVisual) cmpVisual.SelectAnimation("packing", true, 1.0, "packing"); }; Pack.prototype.Unpack = function() { if (!this.IsPacked() || this.IsPacking()) return; this.packing = true; let cmpTimer = Engine.QueryInterface(SYSTEM_ENTITY, IID_Timer); this.timer = cmpTimer.SetInterval(this.entity, IID_Pack, "PackProgress", 0, PACKING_INTERVAL, { "packing": false }); let cmpVisual = Engine.QueryInterface(this.entity, IID_Visual); if (cmpVisual) cmpVisual.SelectAnimation("unpacking", true, 1.0); };
  18. Unfortunately, we are in so many location that it'd be difficult for us to gather in one place. In february it will be the most of us in one place since ever...
  19. Do you think people would show up for a Q&A livestream? I could consider doing something like that. I'm afraid people would only come to troll or complain about lag... And we'd end up looking like this
  20. Tell them we are doing the best we can to release another version but that it might take a few more months...
×
×
  • Create New...