warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
IsPlayerUsingOfficialClient
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Check if the player is using the official SA-MP client.
Name | Description |
---|---|
playerid | The ID of the player to check. |
Returns
Returns 1 if the player is using the official client, otherwise 0.
Examples
public OnPlayerConnect(playerid)
{
if (IsPlayerUsingOfficialClient(playerid) == 0)
{
SendClientMessage(playerid, 0xFF0000FF, "[KICK]: You doesn't seem to be using the official sa-mp client!");
Kick(playerid);
}
return 1;
}
Related Functions
- SendClientCheck: Perform a memory check on the client.