• 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.

LordScod

Ugandan Knuckles
25 Badges
Feb 26, 2003
1.028
0
  • Cities: Skylines
  • Prison Architect
  • Cities: Skylines Industries
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mandate of Heaven
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: El Dorado
  • Crusader Kings II
  • Victoria 2
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III
Code:
event = {
                  id = xxxxxxxxx 
	random = no
	country = KLE
	name = "Ilemi Triangle"
	desc = "Since colonial times, Kenya's administrative boundary has extended beyond its treaty boundary into Sudan creating the "Ilemi Triangle. Mutuple times Kenya would make claims on Sudan controlled areas."
	style = 3
	date = { day = 15 month = february year = 1998}
	offset = 30
	action_a = {	name = "Lets claim our land"
			command = { type = stability value = 1}
                                                command = { type = INF which = -2 value = 5000 }
                                                command = { type = relation which = SUD value = -100 }
}

	action_b ={	name =	"Do not make claims"
			command = { type = stability value = 1}
 			command = { type = relation which = SUD value = 100 }
	}
I think this is better. Tell me if anything else is wrong.
 

LordScod

Ugandan Knuckles
25 Badges
Feb 26, 2003
1.028
0
  • Cities: Skylines
  • Prison Architect
  • Cities: Skylines Industries
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mandate of Heaven
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: El Dorado
  • Crusader Kings II
  • Victoria 2
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III
Code:
event = {
                  id = xxxxxxxxx 
	random = no
	country = KLE
	name = "Ilemi Triangle"
	desc = "Since colonial times, Kenya's administrative boundary has extended beyond its treaty boundary into Sudan creating the "Ilemi Triangle. Mutuple times Kenya would make claims on Sudan controlled areas."
	style = 3
	date = { day = 15 month = february year = 1998}
	offset = 30
	action_a = {	name = "Lets claim our land"
			command = { type = stability value = 1}
                                                command = { type = INF which = -2 value = 5000 }
                                                command = { type = relation which = SUD value = -100 }
                                                command = { type = casusbelli which = SUD value = 24 }
}

	action_b ={	name =	"Do not make claims"
			command = { type = stability value = 1}
 			command = { type = relation which = SUD value = 100 }
	}
Third time's a charm:). I gave them a CB for 2 years.
 
Feb 23, 2002
2.763
0
LordScod: You must delete all the " 's except those in each end in your text. If not it'll cause crashes, or something like that... You can use ' instead. i.e 'Ilemi triangle':)
 

LordScod

Ugandan Knuckles
25 Badges
Feb 26, 2003
1.028
0
  • Cities: Skylines
  • Prison Architect
  • Cities: Skylines Industries
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mandate of Heaven
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: El Dorado
  • Crusader Kings II
  • Victoria 2
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III
Code:
event = {
                  id = xxxxxxxxx 
	random = no
	country = KLE
	name = 'Ilemi Triangle'
	desc = 'Since colonial times, Kenya's administrative boundary has extended beyond its treaty boundary into Sudan creating the 'Ilemi Triangle'. Mutuple times Kenya would make claims on Sudan controlled areas.'
	style = 3
	date = { day = 15 month = february year = 1998}
	offset = 30
	action_a = {	name = 'Lets claim our land'
			command = { type = stability value = 1}
                                                command = { type = INF which = -2 value = 5000 }
                                                command = { type = relation which = SUD value = -100 }
OK think a fixed them all.
 
Feb 23, 2002
2.763
0
No, you only needed to fix those in the text, not the ones in each end of the text:

"Since colonial times, Kenya's administrative boundary has extended beyond its treaty boundary into Sudan creating the 'Ilemi Triangle'. Mutuple times Kenya would make claims on Sudan controlled areas."


Same with the name.:)

EDIT: see next post
Morm beat me to it

Ahhh... Aren't I the nicest one...:D
You probably explained it better thought...:rolleyes::D
 
Last edited:

unmerged(9563)

The Maverick
Jun 2, 2002
3.104
0
Visit site
Nope you got it wrong. :( Event scripting is hard to learn.

When you have something like Name = , then the quotation marks go around whatever you are going to say. Same goes for descriptions. What he was talking about is that in your description you had a separate pair of quotations around Ilemi Triangle, which would cause it to mess up.

(In essence, you only needed to change the quotations around Ilemi Triange that is in the descrption. You put quotation marks at the extreme ends of names and descriptions, you can't put them in the middle.)

Edit : Morm beat me to it.
 

LordScod

Ugandan Knuckles
25 Badges
Feb 26, 2003
1.028
0
  • Cities: Skylines
  • Prison Architect
  • Cities: Skylines Industries
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mandate of Heaven
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: El Dorado
  • Crusader Kings II
  • Victoria 2
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III
Code:
event = {
                  id = xxxxxxxxx 
	random = no
	country = KLE
	name = "Ilemi Triangle"
	desc = "Since colonial times, Kenya's administrative boundary has extended beyond its treaty boundary into Sudan creating the Ilemi Triangle. Mutuple times Kenya would make claims on Sudan controlled areas."
	style = 3
	date = { day = 15 month = february year = 1998}
	offset = 30
	action_a = {	name = "Lets claim our land"
			command = { type = stability value = 1}
                                                command = { type = INF which = -2 value = 5000 }
                                                command = { type = relation which = SUD value = -100 }
                                                command = { type = casusbelli which = SUD value = 24 }
}

	action_b ={	name =	"Do not make claims"
			command = { type = stability value = 1}
 			command = { type = relation which = SUD value = 100 }
	}
How about now?
 
Feb 23, 2002
2.763
0
Yep, It'll work.

You can still use a ' around the Ilemi Triangle in the text thought...

Like this 'Ilemi Triangle'

i'e, Only use one litlle ' instead of two (")
 

unmerged(10802)

Banned Troll
Aug 25, 2002
887
0
www.geocities.com
#Senegal coded by Josquius
event = {
id = xxx
random = no
country = Sha
name = "Senegal beat France in the world cup"
desc = "Though to the rest of the world outside of football this was a very minor thing to the Senegalise defeating their former oppressors and the reigning world cup champions France was a major achievment which had the nation celebrating "
style = 1
date = { day = 31 month = May year = 2002 }
offset = 25
action_a = {
name = "Huzzah!"
command = { type = stability value = 3 }
}
}
 
Feb 23, 2002
2.763
0
Nice one.;)

But sure about +3 stab? Maybe make it 2 or one, and add a tiny bit to infra or trade, as a result of more Senegalian players being sold, which happened IRL:p
 

unmerged(10802)

Banned Troll
Aug 25, 2002
887
0
www.geocities.com
#Mandella by Josquius
event = {
id = xxxx
random = no
country = SUZ
name = "Free Nelson Mandella?"
desc = "South Africa is starting to move away from the old system of apartheid. Nelson Mandela has became a symbol of how wrong this system is- if we continue moving away from apartheid and release him he and the other blacks may take over. However if we move back towards the old ways the world and most of the country will be against us"
style = 1
date = { day = 29 month = May year = 1990 }
action_a = {
name = "Let him go"
command = { type = stability value = 2 }
command = { type = wakemonarch which = mandela }
command = { type = sleepmonarch which = fictional white bloke }
command = { type = relation which = FRA value = 50 }
command = { type = relation which = USA value = 100 }
command = { type = relation which = ENG value = 50 }
command = { type = relation which = ENG value = 50 }
command = { type = relation which = SHL value = 50 }
command = { type = relation which = MAI value = 50 }

action_b = {
name = "Don't let the blacks take control!"
command = { type = province_revoltrisk which = -1 value = 4 }
command = { type = province_revoltrisk which = -1 value = 4 }
command = { type = province_revoltrisk which = -1 value = 4 }
command = { type = province_revoltrisk which = -1 value = 4 }
command = { type = province_revoltrisk which = -1 value = 4 }
command = { type = relation which = FRA value = -100 }
command = { type = relation which = USA value = -150 }
command = { type = relation which = ENG value = -100 }
command = { type = relation which = ENG value = -100 }
command = { type = relation which = SHL value = -100 }
command = { type = relation which = MAI value = -100 }

}
}

Think I've got everything right, getting back on track...
 
Last edited:
Feb 23, 2002
2.763
0
Bah, you can easily change that, MDS do use the Unlimited time patch;):p (I'm not saying we will do it;))

What about that offset? or is 25 days...?:p