• 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.
Jul 9, 2003
1.421
0
Visit site
Code:
mean_time_to_happen = {
		months = 600

		modifier = {
			condition = {
			type = owner
			condition = { type = has_advance value = { aristotelian_logics = yes } }
			}
			factor = 0.9
		}

It says "aristotelian_logics = yes" is an unknown lhs. Frankly, I cannot see where's the syntax error.
 
That's a province event, right ?

EDIT:
You use a wrong condition after a CSC
type = owner switch the next condition has being a character condition.
Character have "has_advance" as a condition, but without the yes/no attribute, IIRC:
Code:
type = has_advance value = [advance type]

Cat
 
Last edited:
Room 101 said:
Code:
mean_time_to_happen = {
		months = 600

		modifier = {
			condition = {
			type = owner
			condition = { type = has_advance value = { aristotelian_logics = yes } }
			}
			factor = 0.9
		}

It says "aristotelian_logics = yes" is an unknown lhs. Frankly, I cannot see where's the syntax error.

Try this:
Code:
	modifier = {
		condition = {
			type = has_advance 
			value = { aristotelian_logics = yes }
		}
		factor = 0.9
	}
You cannot, AFAIK, have a 'type = owner' on a province tech event... (the owner points to the province owner, and he has no techs ;))
 
Blimey ! Was highjack to other stuff during my edit and beaten by Havard... :D

Cat