Chuyển tới nội dung chính

OnScriptUnloadPlayer

cảnh báo

This callback was added in omp v1.3.1.2748 and will not work in earlier versions!

Description

This callback is called for each connected player when a script is unloaded.

NameDescription
playeridThe ID of the player that script is unloaded for.
bool:isEntryScriptDetermining whether it's an entry script (main script) or a side script.

Returns

This callback does not handle returns.

Examples

public OnScriptUnloadPlayer(playerid, bool:isEntryScript)
{
printf("Script unloaded for player ID %d (isEntryScript: %s)", playerid, isEntryScript ? "Yes" : "No");
}

Notes

mẹo

This callback is called when you are unloading a side script (filterscript) at runtime.

The following callbacks might be useful, as they're related to this callback in one way or another.