The files are here: http://www.disko.co.uk/files/bi_extra_hordes_and_factions_v1_3.zip
Credits to professorspatula
If you mean what I added:
Code:
;------------------------------------------ ERYearJump
;------------------------------------------
AdviceThread ERYearJump_seleucid_Thread
GameArea Campaign
Item ERYearJump_seleucid_Text_01
Uninhibitable
Verbosity 0
Threshold 1
Attitude Normal
Presentation Default
Title ERYearJump_Text_01_Title
Script scripts\show_me\ERYearJump_seleucid.txt
Text ERYearJump_Text_01_Text1
;------------------------------------------
And the script itself
Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; WELCOME TO YEAR JUMP ;;;
;;; Follow the instructions below ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
script
console_command control slavs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; BEFORE YOU LAUNCH THE GAME ;;;
;;; Input the _turn_ number you want to jump to ;;;
;;; (2 turns in a year) in place of the '5' below ;;;
;;; ;;;
;;; - number cannot exceed 93 (Slavs emerge) ;;;
;;; - if your own faction or Sassanids are destroyed ;;;
;;; then it will not work, reload campaign ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; DO NOT CHANGE ANYTHING ABOVE HERE ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; INSERT DESIRED TURN NUMBER IN LINE BELOW
while I_TurnNumber < 50
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; DO NOT CHANGE ANYTHING BELOW HERE ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
end_while
console_command control seleucid
wait 3
console_command control seleucid
monitor_event FactionTurnEnd FactionIsLocal
and Treasury < -50000
console_command add_money 10000
terminate_monitor
end_monitor
monitor_event FactionTurnEnd FactionIsLocal
and Treasury < -40000
console_command add_money 10000
terminate_monitor
end_monitor
monitor_event FactionTurnEnd FactionIsLocal
and Treasury < -30000
console_command add_money 10000
terminate_monitor
end_monitor
monitor_event FactionTurnEnd FactionIsLocal
and Treasury < -20000
console_command add_money 10000
terminate_monitor
end_monitor
monitor_event FactionTurnEnd FactionIsLocal
and Treasury < -10000
console_command add_money 10000
terminate_monitor
end_monitor
monitor_event FactionTurnEnd FactionIsLocal
and Treasury < 0
console_command add_money 10000
terminate_monitor
end_monitor
monitor_event FactionTurnStart FactionIsLocal
and Treasury > 0
set_counter loop 1
terminate_monitor
end_monitor
while I_CompareCounter loop < 1
end_while
end_script
I just changed the BI faction name to the xgm one, in this case I modified "ERYearJump_huns.txt". Don't know what the slav line does, so I left it.