OnPlayerBodyChange
onPlayerBodyChange
Triggered after the legacy authoritative body/face profile has changed.
Availability
This event is available in server-side scripts.
Callback signature
onPlayerBodyChange(playerId, previousBody, newBody, sourceResource)
Parameters
| Name | Type | Description |
|---|---|---|
playerId |
int |
The affected connected player ID. |
previousBody |
string |
The previous stable body key. |
newBody |
string |
The new stable body key. |
sourceResource |
string |
The resource that requested the change. |
Examples
Handle the event:
addEventHandler("onPlayerBodyChange", root, function(playerId, previousBody, newBody, sourceResource)
outputDebugString(getPlayerName(playerId) .. " body: " .. previousBody .. " -> " .. newBody)
end)
Notes
- This compatibility event mirrors
onPlayerFaceChange. - The corresponding reliable visual state is replayed during relevance entry and late join.