Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    17.955
  • Joined

  • Last visited

  • Days Won

    578

Everything posted by Stan`

  1. Currently they inherit the builder mixin. Think of mixins as partial templates. You can remove elements from the queue by writing -building Or you can change the inheritance to not have to do that.
  2. You can but you need to release the source code if you change the engine, or point to us if you don't, and give appropriate credit.
  3. If the models have different textures, they need to be separate objects and separate DAEs. Then referenced in the actor file as props. Maybe this will help -> [TUTO] Pyrogenis Propping System - Part 1 - Adding Prop Points in Blender - YouTube
  4. It's not a bug then it's not translated because the mod doesn't provide translations.
  5. Are you playing Delenda Est? Search · Signal fires (github.com) No result in public mod Search · Signal fires (github.com)
  6. From this thread https://discussions.apple.com/thread/253452348?answerId=256483794022#256483794022 Maybe removing readding the wifi could help. Could you try ethernet ?
  7. I managed to do it so it depends. Are you using the default version or the M1 version of the game ?
  8. That means you're losing connection. Could be your mac overheating
  9. This is not a proper comment. https://www.tutorialspoint.com/xml/xml_comments.htm
  10. I mean that your mod relies on translations that are inside the public mod. So if you change the four occurences of the string in that file (see the url for the path of that file) the game engine will no longer be able to match the strings and the translations. So it will default to english and whatever you put there.
  11. Unfortunately it is "hardcoded" here https://github.com/0ad/0ad/blob/aaf6271b47686a17b9b995b7cf83064e1234a02b/binaries/data/mods/public/gui/session/selection_panels.js#L1142 You can mod that file, but keep in mind it will break all the translations of your mod. As it is required to be translated. It could be expanded in the future. cc @Freagarach
  12. You can create another actor that uses the sword animation and props (props are the tools and weapons carried by the unit) See XML.Actor – Wildfire Games
  13. It's up to you guys I'm planning to release a RC soonish, I am waiting for one or two bugs to be fixed first. I'll advertise the RCs on the forums
  14. @Dunedan @user1 are the ones you should ask about this.
  15. While it is true that there are not many units looking like knights in the main game, there is actually a mod covering 500 A.D. - 1000 A.D. that might be of some interest to you. The mod is called Millenniumad Millennium A.D. mod - Mod DB The latest development version can be found at https://github.com/0ADMods/millenniumad
  16. Hey, See my answer in the other thread for the crash. Easy, you copy the XML file containing the stats in your mod, usually in simulation/templates/units and you change/overwrite the cost component e.g for all cavalry_swordmen template_unit_cavalry_melee_swordsman.xml in ps/trunk/binaries/data/mods/public/simulation/templates – Wildfire Games Change this part 15 <Cost> 16 <Resources> 17 <wood>40</wood> 18 <metal>10</metal> 19 </Resources> 20 </Cost> You can add stone and food too. template_unit_cavalry.xml in ps/trunk/binaries/data/mods/public/simulation/templates – Wildfire Games 21 <Cost> 22 <BuildTime>15</BuildTime> 23 <Resources> 24 <food>100</food> 25 </Resources> 26 </Cost> Change the BuildTime part This a bit trickier, but you can use the upgrade feature to change an entity to a different unit. See defense_tower.xml in ps/trunk/binaries/data/mods/public/simulation/templates/structures/han – Wildfire Games 14 <Upgrade> 15 <GreatArcheryTower> 16 <Entity>structures/{civ}/defense_tower_great</Entity> 17 <Tooltip>This tower has greater range, greater attack, greater health, and is twice as difficult to capture.</Tooltip> 18 <RequiredTechnology>phase_city</RequiredTechnology> 19 <Cost> 20 <stone>200</stone> 21 </Cost> 22 <Time>40</Time> 23 <Variant>upgrading</Variant> 24 </GreatArcheryTower> 25 </Upgrade> You can have multiple upgrades and the name is arbitrary. The upgrades will be exclusive. Pyrogenesis (The engine) has an experience system that works through promotion, from base to advanced to elite, and you could wait till the unit has reached elite experience to enable the upgrade _b units are base they promote to _a units are advanced they promote to _e units are elite
  17. Hey @LordStark Welcome to the forums. It seems you are hitting a little bug with AMD drivers and Vulkan detection. Fortunately there is a cure. It is likely because your laptop isn't using the correct GPU. See SwitchingToYourPCsDedicatedGPU – Wildfire Games. It is fixed in the development version. See also this thread: Callstack. > atioglxx.dll!5ef0788a() Unknown atioglxx.dll![Frames below may be incorrect and/or missing, no symbols loaded for atioglxx.dll] Unknown atioglxx.dll!5e4ba822() Unknown atioglxx.dll!5e854f25() Unknown opengl32.dll!704bac54() Unknown pyrogenesis.exe!CRenderer::SetViewport(const SViewPort & vp) Line 1509 C++ pyrogenesis.exe!CVideoMode::UpdateRenderer(int w, int h) Line 455 C++ pyrogenesis.exe!CVideoMode::SetFullscreen(bool fullscreen) Line 417 C++ pyrogenesis.exe!psDisplayError(const wchar_t * __formal, unsigned int __formal) Line 366 C++
  18. I wonder if they could apply status effects to themselves, granting them an aura, or give a status effect to surrounding entities with a timer @wraitii @Freagarach not sure how hard that is, probably needs a new component to handle the cooldown.
×
×
  • Create New...