Quick question:

Is it supposed to look exactly like this:

Spoiler Alert, click show to read: 
;first 12 years
monitor_event SettlementTurnStart FactionType macedon
and not FactionIsLocal
and I_TurnNumber < 49
and Treasury < 100000
console_command add_money macedon, 1200
if I_NumberOfSettlements macedon < 25
console_command add_money macedon, 300
end_if
if I_NumberOfSettlements macedon < 16
console_command add_money macedon, 300
end_if
end_monitor




Will the script act differently with spaces in between the lines like this (which is what it looks like as per default):

Spoiler Alert, click show to read: 
;first 12 years
monitor_event SettlementTurnStart FactionType macedon
and not FactionIsLocal
and I_TurnNumber < 49
and Treasury < 100000
console_command add_money macedon, 1200
if I_NumberOfSettlements macedon < 25
console_command add_money macedon, 300
end_if

if I_NumberOfSettlements macedon < 16
console_command add_money macedon, 300
end_if

end_monitor