I removed them.
I was also looking through the script of the Teutonic Campaign, especially the part of the Calmar union and this grew out of it:
Code:
;
; Campaign script
;
script
;;start
restrict_strat_radar false
; ---------------------
; counters
declare_counter tribute_pay
;;Tribute to pay for Northern Kingdoms
monitor_event FactionTurnStart FactionIsLocal
and counter tribute_pay = 0
add_events
event counter tribute_pay_accepted
event counter tribute_pay_declined
date 0
end_add_events
set_event_counter tribute_pay_accepted 0
set_event_counter tribute_pay_declined 0
end_monitor
monitor_event FactionTurnStart FactionIsLocal
and counter tribute_pay =0
add_event
historic_event pay_tribute true factions { england, venice, milan, }
end_add_event
end_monitor
monitor_event EventCounter EventCounterType tribute_pay_accepted
if I_EventCounter tribute_pay_accepted == 1
if I_LocalFaction venice
add_money venice -1500
end_if
if I_LocalFaction venice
add_money england -1500
end_if
if I_LocalFaction venice
add_money milan -1500
end_if
end_if
end_monitor
monitor_event EventCounter EventCounterType tribute_pay_declined
if I_EventCounter tribute_pay_declined == 1
if I_LocalFaction venice
set_counter tribute_pay =1
end_if
if I_LocalFaction england
set_counter tribute_pay =1
end_if
if I_LocalFaction milan
set_counter tribute_pay =1
end_if
end_if
end_monitor
wait_monitors
end_script