DCS hook onPlayerDisconnect
From DCS World Wiki - Hoggitworld.com
Envrioment: | Server | ||
Function: | onPlayerDisconnect | Added with: 2.5.0 | |
Member Of: | hook | ||
Syntax: | nothing hook.onPlayerDisconnect(number id ) | ||
Description: | Occurs when a player disconnects from a server.
| ||
Return Value: | nothing | ||
Return Actions: | |||
Examples: | Removes whatever is in the client table at the index id.
clients = {} function myCall.onPlayerDisconnect(id) clients[id] = nil end | ||
Related Functions: | List of Callbacks: onMissionLoadBegin, onMissionLoadProgress, onMissionLoadEnd, onSimulationStart, onSimulationStop, onSimulationFrame, onSimulationPause, onSimulationResume, onGameEvent, onNetConnect, onNetMissionChanged, onNetConnect, onNetDisconnect, onPlayerConnect, onPlayerDisconnect, onPlayerStart, onPlayerStop, onPlayerChangeSlot, onPlayerTryConnect, onPlayerTrySendChat, onPlayerTryChangeSlot | ||
Notes: |