Why don't you use the spawn army command? This would make the game much more interesting. You could even get local commanders volunteering. You could also add more character to the armies that appear, such as experience or depleted units. Instead of this:
Code:
script
console_command create_unit Rome "roman velite" 1
console_command create_unit Rome "roman hastati" 2
console_command create_unit Rome "roman princeps" 2
console_command create_unit Rome "roman triarii" 2
console_command create_unit Rome "roman light cavalry" 1
console_command add_money -3550
end_script
Use this:
Code:
script
spawn_army
faction romans_julii
character Gaius Julius, general, command 0, influence 0, management 0, subterfuge 0, age 20, , x 54, y 124
unit roman generals guard cavalry soldiers 20 exp 9 armour 1 weapon_lvl 0
unit roman velite soldiers 40 exp 0 armour 0 weapon_lvl 1
unit roman hastati soldiers 60 exp 0 armour 1 weapon_lvl 0
unit roman princeps soldiers 60 exp 3 armour 0 weapon_lvl 0
end
console_command add_money -3550
end_script
Bookmarks