Lumaktaw patungo sa pangunahing content

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.

NameDescription
playeridThe 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;
}