Lua function to set championship points for a specific player.
◆ Implementation()
| void RoomService.SetPlayerChampionshipPoints.Implementation |
( |
ulong | steamID, |
|
|
int | points, |
|
|
int | pointsWon, |
|
|
bool | notify ) |
|
inlineprivate |
Usage:
Lua function to set championship points for a specific player.
Definition RoomServiceLuaFunctions.cs:395
Definition MyPluginInfo.cs:2
- Parameters
-
| steamID | The Steam ID of the player. |
| points | The total points to assign to the player. |
| pointsWon | The points won in the current round. |
| notify | True to notify the player; false otherwise. |
Source Code
413 {
414 if (!RoomServiceUtils.IsOnlineHost())
415 {
416 return;
417 }
418
419 ZeepkistNetwork.CustomLeaderBoard_SetPlayerChampionshipPoints(steamID, points, pointsWon, notify);
420 }