- 440
- 108
- Версия MoonLoader
- .026-beta
Lua:
local peds = getAllChars()
local tag = "{00008B}[Ping Informer]: {FFFFFF}"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage(tag.."Скрипт успешно загружен.", -1)
sampRegisterChatCommand("ping", ping_inf)
sampRegisterChatCommand("scan", function() active = not active end)
wait(-1)
end
function ping_inf(ping_check)
if ping_check == 0 or ping_check == nil then
sampAddChatMessage(tag.."Укажите какой пинг должен быть у человека для варнинга", -1)
else
sampAddChatMessage(tag.."Если у человека будет пинг выше "..ping_check.. "ms, то вам выйдет варнинг",-1)
end
if active then
for _, v in pairs(peds) do
local result, id = sampGetPlayerIdByCharHandle(v)
if result and id ~= sampGetPlayerIdByCharHandle(PLAYER_PED) then
end
end
if ping_check == sampGetPlayerPing(id) then
sampAddChatMessage(tag.. "Игрок с "..id.." имеет пинг выше "..ping_check.."ms", -1)
end
end
end