跳到主要内容

IsPlayerUsingOmp

注意

这个函数是在omp 1.4.0.2779中添加的,在以前的版本中不起作用!

描述

检测指定玩家是否正在使用 open.mp 启动器。

参数名说明
playerid要检测的玩家 ID

返回值

当玩家使用 open.mp 启动器时返回 1,否则返回 0

示例代码

public OnPlayerConnect(playerid)
{
// 玩家正在使用open.mp启动器
if(IsPlayerUsingOmp(playerid))
{
SendClientMessage(playerid, -1, "您正在使用open.mp启动器。");
}

// 玩家未使用open.mp启动器
else
{
SendClientMessage(playerid, 0xFF0000FF, "[踢出]: 检测到您未使用open.mp启动器");
Kick(playerid);
}

return 1;
}

相关函数