• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
AGCEEP_Specific_OrderStJohn.eue

Not a big deal but comments for events 24001 and 24003 are wrong.
24001: should be #Triggered by ARG111010#
24003: should be #Triggered by CAS24002#

--------------------------------------------------------

Event 24011 is province specific:
Code:
#Earthquake in Rhodes#
event = {
	id = 24011
	random = no
	country = KNI
	trigger = { owned = { province = 481 data = -1 }}
	name = "EVENTNAME24011"
	desc = "EVENTHIST24011"
	style = 1
	
	date = { day = 15  month = march  year = 1481 }

	action_a ={		#Thy Will Be Done#
		name = "ACTIONNAME24011A"
		command = { type = population  which = 481 value = -1000 }
		command = { type = stability  value = -1 }
	}
}
I suggest to move this event in AGCEEP_Global_ProvinceSpec.eue with following changes:
Code:
#Earthquake in Rhodes#
event = {
	id = 24011
	random = no
	province = 481 #Rhodes
	name = "EVENTNAME24011"
	desc = "EVENTHIST24011"
	style = 1
	
	date = { day = 15  month = march  year = 1481 }

	action_a ={		#Thy Will Be Done#
		name = "ACTIONNAME24011A"
		command = { type = population  which = 481 value = -1000 }
	}
}
No stability hit (as already approved for Ragusan earthquake and Sumbawa)

--------------------------------------------------------

I suggest to add trigger for this event (in gold):
Code:
#Loss of French Grand Priories#
event = {
	id = 24025
	[COLOR=gold]trigger = {
		exists = FRA
		OR = {
			event = 3342 # French Revolution - Radical Republic
			event = 3779 # French Revolution - Republican Monarchy
		}
	}[/COLOR]
	random = no
	country = KNI
	name = "EVENTNAME24025"
	desc = "EVENTHIST24025"
	style = 4
	date = { day = 1 month = january year = 1791 }
	action_a ={		#Thy Will Be Done#
		name = "ACTIONNAME24011A"
		command = { type = provincetax  which = -2 value = -1 }
		command = { type = relation  which = FRA  value = -100 }
	}
}
If France doesn't exist, I don't see the point (and no french revolution also).

--------------------------------------------------------

For "The Knights Leave Malta" events:
1) French Revolution - Republican Monarchy id is 3779 and not 3379 (will post in bug thread because some ENG events are wrong too)
2) Same reason as for event "Loss of French Grand Priories" (id 24025): if France doesn't exist...
3) If KNI has grown "enough" (six provinces including Malta), I don't see why they should fear France and search for a new protector. In this case, maybe Napoleon shouldn't have even claimed Malta and go his way to Egypt (assuming Egypt is not under KNI's control too). I don't see why France should have a free CB then.

Here are corrected and modified events:
Code:
#The Knights Leave Malta#
event = {
	id = 24026
	trigger = {
		owned = { province = 819 data = -1 }
		exists = ENG
		countrysize = 2
		NOT = { countrysize = 6 }
		NOT = { event = 24057 }
		exists = FRA
                OR = {
			event = 3342 # French Revolution - Radical Republic
			event = 3779 # French Revolution - Republican Monarchy
                }
	}
	random = no
	country = KNI
	name = "EVENTNAME24026"
	desc = "EVENTHIST24026"
	style = 4

	date = { day = 15 month = june year = 1802 }

	action_a = { 		#Ask for Armistice#
		name = "ACTIONNAME24026A"
		command = { type = relation  which = FRA  value = -100 }
		command = { type = secedeprovince which = ENG value = 819 }
	}
	action_b = { 		#Withdraw into Fortress#
		name = "ACTIONNAME24026B"
		command = { type = monarch  which = 13017 }
		command = { type = sleepmonarch  which = 7018 }
		command = { type = sleepmonarch  which = 7019 }
		command = { type = revolt which = 819 }
		command = { type = stability value = -3 }
		command = { type = trigger which = 24027 }
	}
}

#The Knights Leave Malta#
event = {
	id = 24057
	trigger = {
		owned = { province = 819 data = -1 }
		exists = ENG
		countrysize = 1
		NOT = { countrysize = 2 }
		NOT = { event = 24026 }
		exists = FRA
                OR = {
			event = 3342 # French Revolution - Radical Republic
			event = 3779 # French Revolution - Republican Monarchy
		}
	}
	random = no
	country = KNI
	name = "EVENTNAME24026"
	desc = "EVENTHIST24026"
	style = 4

	date = { day = 15 month = june year = 1802 }

	action_a = { 		#Ask for Armistice#
		name = "ACTIONNAME24026A"
		command = { type = relation  which = FRA  value = -100 }
		command = { type = trigger which = 24058 }
	}
	action_b = { 		#Withdraw into Fortress#
		name = "ACTIONNAME24026B"
		command = { type = monarch  which = 13017 }
		command = { type = sleepmonarch  which = 7018 }
		command = { type = sleepmonarch  which = 7019 }
		command = { type = revolt which = 819 }
		command = { type = stability value = -3 }
		command = { type = trigger which = 24027 }
	}
}

#The Knights Stand at Malta#
event = {
	id = 24027
	random = no
	country = FRA
	name = "EVENTNAME24027"
	desc = "EVENTHIST24027"
	style = 4

	action_a = {		#Damn Impudence!#
		name = "ACTIONNAME24027A"
		command = { type = casusbelli which = KNI value = 60 } 
	}
}

#The Knights Stand at Malta#
event = {
	id = 24058
	random = no
	country = ENG
	name = "EVENTNAME24027"
	desc = "EVENTHIST24027"
	style = 4

	action_a = {		#Damn Impudence!#
		name = "ACTIONNAME40116A"
		command = { type = inherit which = KNI } 
	}
}

#A New Protector#
event = {
	id = 24028
	trigger = {
		exists = RUS
		owned = { province = 819 data = -1 } 
		NOT = { war = { country = KNI country = RUS } }
		NOT = { countrysize = 6 }
		exists = FRA
		OR = {
			event = 3342 # French Revolution - Radical Republic
			event = 3779 # French Revolution - Republican Monarchy
		}
	}
	random = no
	country = KNI
	name = "EVENTNAME24028"
	desc = "EVENTHIST24028"
	style = 5

	date = { day = 1 month = january year = 1797 }
	offset = 365
	deathdate = { day = 1 month = january year = 1820 }

	action_a = {
		name = "ACTIONNAME24028A"
		command = { type = breakvassal which = SPA }
		command = { type = relation which = RUS value = 100 }
		command = { type = treasury value = 200 }
		command = { type = trigger which = 24029 }
	}
	action_b = {
		name = "ACTIONNAME24028B"
		command = { type = relation which = RUS value = -150 }
		command = { type = treasury value = -200 }
		command = { type = trigger which = 24030 }
	}
}

--------------------------------------------------------

Event 24031 #Order moves to Malta#
1) action B: Capital moves to Malta, Malta should be core aswell. Otherwise KNI as no core at all (if no Fantasy events).
2) action C: Capital stays at Rhodes but Rhodes is the only KNI's core (if no Fantasy events). This is weird, KNI should keep core on Rhodes.
3) Because action A is a no way for a player (or even AI) if KNI expanded in other greek cultured provinces and/or faced Ottomans and won, I would add trigger conditions for this event not to happen at all if KNI expanded in:
other greek cultured provinces (but not Corfu, too far)
or
Blak Sea or Anatolia (ie. instead of OE)
or
Outremer (Outremer is for Fantasy events purpose)

In this case, Malta is only a tiny island in the middle of the Sea and KNI as proved its will to stay in Rhodes, or already moved its capital in Outremer if chosen in Fantasy events.

Event 24031 reworked:
Code:
#Order moves to Malta#
event = {
	id = 24031			
	random = no
	country = KNI
	trigger = {
		owned = { province = 819 data = -1 }
		owned = { province = 481 data = -1 }
		exists = TUR
		NOT = {
			OR = {
				#any other greek province (but not Corfu)
				owned = { province = 357 data = -1 } #Thrace
				owned = { province = 358 data = -1 } #Macedonia
				owned = { province = 359 data = -1 } #Hellas
				owned = { province = 360 data = -1 } #Morea
				owned = { province = 464 data = -1 } #Kaffa
				owned = { province = 465 data = -1 } #Kerch
				owned = { province = 475 data = -1 } #Trabzon
				owned = { province = 479 data = -1 } #Ionia
				owned = { province = 480 data = -1 } #Crete
				owned = { province = 484 data = -1 } #Cyprus
				#any other Black Sea or anatolian coastal province
				owned = { province = 321 data = -1 } #Rumelia
				owned = { province = 320 data = -1 } #Dobrudja
				owned = { province = 319 data = -1 } #Bujak
				owned = { province = 296 data = -1 } #Jedisan
				owned = { province = 463 data = -1 } #Crimea
				owned = { province = 466 data = -1 } #Azow
				owned = { province = 469 data = -1 } #Abkhazia
				owned = { province = 470 data = -1 } #Kolkhis
				owned = { province = 1609 data = -1 } #Kastamonu
				owned = { province = 477 data = -1 } #Anatolia
				owned = { province = 478 data = -1 } #Smyrna
				owned = { province = 1610 data = -1 } #Antalya
				owned = { province = 1611 data = -1 } #Taurus
				owned = { province = 483 data = -1 } #Adana
				#any Outremer province
				owned = { province = 485 data = -1 } #Aleppo
				owned = { province = 491 data = -1 } #Lebanon
				owned = { province = 492 data = -1 } #Samaria
				owned = { province = 493 data = -1 } #Judea
			}
		}
	}
	name = "EVENTNAME24031"
	desc = "EVENTHIST3540"
	style = 2

	date = { day = 1 month = january year = 1419 }
	offset = 2
	deathdate = { day = 1 month = january year = 1820 }

	action_a ={				
		name = "ACTIONNAME24031A"
		command = { type = capital which = 819 }
		command = { type = secedeprovince which = TUR value = 481 }
		command = { type = stability value = 2 }
		command = { type = inf which = 819 value = 3000 }
		command = { type = removecore which = 481 }
		command = { type = addcore which = 819 }
		command = { type = add_countryculture which = maltese }
		command = { type = remove_countryculture which = greek }
	}
	action_b ={			
		name = "ACTIONNAME24031B"
		command = { type = capital which = 819 }
		command = { type = relation which = TUR value = -150 } 		
		command = { type = stability value = -1 }
		command = { type = addcore which = 819 }
		command = { type = removecore which = 481 }
	}
	action_c ={			
		name = "ACTIONNAME24031C"
		command = { type = relation which = TUR value = -400 } 		
	}
}

--------------------------------------------------------

Events 24004 and 24055 #Order contemplates a move to Tripoli#
I understand these events to happpen if Malta is KNI's capital (maltese culture and core removal in the events). Otherwise, Malta wouldn't be core and KNI would'nt have maltese culture.
Since it is impossible to test exact capitals location in triggers and according to the remarks I made for event 24031, I suggest to add following condition (in gold):
Code:
#Order contemplates a move to Tripoli#
event = {
	id = 24004
	random = no
	trigger = {
		owned = { province = 740 data = -1 } 
		owned = { province = 819 data = -1 }
		[COLOR=gold]core = { province = 819 data = -1 }
		continent = europe #always true at this point if no Fantasy Events[/COLOR]
		exists = SPA 
		NOT = { exists = CAS }
	}
	country = KNI
	name = "EVENTNAME24004"
	desc = "EVENTHIST24004"
	style = 2

	date = { day = 1 month = january year = 1530 }
	offset = 30
	deathdate = { day = 1 month = january year = 1610 }

	action_a ={
		name = "ACTIONNAME24004A"
		command = { type = provincetax which = 740 value = -1 }
		command = { type = relation which = SPA value = 50 }
		command = { type = treasury value = 50 }
		command = { type = stability value = 1 }
		command = { type = sleepevent which = 24055 }
	}

	action_b ={
		name = "ACTIONNAME24004B"
		command = { type = remove_countryculture which = maltese }
		command = { type = capital which = 740 }
		command = { type = addcore which = 740 }
		command = { type = removecore which = 819 }
		command = { type = secedeprovince which = SPA value = 819 }
		command = { type = relation which = SPA value = -50 }
		command = { type = relation which = TUR value = -50 }
		command = { type = stability value = -1 }
		command = { type = provincetax which = 740 value = 1 }
		command = { type = sleepevent which = 24055 }
		command = { type = sleepevent which = 24056 }
	}
}

#Order contemplates a move to Tripoli#
event = {
	id = 24055
	random = no
	trigger = {
		owned = { province = 740 data = -1 } 
		owned = { province = 819 data = -1 }
		[COLOR=gold]core = { province = 819 data = -1 }
		continent = europe #always true at this point if no Fantasy Events[/COLOR]
		exists = CAS 
		NOT = { exists = SPA }
	}
	country = KNI
	name = "EVENTNAME24004"
	desc = "EVENTHIST24004"
	style = 2

	date = { day = 1 month = january year = 1530 }
	offset = 30
	deathdate = { day = 1 month = january year = 1610 }

	action_a ={
		name = "ACTIONNAME24004A"
		command = { type = provincetax which = 740 value = -1 }
		command = { type = relation which = CAS value = 50 }
		command = { type = treasury value = 50 }
		command = { type = stability value = 1 }
		command = { type = sleepevent which = 24004 }
	}

	action_b ={
		name = "ACTIONNAME24004B"
		command = { type = remove_countryculture which = maltese }
		command = { type = capital which = 740 }
		command = { type = addcore which = 740 }
		command = { type = removecore which = 819 }
		command = { type = secedeprovince which = CAS value = 819 }
		command = { type = relation which = CAS value = -50 }
		command = { type = relation which = TUR value = -50 }
		command = { type = stability value = -1 }
		command = { type = provincetax which = 740 value = 1 }
		command = { type = sleepevent which = 24004 }
		command = { type = sleepevent which = 24056 }
	}
}
EDIT2: if Fantasy events are activated, capital could be in Beirut with core remaining in Malta. Since Beirut is in Asia, continent trigger can be used.
With both core and continent conditions, we are sure (with all existing events) that Malta is capital.

--------------------------------------------------------

Bug in event 24052 trigger:
Code:
	trigger = {
		exists = TRI
		OR = {
			exists = SPA
			exists = CAS }
		OR = {
			event = 7156
			event = 7157 }
		NOT = { vassal = { country = SPA country = TRI } }
		NOT = { vassal = { country = CAS country = TRI } }
		NOT = { alliance = { country = SPA country = TRI } }
		NOT = { alliance = { country = CAS country = TRI } }
		NOT = { vassal = { country = KNI country = TRI } }
		NOT = { vassal = { country = KNI country = TRI } }
		NOT = { alliance = { country = KNI country = TRI } }
		NOT = { alliance = { country = KNI country = TRI } }
	}
should be (one vassal reversed and duplicate alliance):
Code:
	trigger = {
		exists = TRI
		OR = {
			exists = SPA
			exists = CAS }
		OR = {
			event = 7156
			event = 7157 }
		NOT = { vassal = { country = SPA country = TRI } }
		NOT = { vassal = { country = CAS country = TRI } }
		NOT = { alliance = { country = SPA country = TRI } }
		NOT = { alliance = { country = CAS country = TRI } }
		NOT = { vassal = { country = KNI country = TRI } }
		NOT = { vassal = { country = TRI country = KNI } }
		NOT = { alliance = { country = KNI country = TRI } }
	}

--------------------------------------------------------

War commands... to be avoided or is it really usefull? - Part I
In same event 24052 - action A, KNI DoWs TRI. I suggest to replace:
Code:
	action_a = {
		name = "ACTIONNAME24052A"
		command = { type = relation which = TRI value = -200 }
		command = { type = relation which = SPA value = 20 }
		command = { type = war which = TRI }
		command = { type = addcore which = 740 }
		}
with:
Code:
	action_a = {
		name = "ACTIONNAME24052A"
		command = { type = relation which = TRI value = -400 }
		command = { type = relation which = SPA value = 20 }
		command = { type = addcore which = 740 }
		}
EDIT3: since KNI has core on Tripolitania, no need for temporay casusbelli. It is permanent.

--------------------------------------------------------

War commands... to be avoided or is it really usefull? - Part II
I'm in trouble with this event:
Code:
event = {
	id = 24056
	trigger = {
		owned = { province = 740 data = -1 }
		OR = {
			owned = { province = 741 data = TUR }
			owned = { province = 742 data = TUR }
		}
		NOT = { alliance = { country = TUR country = KNI } }
	}
	random = no
	country = KNI
	name = "EVENTNAME24056"
	desc = "EVENTHIST24056"
	style = 1
	date = { day = 1 month = november year = 1550 }
	offset = 360
	deathdate = { day = 1 month = january year = 1620 }
	action_a = {
		name = "ACTIONNAME24056A"
		command = { type = secedeprovince which = TUR value = 740 }
		}
	action_b = {
		name = "ACTIONNAME24056B"
		command = { type = relation which = TUR value = -100 }
		command = { type = war which = TUR }
		}
}
Tripolitania (740) could be the KNI's capital. And what happens if this is the only KNI's province? Nothing or KNI is annexed (without the BBcost?)?
Anyway, 740 is core of OE in event TUR301005 #The Conquests of Suleyman I The Law Giver#. I understand it is inconveniant for OE because 740 blocks the way to Tunisia but if OE wants that province, it's simple... and almost BBfree (not for the DoW). It is not to KNI to declare war just to defend this province (ie. not to secede it) and no way to secede this province if KNI can afford war when OE DoWs them to take it.
Btw, I don't see the point if OE don't own 741 (Cyrenaica) AND 742 (Quattara) because, without them both, Ottomans are blocked anyway.
As it was made for Genoa and Kerch problem, I suggest to change event 24056 with new trigger and no action B and create warning event for KNI:
Code:
event = {
	id = 24056
	trigger = {
		owned = { province = 740 data = -1 }
		NOT = { owned = { province = 739 data = -1 } } #Tunisia
		NOT = { core = { province = 740 data = -1 } }
		core = { province = 740 data = TUR }
		owned = { province = 741 data = TUR }
		owned = { province = 742 data = TUR }
		NOT = { alliance = { country = TUR country = KNI } }
		event = 201009
	}
	random = no
	country = KNI
	name = "EVENTNAME24056"
	desc = "EVENTHIST24056"
	style = 1

	date = { day = 1 month = november year = 1550 }
	offset = 360
	deathdate = { day = 1 month = january year = 1620 }

	action_a = {
		name = "ACTIONNAME24056A"
		command = { type = secedeprovince which = TUR value = 740 }
	}
}

event = {
	id = 201009
	trigger = {
		owned = { province = 740 data = -1 }
	}
	random = no
	country = KNI
	name = "Knights in Tripolitania"
	desc = "Tripolitania is ours! Nevertheless, we need to increase our presence in North Africa, or face the reality that Tripolitania alone could be impossible to defend against a major muslim threat..."
	style = 1

	date = { day = 1 month = november year = 1419 }
	offset = 30
	deathdate = { day = 1 month = january year = 1620 }

	action_a = {
		name = "OK"
		command = { type = vp value = 5 }
	}
}
EDIT3: Tripolitania can be seceded by CAS (event 7158) or SPA (event 7159) => Name and desc of event 201009 reworked in order to be more accurate with this and a real conquest.

--------------------------------------------------------

Btw:
1) Capture of the Morgarbina (event 24015) war sequence has been tweaked and approved in Egypt Thread.
2) Holy League (event 3542), reworked in Italy Thread, will be submitted very soon...

EDIT: deathdate changed in event 201009
EDIT2: events 24004 and 24055 reworked (continent condition added to trigger)
EDIT3: events 201009 and 24052 reworked
EDIT4: event 201009 desc reworked
 
Last edited:
AGCEEP_Fantasy_OrderStJohn.eue

In event 201001 #Reconquest of County of Tripoli (Lebanon)#, Capital could be in Malta or Tripolitania, not only Rhodes.

Suggested changes (in gold):
Code:
#Reconquest of County of Tripoli (Lebanon)#
event = {

	id = 201001
	trigger = {
		event = 201000
		owned = { province = 491 data = -1 }
	}
	random = no
	country = KNI
	name = "Reconquest of County of Tripoli (Lebanon)"
	desc = "The Knights have reconquered the County of Tripoli (Lebanon), shall we relocate to Lebanon? There is certain to be unrest as we are foreign invaders with a far different culture and religion than many of the inhabitants."
	style = 1
	
	date = { day = 1 month = january year = 1420 }
	deathdate = { day = 1 month = january year = 1571 }	

	action_a ={		[COLOR=gold]#Keep our capital#[/COLOR]
		name = "[COLOR=gold]Keep our capital[/COLOR]"
		command = { type = vp  value = 10 }
		command = { type =  stability  value = 3 }
		command = { type =  domestic  which = CENTRALIZATION value = 1 }
		command = { type = population  which = 491  value = -2000 }
		command = { type = losebuilding  which = 491  value = bailiff }
		command = { type = province_revoltrisk  which = 491 value = 6 }
	}

	action_b ={		#Move to Beirut#
		name = "Move to Beirut"
		command = { type = vp  value = 10 }
		command = { type = capital  which = 491 }
		command = { type = addcore  which = 491 }
		command = { type = fortress  which = 491 value = 1 }
		command = { type = stability  value = -2 }
		command = { type =  domestic  which = CENTRALIZATION value = -1 }
		command = { type = population  which = 491  value = -2000 }
		command = { type = losebuilding  which = 491  value = bailiff }
		command = { type = province_revoltrisk  which = 491 value = 6 }
	}
}

--------------------------------------------------------

Events 201007 and 201008 - added offset and deathdate:
Code:
#End of Internal Strife in Outremer#
event = {
	id = 201007
	trigger = {
		event = 201000
		OR = {
			owned = { province = 485 data = -1 }
			owned = { province = 491 data = -1 }
			owned = { province = 492 data = -1 }
			owned = { province = 493 data = -1 }
		}
	}
	random = no
	country = KNI
	name = "End of Internal Strife in Outremer"
	desc = ""
	style = 1
	
	date = { day = 1 month = january year = 1600 }
	offset = 360
	deathdate = { day = 1 month = january year = 1610 }

	action_a ={		#Praise the Lord!#
		name = "Praise the Lord!"
		command = { type = province_revoltrisk  which = 485 value = -6 }
		command = { type = province_revoltrisk  which = 491 value = -6 }
		command = { type = province_revoltrisk  which = 492 value = -6 }
		command = { type = province_revoltrisk  which = 493 value = -6 }
	}
}

#End of Internal Strife in Outremer#
event = {
	id = 201008
	trigger = {
		event = 201000
		OR = {
			owned = { province = 485 data = -1 }
			owned = { province = 491 data = -1 }
			owned = { province = 492 data = -1 }
			owned = { province = 493 data = -1 }
		}
	}
	random = no
	country = JER
	name = "End of Internal Strife in Outremer"
	desc = ""
	style = 1
	
	date = { day = 1 month = january year = 1600 }
	offset = 360
	deathdate = { day = 1 month = january year = 1610 }

	action_a ={		#Praise the Lord!#
		name = "Praise the Lord!"
		command = { type = province_revoltrisk  which = 485 value = -6 }
		command = { type = province_revoltrisk  which = 491 value = -6 }
		command = { type = province_revoltrisk  which = 492 value = -6 }
		command = { type = province_revoltrisk  which = 493 value = -6 }
	}
}

--------------------------------------------------------

Kingdom of Jerusalem could be for sure involved in Holy League ( :eek: another country...). But since KoJ is a very particular country, I propose this new event:
Code:
#The Holy League - by YodaMaster
event = {

	id = 201010
	trigger = {
			exists = TUR
			OR = { 
				event = 3549
				event = 236000
			}
		}
	random = no
	country = JER
	name = "EVENTNAME3542"
	desc = "EVENTHIST3542"
	style = 2

	date = { day = 7 month = may year = 1571 }
	offset = 30
	deathdate = { day = 13 month = april year = 1573 }

	action_a ={					#Support the Holy League#
		name = "ACTIONNAME3542A"
		command = { type = casusbelli which = TUR value = 72 }
		command = { type = relation which = TUR value = -150 }
		command = { type = relation which = PAP value = 150 }
		command = { type = relation which = FRA value = 150 }
		command = { type = relation which = GEN value = 150 }
		command = { type = relation which = ITA value = 150 }
		command = { type = relation which = NAP value = 150 }
		command = { type = relation which = SAV value = 150 }
		command = { type = relation which = SIC value = 150 }
		command = { type = relation which = SPA value = 150 }
		command = { type = relation which = TOS value = 150 }
		command = { type = relation which = VEN value = 150 }
	}
}
only action A :D
No need to change other Holy League events, this way.

--------------------------------------------------------

Another war command in event 201006. In fact, Cyprus could be vassal. I suggest only to go for relation -400 and add casus belli in action B (no core on Cyprus). In action C, KoJ has a core on Cyprus => no need for casus belli...

Event 201006 reworked:
Code:
#Kingdom of Jerusalem#
event = {
	id = 201006
	trigger = {
		owned = { province = 493 data = -1 }
		event =  201005 
		}
	random = no
	country = KNI
	name = "Kingdom of Jerusalem"
	desc = "Following the reconquest of the Holy City of Jerusalem, the Knights have been put under tremendous pressure from Europe to re-instate the Kingdom of Jerusalem."
	style = 1

	date = { day = 1 month = january year = 1480 }
	deathdate = { day = 1 month = january year = 1599 }

	action_a ={		#Re-instate Kingdom of Jerusalem#
		name = "Reinstate the Kingdom of Jerusalem"
		command = { type = independence  which = JER }
		command = { type = relation  which = CYP  value = 100 }
		command = { type = relation  which = FRA  value = 50 }
		command = { type = relation  which = ENG  value = 50 }
		command = { type = relation  which = SPA  value = 50 }
		command = { type = relation  which = POR  value = 50 }
		command = { type = relation  which = PAP  value = 50 }
		command = { type = relation  which = HAB  value = 50 }
		command = { type = relation  which = CAS  value = 50 }
		command = { type = relation  which = HUN  value = 50 }
		command = { type = relation  which = ARG  value = 50 }
		command = { type = relation  which = VEN  value = 50 }
	}

	action_b ={		#Keep Jerusalem for the Order#
		name = "Keep Jerusalem for the Order"
		command = { type = relation  which = CYP  value = -400 }
		command = { type = casusbelli which = CYP value = 120 }
		command = { type = relation  which = FRA  value = -20 }
		command = { type = relation  which = ENG  value = -20 }
		command = { type = relation  which = SPA  value = -20 }
		command = { type = relation  which = POR  value = -20 }
		command = { type = relation  which = PAP  value = -100 }
		command = { type = relation  which = HAB  value = -20 }
		command = { type = relation  which = CAS  value = -20 }
		command = { type = relation  which = HUN  value = -20 }
		command = { type = relation  which = ARG  value = -20 }
		command = { type = relation  which = VEN  value = -20 }
	}

	action_c ={		#Proclaim Ourselves the Kingdom of Jerusalem#
		name = "Proclaim Ourselves the Kingdom of Jerusalem"
		command = { type = country  which = JER }
		command = { type = add_countryculture which = syrian }
		command = { type = addcore  which = 484 }
		command = { type = addcore  which = 485 }
		command = { type = addcore  which = 491 }
		command = { type = addcore  which = 492 }
		command = { type = addcore  which = 493 }
		command = { type = capital  which = 493 }
		command = { type = stability  value = -2 }
		command = { type =  domestic  which = CENTRALIZATION value = -1 }
		command = { type = relation  which = CYP  value = -400 }
		command = { type = relation  which = FRA  value = -50 }
		command = { type = relation  which = ENG  value = -50 }
		command = { type = relation  which = SPA  value = -50 }
		command = { type = relation  which = POR  value = -50 }
		command = { type = relation  which = PAP  value = -100 }
		command = { type = relation  which = HAB  value = -50 }
		command = { type = relation  which = CAS  value = -50 }
		command = { type = relation  which = HUN  value = -50 }
		command = { type = relation  which = ARG  value = -50 }
		command = { type = relation  which = VEN  value = -50 }
		command = { type = sleepevent which = 3156 }
		command = { type = sleepevent which = 24002 }
		command = { type = sleepevent which = 111010 } 
	}
}
Btw, if a player wants to become KoJ, I recommend to wait for "The Great Carrack of Alexandria" event to happen and meet all required conditions just after... :cool: :D

EDIT: events 201007 and 201008 reworked
EDIT2: event 201001 reworked (no removecore commands + action A name)
 
Last edited:
Nice work. How about adding loss of a bailiff and manufactury to the earthquake event? I can see the stability hit doesn't make sense for the Ottos, but the earthquake would surely disrupt local economy.
 
Sute]{h said:
Nice work. How about adding loss of a bailiff and manufactury to the earthquake event? I can see the stability hit doesn't make sense for the Ottos, but the earthquake would surely disrupt local economy.
Thanks.
For loss of baillif and manufactory, the only scripted effect in original event is population loss. I didn't change this feature. Maybe the earthquake wasn't "so" disruptive because -1 stability by 1480 for a one province country is really not a big deal and in-game population of Rhodes is about 24 000 at this time.

Btw, the loss you propose is never implemented in other earthquake events (Lisboa, Ragusa and Sumbawa for the ones I know).
 
Last edited:
All sensible ideas. I think the war commands should be replaced.
In 201001 Reconquest of Beirut, I think the event becomes a bit unbalanced by losing all those cores. Besides, would their international claim on Rhodes, or malta (given to them?) be weaker by their rather unexpected success in a crusade?
 
Norrefeldt said:
All sensible ideas. I think the war commands should be replaced.
In 201001 Reconquest of Beirut, I think the event becomes a bit unbalanced by losing all those cores. Besides, would their international claim on Rhodes, or malta (given to them?) be weaker by their rather unexpected success in a crusade?
Thanks.
For 201001, in any other historic (I mean AGCEEP) capital's move (Rhodes -> Malta, Malta -> Tripolitania), core on former capital and even province are lost...
At this point, KNI should only have one of the three cores, depending where capital is located, not the three. The three removes ensure capital is not in these provinces just because we can't test exact location of a capital. :(

On which continent (in-game) Beirut and Aleppo are? If it is different from Malta, Rhodes and Tripolitania, I could add continent trigger for related capital's move and keep the cores in 201001 (ie. not add the removecore commands in 201001).

Where can I find exact continent's name for the five involved provinces? I never used continent in triggers.

EDIT: And the answer to my first question is "Asia". Obvious, but I wasn't sure and had confirmation in Havard's Bible (few things to be added ;) but so good). I can use continent in triggers without problem. :)
EDIT2: Done
 
Last edited:
YodaMaster said:
EDIT: And the answer to my first question is "Asia". Obvious, but I wasn't sure and had confirmation in Havard's Bible (few things to be added ;) but so good). I can use continent in triggers without problem. :)
EDIT2: Done

Just as a caution, you might want to check the province.csv. I really feel like we might have moved North Africa to Europe...or at least there were plans to at one point.
 
Garbon said:
Just as a caution, you might want to check the province.csv. I really feel like we might have moved North Africa to Europe...or at least there were plans to at one point.
Right :eek:o

province.csv checked:
Rhodes, Malta (and Tripolitania) are in Europe
Lebanon and Aleppo are in Asia
"continent = europe" I added in triggers should work as intended. :)
 
Last edited:
Garbon said:
Yea I guess ultimately my point just serves to highlight that at this juncture is better to check our files just in case :)
That's why I added ":eek:o" in my post. ;)

Btw about strengthen/consolidate question, any comment?
 
YodaMaster said:
That's why I added ":eek:o" in my post. ;)

Btw about strengthen/consolidate question, any comment?

Depends on what one is trying to say. Strengthen implies fortifying all of the locations that are currently held. Consolidate suggests that one should pool all one's resources in one location.
 
Garbon said:
Depends on what one is trying to say. Strengthen implies fortifying all of the locations that are currently held. Consolidate suggests that one should pool all one's resources in one location.
The new event 201009 involved is a warning for a human player for event 24056 not to happen:
Here is the 24056 trigger again:
Code:
	trigger = {
		owned = { province = 740 data = -1 }
		NOT = { owned = { province = 739 data = -1 } } #Tunisia
		NOT = { core = { province = 740 data = -1 } }
		core = { province = 740 data = TUR }
		owned = { province = 741 data = TUR }
		owned = { province = 742 data = TUR }
		NOT = { alliance = { country = TUR country = KNI } }
		event = 201009
	}
741 is Cyrenaica and 742 is Quattara.

If conditions are met, Tripolitania will be seceded to OE.
In other words, in order to avoid 24056:
KNI must conquer Tunisia
or
Cyrenaica and Quattara have to be "not" turkish => Mamluks are here (ahistoric => OE failed) or KNI (or any other country) grabbed one of the provinces and OE can't go further by land westwards in North Africa.

The 201009 desc I propose is :
"Tripolitania is ours! Nevertheless, if we don't consolidate our positions in North Africa, Tripolitania alone could be impossible to defend against a major muslim threat..."
Does it make sense?

EDIT: of course, if KNI and TUR are allied, there is no major muslim threat.
 
Last edited:
No, it doesn't then. The Knights need to strengthen their position in North Africa if they don't want to lose Tripolitania.

Still I don't like that sentence, so perhaps:
We need to increase our presence in North Africa, or face the reality that Tripolitania alone could be impossible to defend against a major muslim threat..."
 
Garbon said:
We need to increase our presence in North Africa, or face the reality that Tripolitania alone could be impossible to defend against a major muslim threat..."
Fine. English is not my mother language...

Full desc will be then:
"Tripolitania is ours! Nevertheless, we need to increase our presence in North Africa, or face the reality that Tripolitania alone could be impossible to defend against a major muslim threat..."

Agreed?
 
About KoJ and JER tag

Here is the event:
Code:
#Kingdom of Jerusalem#
event = {
	id = 201006
	trigger = {
		owned = { province = 493 data = -1 }
		event = 201005
	}
	random = no
	country = KNI
	name = "EVENTNAME201006" #Kingdom of Jerusalem
	desc = "EVENTHIST201006"
	#-#Following the reconquest of the Holy City of Jerusalem, the Knights have been put under tremendous pressure from Europe to re-instate the Kingdom of Jerusalem.

	date = { day = 1 month = january year = 1480 }
	offset = 1
	deathdate = { day = 1 month = january year = 1599 }

	action_a = {
		name = "ACTIONNAME201006A" #Reinstate the Kingdom of Jerusalem
		command = { type = independence which = JER }
		command = { type = relation which = CYP value = 100 }
		command = { type = relation which = FRA value = 50 }
		command = { type = relation which = ENG value = 50 }
		command = { type = relation which = SPA value = 50 }
		command = { type = relation which = POR value = 50 }
		command = { type = relation which = PAP value = 50 }
		command = { type = relation which = HAB value = 50 }
		command = { type = relation which = CAS value = 50 }
		command = { type = relation which = HUN value = 50 }
		command = { type = relation which = ARG value = 50 }
		command = { type = relation which = VEN value = 50 }
	}
	action_b = {
		name = "ACTIONNAME201006B" #Keep Jerusalem for the Order
		command = { type = relation which = CYP value = -400 }
		command = { type = casusbelli which = CYP value = 120 }
		command = { type = relation which = FRA value = -20 }
		command = { type = relation which = ENG value = -20 }
		command = { type = relation which = SPA value = -20 }
		command = { type = relation which = POR value = -20 }
		command = { type = relation which = PAP value = -100 }
		command = { type = relation which = HAB value = -20 }
		command = { type = relation which = CAS value = -20 }
		command = { type = relation which = HUN value = -20 }
		command = { type = relation which = ARG value = -20 }
		command = { type = relation which = VEN value = -20 }
	}
	action_c = {
		name = "ACTIONNAME201006C" #Proclaim Ourselves the Kingdom of Jerusalem
		command = { type = country which = JER }
		command = { type = add_countryculture which = syrian }
		command = { type = addcore which = 484 } #Cyprus
		command = { type = addcore which = 485 } #Aleppo
		command = { type = addcore which = 491 } #Lebanon
		command = { type = addcore which = 492 } #Samaria
		command = { type = addcore which = 493 } #Judea
		command = { type = capital which = 493 } #Judea
		command = { type = stability value = -2 }
		command = { type = domestic which = CENTRALIZATION value = -1 }
		command = { type = relation which = CYP value = -400 }
		command = { type = relation which = FRA value = -50 }
		command = { type = relation which = ENG value = -50 }
		command = { type = relation which = SPA value = -50 }
		command = { type = relation which = POR value = -50 }
		command = { type = relation which = PAP value = -100 }
		command = { type = relation which = HAB value = -50 }
		command = { type = relation which = CAS value = -50 }
		command = { type = relation which = HUN value = -50 }
		command = { type = relation which = ARG value = -50 }
		command = { type = relation which = VEN value = -50 }
		command = { type = sleepevent which = 3156 } #SPA: The Knights of St: John of Jerusalem
		command = { type = sleepevent which = 24002 } #CAS: The Knights of St: John of Jerusalem
		command = { type = sleepevent which = 111010 } #ARG: The Knights of St: John of Jerusalem
	}
}
This event was really meant for JER to form... Other choices are "bad" for KNI.

I'm not sure to just remove action_a and replace country command with a flagname command in action_c. We have to rewrite this event.

We could have all the effects of action_c excluding sleepevent commands and negative relation hits combined with positive relation hits in action_a in a new action_a "Proclaim Ourselves the Kingdom of Jerusalem".
In this case, what is the point of action_b unless getting a CB against Cyprus?

"Proclaiming" the Kingdom of Jerusalem should then be the goal of this Fantasy sequence with only new action_a and desc should be rewrited too:
Following the reconquest of the Holy City of Jerusalem, the Knights proclaim the Kingdom of Jerusalem with the approval of the Papacy. Will it be the last Crusade?

KNI will have all their regular events after that and could be formed in Malta if necessary.

We have to suppress JER section in revolt.txt, JER_201008 and JER_201010 in AGCEEP_Fantasy_OrderStJohn.eue and all references to these events in other events.

Your suggestions?
 
YodaMaster said:
I'm not sure to just remove action_a and replace country command with a flagname command in action_c. We have to rewrite this event.
Agree.

We could have all the effects of action_c excluding sleepevent commands and negative relation hits combined with positive relation hits in action_a in a new action_a "Proclaim Ourselves the Kingdom of Jerusalem".
Good idea.

"Proclaiming" the Kingdom of Jerusalem should then be the goal of this Fantasy sequence with only new action_a and desc should be rewrited too: ...

We have to suppress JER section in revolt.txt, JER_201008 and JER_201010 in AGCEEP_Fantasy_OrderStJohn.eue and all references to these events in other events.
Fine.
 
Do we want a secession event as well? An event for all Catholic nations except KNI before, say, 1648, triggered by ownership of Judea and the Knights existing, which gives the opportunity to secede the province (and Lebanon and Samaria and Aleppo as well) to the Knights in return for a BB reduction and better relations with the Pope.