note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to 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.