So you mean simply add the last lines to "my" file at the end.
######## VOLCANO DORMANT ###########
def canTriggerVolcanoDormant1(argsList):
if gc.getGame().getSorenRandNum(100, "Volcano event dormant") < 25:
return true
return false
def applyVolcanoDormant1(argsList):
iEvent = argsList[0]
kTriggeredData = argsList[1]
plot = gc.getMap().plot(kTriggeredData.iPlotX, kTriggeredData.iPlotY)
plot.setPlotType(PlotTypes.PLOT_PEAK, True, True)
######## TORNADO ###########
def applyTornado1(argsList):
iEvent = argsList[0]
kTriggeredData = argsList[1]
plot = gc.getMap().plot(kTriggeredData.iPlotX, kTriggeredData.iPlotY)
plot.setFeatureType(gc.getInfoTypeForString('FEATURE_TORNADO'), 0)
----------------------------