Though you could always stick a custom_tooltip in there if you want it condensed.Yes, it's the former.
Though you could always stick a custom_tooltip in there if you want it condensed.Yes, it's the former.
Exactly as I had hoped thenThough you could always stick a custom_tooltip in there if you want it condensed.
NDefines.NDiplomacy.DEMESNE_BASE_MAX_SIZE = 2.0
This is a great! Any chance of this being ported to EUIV when you back working on that game?
I've restored the "implemented in upcoming patch" section on the wiki page, and moved the folder exports to there.Update:
- Added folder structure for defines
This one will work a little different than other folders though because of it being in lua. The game will still keep its define.lua file under common and it will always be read first. But there is now a folder called defines in which users can add any number of lua-files which overwrites only those values specified.
So for instance you can add a file called GarsDefines.lua that only changes the value of DEMESNE_BASE_MAX_SIZE. The syntax for overwriting a define will look like this:
Code:NDefines.NDiplomacy.DEMESNE_BASE_MAX_SIZE = 2.0
So in short, every mod can have their own unique defines file containing only those defines it alters.
What happens if two different mods try to override the same value?Update:
- Added folder structure for defines
This one will work a little different than other folders though because of it being in lua. The game will still keep its define.lua file under common and it will always be read first. But there is now a folder called defines in which users can add any number of lua-files which overwrites only those values specified.
So for instance you can add a file called GarsDefines.lua that only changes the value of DEMESNE_BASE_MAX_SIZE. The syntax for overwriting a define will look like this:
Code:NDefines.NDiplomacy.DEMESNE_BASE_MAX_SIZE = 2.0
So in short, every mod can have their own unique defines file containing only those defines it alters.
What happens if two different mods try to override the same value?
Makes sense.The later one will just overwrite the value again. So whatever file is loaded last will decide the value of the define.
One question, will there be a folder structure for scripted triggers to enable better mod compatability?
With max wards, will that screw with the interface as usually adding extra wards via events makes them hang off of the edge of the character sheet.Update:
- Added folder structure to modifier_definitions
- MAX_WARDS_PER_GUARDIAN
With max wards, will that screw with the interface as usually adding extra wards via events makes them hang off of the edge of the character sheet.
Hell yeah, that's about timeUpdate:
- Starting the game with "debug" commandline argument sholud now give a more detailed error log
very interesting. What kind of additional info can we expect to retrieve?
Hell yeah, that's about time
Will it be as detailed as the beta logging is?
Whatever happened to -debugscripts, BTW?
dont think so, when you add that to the commandline and then look at the error.log in mydocuments after a CTD it tells you nothing particularly helpful.
So this means you could expand a vanilla culture group from a separate file? E.G., adding Norse-Gael to the North Germanic group without actually editing the vanilla culture file.Update:
- Possible to append to cultures from several files
- Possible to append to on_actions from several files