Lua function to set the points distribution in the lobby.
◆ Implementation()
| void RoomService.SetPointsDistribution.Implementation |
( |
int[] | values, |
|
|
int | baseline, |
|
|
int | dnf ) |
|
inlineprivate |
Usage:
Lua function to set the points distribution in the lobby.
Definition RoomServiceLuaFunctions.cs:340
Definition MyPluginInfo.cs:2
- Parameters
-
| values | The points distribution values. |
| baseline | The baseline points value. |
| dnf | The points value for "Did Not Finish" players. |
Source Code
357 {
358 if (!RoomServiceUtils.IsOnlineHost())
359 {
360 return;
361 }
362
363 ZeepkistNetwork.CustomLeaderBoard_SetPointsDistribution(values.ToList(), baseline, dnf);
364 }