Chained events in making a scenario?

Bad Player

Deity
Joined
Oct 31, 2005
Messages
3,534
Location
(Bris)Vegas!
Hi I am just in the stages of brainstorming to see if I want to enter the scenario competition Kael announced. So I want to use chained events (I want non-random events to play a major role in how the scenario unfolds) but I don't know how to make events let alone chained events! Is there a user guide to events + chained events? I have a little python knowledge from months ago playing around with it.
 
This is how I call a specific event from python. For a scenario I'd think about using python to call the events.

Code:
			iEvent = CvUtil.findInfoTypeNum(gc.getEventTriggerInfo, gc.getNumEventTriggerInfos(),'EVENTTRIGGER_MAGNADINE_HIRE_UNITS')
			triggerData = pPlayer.initTriggeredData(iEvent, true, -1, pCity.getX(), pCity.getY(), iPlayer, pCity.getID(), -1, -1, -1, -1)
 
Top Bottom