You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How does the maximum points get calculated? I found this code. What does it mean? I would like to cut it to 10 points and than DeathMatch is this possible to set maxPoints by default to 10?
this.maxPoints = (this.curves.length - 1) * 10;
thanks a lot
The text was updated successfully, but these errors were encountered:
@WuGGu You found exactly the right place in the code. It means that the maximum number of points is calculated as (numberOfPlayers - 1) * 10 (2 players ➝ 10, 3 players ➝ 20, 4 players ➝ 30, etc.). This means the maximum depends on the number of players, which is because with every additional player it is possible to get more points per round. Currently it is not possible to change this behavior without touching the code.
The death match is automatically triggered when at least two players reach the maximum number of points in the same round. It's also not possible to trigger it another way at the moment.
Hi, and thanks for the Game.
How does the maximum points get calculated? I found this code. What does it mean? I would like to cut it to 10 points and than DeathMatch is this possible to set maxPoints by default to 10?
this.maxPoints = (this.curves.length - 1) * 10;
thanks a lot
The text was updated successfully, but these errors were encountered: