Initial commit

This commit is contained in:
Jacob
2021-12-03 01:05:09 +00:00
commit c1add166a1
3511 changed files with 463300 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
-- CONFIG --
-- Ping Limit
pingLimit = 1000
-- CODE --
RegisterServerEvent("checkMyPingBro")
AddEventHandler("checkMyPingBro", function()
ping = GetPlayerPing(source)
if ping >= pingLimit then
DropPlayer(source, "Ping is too high (Limit: " .. pingLimit .. " Your Ping: " .. ping .. ")")
end
end)