Lua function to remove a player from the leaderboard.
◆ Implementation()
| void RoomService.RemovePlayerFromLeaderboard.Implementation |
( |
ulong | steamID, |
|
|
bool | notify ) |
|
inlineprivate |
Usage:
Lua function to remove a player from the leaderboard.
Definition RoomServiceLuaFunctions.cs:312
Definition MyPluginInfo.cs:2
- Parameters
-
| steamID | The Steam ID of the player to remove. |
| notify | True to notify the player; false otherwise. |
Source Code
328 {
329 if (!RoomServiceUtils.IsOnlineHost())
330 {
331 return;
332 }
333
334 ZeepkistNetwork.CustomLeaderBoard_RemovePlayerFromLeaderboard(steamID, notify);
335 }