• We are currently performing site maintenance, parts of civfanatics are currently offline, but will come back online in the coming days. For more updates please see here.

Sukritact's Events and Decisions

I really like the features of this mod, it's a ton of fun to play, but unfortunately I can't get through a complete game with it. Even with no other mods enabled, I had a fatal crash today on turn 111 when the "Incompetent Diplomat" event occurred. I had a similar crash in an earlier game, also at "Incompetent Diplomat" and with no other active mods, but didn't get a screenshot for it.

I'm using a Mac. Is that the problem? Or is it the specific event that's causing the crash?

2bV3NO9.jpg
 
I seem to have a problem with this, I get the events popups, but can't enact any decisions, there's nothing in the diplomacy dropdown menu.
 
I seem to have a problem with this, I get the events popups, but can't enact any decisions, there's nothing in the diplomacy dropdown menu.

You won't find it in the diplomacy dropdown menu. It's under the small scroll just to the left, called Additional Information.
 
I really like the features of this mod, it's a ton of fun to play, but unfortunately I can't get through a complete game with it. Even with no other mods enabled, I had a fatal crash today on turn 111 when the "Incompetent Diplomat" event occurred. I had a similar crash in an earlier game, also at "Incompetent Diplomat" and with no other active mods, but didn't get a screenshot for it.

I'm using a Mac. Is that the problem? Or is it the specific event that's causing the crash?

I've got the same issues, constantly crashing on events. Not every time a event occurs, and not always on the same event, but it keeps happening very regularly. I'm also on a mac, so maybe that's the issue. Also not using any other mods as I first thought that may be the issue.
 
Hey, I'm really enjoying this mod, really adds a lot of diversity to the game and having more things to do with your culture which is very nice.

However I'm posting because I just got a crash with the comet event (I chose the "Stop looking at the sky !" option if that matters). I was playing the Zulus on Fractal and using the EUI DLC and the following mods : Historical Religions Complete (v6), InfoAddict (v22), JFD's Cultural Diversity Core (v2) and Soundtrack (v1), Krajzen's Great Writers and Great Artists Pack (v1), Krakatoa Fix (v100), Mestizo Music (v1), Quick Turns (v10), R.E.D. Modpack (v27), Really Advanced Setup (v13) and Randomize City Names (v2).

I got the event on the turn I researched Education, but didn't get it again after reloading an autosave, I got the "Death of an Artist" event instead. Any idea what might have happened there ?
 
Hi

I've got a little modmod that I'd like to use to grant a magistrate to a certain building. Since I use it both with/without E&D I'd however like to make a check to see if E&D is active so I thought I'd check if the Building_ResourcePerEra table is in the database.

Unfortunately I'm not a great sql-coder and my code below doesn't work - I just get an error message saying that the table doesn't exist. I was hoping someone could help?

The code goes:

Spoiler :
Code:
INSERT INTO Building_ResourcePerEra (
BuildingType, ResourceType, Quantity, InitialQuantity)
SELECT 'BUILDING_XXX', 'RESOURCE_MAGISTRATES', '1', '1'
WHERE EXISTS(SELECT name FROM sqlite_master WHERE type='table' AND name='Building_ResourcePerEra');

Any help would be much appreciated :)

PS: No news on the "Rome has no capital" bug from post 362?

\Skodkim
 
I believe I've found out what is causing the crashes in the Events popup: the use of UIManager: DequeuePopup and UIManager:QueuePopup. When playing on my laptop, I experienced a crash 100% of the time on the first event of the game. However, after replacing the aforementioned lines in the ShowPopup function with simply ContextPtr:SetHide(true) and ContextPtr:SetHide(false), it worked without issue. Perhaps the game doesn't quite like the handling of new UI elements through UIManager...

For those who'd like to try it on their end to see if it fixes the problem:
  • Open RandomEventsPopup.lua in /(mod folder)/Lua/UI/
  • Replace line 264 with "ContextPtr:SetHide(true)" (without quotes)
  • Replace line 293 with "ContextPtr:SetHide(false)" (without quotes)
 
For those who'd like to try it on their end to see if it fixes the problem:
  • Open RandomEventsPopup.lua in /(mod folder)/Lua/UI/
  • Replace line 264 with "ContextPtr:SetHide(true)" (without quotes)
  • Replace line 293 with "ContextPtr:SetHide(false)" (without quotes)

What software/app do you recommend as a Lua editor?
 
Hi,

just want to let you know that I'm also getting the no capital for Rome error mentioned some posts ago by skodkim:
Events and Decisions\Core\Decisions\Civ Decisions\CivDecisions.lua:851: attempt to index a nil value
Playing with only E&D, IGE and my Corsica mod active.
 
I have not tried to update yet however I must say, I really appreciate the fact that you do try and make your mod as painless as possible. It is REALLY appreciated. I know your life is busy and I'm glad you have not straight up abandoned this project. Once again, Thank you very much.
 
Back
Top Bottom