_Zee
Chieftain
- Joined
- Nov 6, 2019
- Messages
- 3
Hello all. I am the creator of all the Zee's "X" Mod's, and I'm currently attempting to get my mods updated (which I haven't been able to do since April).
Right now I'm working on my Properly Timed Era's mod and I'm having trouble with getting a few lines that worked perfectly before to work again. These are the lines specifically:
At first I thought it might be something to do with the new <ActionCriteria> entries I've been seeing in the .modinfo files of a few other updated mods. The code lines above DO NOT appear in the vanilla GlobalParameters table, but they DO show up in the XP1 and XP2 GlobalParameters tables. So I tried breaking the mod up into 3 sql files from 1, with the XP1 parts and XP2 parts separated in their own sql files and updating the .modinfo file accordingly, but that isn't working.
All other parts of my mod appear to be working, but I can't figure out why these lines aren't.
Help is appreciated.
Right now I'm working on my Properly Timed Era's mod and I'm having trouble with getting a few lines that worked perfectly before to work again. These are the lines specifically:
Code:
-- Era Gates -- default 20/-20
UPDATE GlobalParameters SET Value = 120 WHERE Name = 'TECH_COST_PERCENT_CHANGE_AFTER_GAME_ERA';
UPDATE GlobalParameters SET Value = -60 WHERE Name = 'TECH_COST_PERCENT_CHANGE_BEFORE_GAME_ERA';
UPDATE GlobalParameters SET Value = 120 WHERE Name = 'CIVIC_COST_PERCENT_CHANGE_AFTER_GAME_ERA';
UPDATE GlobalParameters SET Value = -60 WHERE Name = 'CIVIC_COST_PERCENT_CHANGE_BEFORE_GAME_ERA';
At first I thought it might be something to do with the new <ActionCriteria> entries I've been seeing in the .modinfo files of a few other updated mods. The code lines above DO NOT appear in the vanilla GlobalParameters table, but they DO show up in the XP1 and XP2 GlobalParameters tables. So I tried breaking the mod up into 3 sql files from 1, with the XP1 parts and XP2 parts separated in their own sql files and updating the .modinfo file accordingly, but that isn't working.
All other parts of my mod appear to be working, but I can't figure out why these lines aren't.
Help is appreciated.