My maps are unplayable now (get a fatal scar execution) with the release of the british forces. How can i mod my maps so that the british are included in the resource rate changes? Please help and thank you for amazing guides!
Hi
Could you please do another script but adding the English into it please.
many thanx for your patience.
Replace function Player_GetRaceIndex with this:
function Player_GetRaceIndex(player)
local racename = Player_GetRaceName(player)
if racename == "german" then
return 0
elseif racename == "soviet" then
return 1
elseif racename == "west_german" then
return 2
elseif racename == "aef" then
return 3
elseif racename == "british" then
return 4
else
return 0
end
end
And add this to each configuration below "--us forces:"
--british forces:
[4] = {
manpower = 400,
fuel = 15,
munition = 0,
action = 0,
command = 1,
},
Don't forget to set your values for the British Forces!