RMS two TC for one player

Hi

New to rms and I’ve tried to google it but failed, hopefully it’s easy for you guys to answer it.

Is it possible to modify Budapest rms so that only one player starts with two TCs and the rest starts with one TC?

I’ve found CREATE_OBJECT TOWN_CENTER but that changes it for all players. Can I somehow add an IF statement there for say player 1?

Thanks in advance!

You can place player lands individually and assign two lands to one player to allow them to have two TCs. This code is just a concept, not a complete map. You can learn more about RMS by joining the Discord channel here: Random Map (AOE2)

<PLAYER_SETUP>
random_placement

<LAND_GENERATION>
create_land { assign_to_player 1 }
create_land { assign_to_player 1 }
create_land { assign_to_player 2 }
create_land { assign_to_player 3 }
create_land { assign_to_player 4 }
create_land { assign_to_player 5 }
create_land { assign_to_player 6 }
create_land { assign_to_player 7 }
create_land { assign_to_player 8 }

<OBJECTS_GENERATION>
create_object TOWN_CENTER
{
	set_place_for_every_player
	max_distance_to_players 0
}
1 Like

Thank you for the help! Will test it further together with the RMS guide in the forum (and join the discord) :slight_smile: