For newbe in modding : in attached file is a event structure type, that  you may use to create more easely your own events, using the documentation here :
 http://forum.wastelands-interactive.com ... ial-Part-8
 http://forum.wastelands-interactive.com ... al-Part-10
 
 and using ENGINE EVENT txt (this file is in the event directory of each scenario in game)
 
 The text of event is in txt format, you have to cut-copy the content in a xml editor
 
 Here is a link for Bonfire studio, a free xml editor (very good, better than note pad I think) to modify or create xml files. 
 
 
http://download.cnet.com/Bonfire-Studio ... 70820.html
 After creating a event, you have to include his name in the "event file" txt that is in the scenario directory (toallow ToF to find and execute it)
 
 
 Here is the event (not attached because xml format not supported)
 
 <?xml version="1.0" encoding="utf-8" ?> 
 - <eventSystem xmlns="WastelandsInteractive">
 - <!--  Structure type of event for Time of Fury 
   --> 
 - <event eventID="Number of your event" countryID="Concerned country" visibleByPlayer="1 or 0" oneTimeChecking="1 or 0">
   <title>title of your event(texte)</title> 
   <description>text you want to write to present the event to player in window during game</description> 
   <beginDate day="1 to 31" month="1 to 12" year="concerned year -i.e : 1939" /> 
   <endDate day="1 to 31" month="1 to 12" year="concerned year -i.e : 1939" /> 
 - <condition>
 - <and>
 - <expression>
   <leftOperand method="concerned method - see EVENT ENGINE in events directory of game" param0="concerned country" /> 
   <operator value="equals" /> 
   <rightOperand constValue="1" /> 
   </expression>
   </and>
   </condition>
 - <options>
 - <option optionID="1" chanceAI="100">
   <description>Texte displayed in the button of event windows</description> 
 - <effects>
   <effect method="concerned method - see EVENT ENGINE in events directory of game" param0="concerned country" param1="concerned parameter" /> 
   </effects>
   </option>
   </options>
   </event>
   </eventSystem>
 
 
 Note : in the xml editor you use, you have to "register as" xml (not as other format).