|
发表于 2020-7-10 17:48:09
|
显示全部楼层
来自 中国–四川–成都
- public IsBotInServer()
- {
- new result = 0;
- for (new i = 1; i <= get_maxplayers(); i++)
- {
- if (is_user_connected(i) && is_user_bot(i))
- {
- result = 1;
- break;
- }
- }
- return result;
- }
- public client_authorized(id)
- {
- if (IsBotInServer())
- {
- // 这里是服务器有 BOT
- }
- }
复制代码 |
|