• 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.
but it is programed to be released first the 1950 scenario and then the 1979 0r both at the same time. And i know that is easy to ask but can you give us a time when it is going to be released. i guess we are all barely waiting. Keep on doing a good job. ;)
 
Well, I'm back from wedding, honeymoon and all, and ready for some action. I someone taking that Greece event you put up, or has someone already converted it? If so, I'd gladly give it a shot and send it to you to scrutinize...
 
Sorry, haven't tested it yet, but is this sort of what you're looking for? (I have no idea about the ranges for event id's you wanna use, any info on those?)

Code:
# Greece joins NATO event
# coded by Hagen Von Tronje

event = {
	id = 6666
	random = no
	country = GRE
	trigger = {
		NOT = {
			war = { country = GRE country = USA }
			alliance = { country = GRE country = SOV }
			alliance = { country = GRE country = USA }
			alliance = { country = GRE country = SAU }
		}
                 exists = USA
                 exists = ENG
                 exists = FRA
	}

	name = "Greece joins NATO"
	desc = "Greece joins NATO"
	style = 0
	picture = ""

	date = { day = 18 month = february year = 1952 }
	offset = 1
	deathdate = { day = 30 month = december year = 1995 }

	action_a = {
		name = "OK"
		ai_chance = 99
		command = { type = alliance which = allies }
		command = { type = relation which = USA value = 50 }
		command = { type = relation which = ENG value = 20 }
		command = { type = relation which = FRA value = 20 }
		command = { type = relation which = DFR value = 20 }
		command = { type = relation which = CAN value = 20 }
		command = { type = relation which = SOV value = -20 }
		command = { type = relation which = ALB value = -20 }
		command = { type = dissent value = -2 }
		command = { type = domestic which = interventionism value = 1 }
		command = { type = domestic which = defense_lobby value = 1 }
	}
	action_b = {
		name = "We'll stay neutral"
		ai_chance = 1
		command = { type = domestic which = political_left value = 1 }
		command = { type = relation which = SOV value = 25 }
		command = { type = relation which = USA value = -15 }
		command = { type = relation which = ENG value = -10 }
		command = { type = relation which = FRA value = -10 }
	}
}
 
Last edited:
Whoopsy-daisy, I double checked the brackets and stuff, didn't notice that there was no alliance anywhere :D As said, I'm not experienced at coding events - so bear with me, fellas ;) Also, about the 'type = alliance' command - what do I write after it? The tag of a country or the name of the alliance? I can't check it right now, as I don't have HoI II installed here right now and not much time left today (gotta go to work tomorrow). Anyone?

About the 'exists = USA' - i don't know if it's necessary, but I felt it was nice to look if the US still exist in order to join the alliance with them and the other NATO members. I'll remove it, though.
 
you should probably check if great britain or france exist as well. If those three aren't there, a greece gouverment would think very very serioulsy about not joining...
 
Yeah, propably. Can you tell me whether I should put the name of the alliance (NATO) or of some country after the command 'alliance'? Didn't find any info on this in the guides...
 
Ok, thanx for the info. I edited the event I posted. I've got my copy of HoI II on this computer now, and will check later if it works.

edit: And sorry for the mistakes, as said, I'm new to modding events (I have practised a bit though and written some other events in the meantime). How does the saying go? Learning by doing.