Page 1 of 1

Creating a simple event

Posted: Mon Aug 20, 2012 1:07 pm
by Jerzul
Hey. I'd like help creating a very simple event and inserting it into an ongoing game.

Basically i just need to give the CSA a one time influx if money and WS. What is the best way to do this? I've read the editing posts but haven't been able to make anything work yet.

Thanks in advance!

Posted: Mon Aug 20, 2012 2:48 pm
by Pocus
if you want to make a single event, the quick (and dirty) way is to add some lines to the sct file corresponding to your campaign, for example Events\1861 April Campaign.sct if you play this campaign.

Go to the end of the file and add your event, like this one


SelectFaction = $CSA
SelectRegion = $Richmond, VA
StartEvent = evt_nam_CSA_MyEvent|1|0|NULL|NULL|$Richmond, VA|NULL

Conditions
MinDate = 1861/01/01

Actions
ChangeMoneyPool= 1000
ChangeWSUPool= 1000

EndEvent

Posted: Tue Aug 21, 2012 1:13 pm
by Jerzul
Pocus wrote:if you want to make a single event, the quick (and dirty) way is to add some lines to the sct file corresponding to your campaign, for example Events\1861 April Campaign.sct if you play this campaign.

Go to the end of the file and add your event, like this one


SelectFaction = $CSA
SelectRegion = $Richmond, VA
StartEvent = evt_nam_CSA_MyEvent|1|0|NULL|NULL|$Richmond, VA|NULL

Conditions
MinDate = 1861/01/01

Actions
ChangeMoneyPool= 1000
ChangeWSUPool= 1000

EndEvent


Perfect! Thanks Pocus!