Recent content by miguelferreira

  1. M

    Rusty and generally unskilled in XML

    I don't know if Where and Set can have childs. Normally their "arguments" are set as attributes of the xml node Could you test it like this? <GameData> <Units> <Update> <Set Combat="5" /> <Where UnitType="UNIT_EXPLORER"/> </Set> </Update>...
  2. M

    Mods in MP not loading

    hmm it appears to be a lua runtime error. Check the logs at "...\Documents\My Games\Sid Meier's Civilization Beyond Earth\Logs\Lua.log" and look for errors
  3. M

    Lua Remote Debugging?

    Hi, I'm new to Civ modding and I wanted to have a good development cycle. One of the things I value the most is the ability to quickly see the state of execution, set breakpoints, watch expressions etc. As it currently stands I have to spam prints everywhere and even those prints need to be...
  4. M

    What are the Lua Bindings available?

    Thank you, seems an awesome resource.
  5. M

    What are the Lua Bindings available?

    Hi, I have been trying to come up with a new action (like Attack, Move, Alert, etc) but since the SDK only provides the Lua API (at least for now), the best I could get was this method in UnitPanel.lua : function OnUnitActionClicked( action ) if bOkayToProcess then if...
  6. M

    Lua and xml changes not taking effect

    Thank you, worked perfectly.
  7. M

    Lua and xml changes not taking effect

    Hi, I am new to modding, and I was following Kael's guide to CiV V but I am having some problems getting my changes to appear in-game. I have tried the SimpleClock example and it works perfectly but when I try to apply a simple change just to get a feel for the whole process, the game ends...
Top Bottom