Ugrás a fő tartalomhoz

OnScriptLoadPlayer

vigyázat

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 loaded.

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

Returns

This callback does not handle returns.

Examples

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

Notes

tanács

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

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