Imo after one round back to lobby thats not so good for a match

already there is an option for this.Raven wrote:In Host Game a new Input Field for Max Round´s or a Field for Unlimeted. Then the Map Hosted runs Unlimited on the server and at round´s end dont switch to the lobby. or afer max rounds of the map switch back to the lobby!
Imo after one round back to lobby thats not so good for a match
This doesn't work as of 1.0.0 I've tried fixing it myself but no luck.Lovatto wrote:already there is an option for this.Raven wrote:In Host Game a new Input Field for Max Round´s or a Field for Unlimeted. Then the Map Hosted runs Unlimited on the server and at round´s end dont switch to the lobby. or afer max rounds of the map switch back to the lobby!
Imo after one round back to lobby thats not so good for a match
when you host a new Room, you have an option called "Game Per Rounds", if you check this, at the end of the round, automatically start another,while are players in the room, this would not end.
Code: Select all
if ((string)PhotonNetwork.room.customProperties[PropiertiesKeys.GameModeKey] == "1")
{
RTime.m_RoundStyle = RoundStyle.Rounds;
}
else
{
RTime.m_RoundStyle = RoundStyle.OneMacht;
}
Code: Select all
if ((string)PhotonNetwork.room.customProperties[PropiertiesKeys.RoomRoundKey] == "1")
{
RTime.m_RoundStyle = RoundStyle.Rounds;
}
else
{
RTime.m_RoundStyle = RoundStyle.OneMacht;
}