- 12
- 2
- Версия MoonLoader
- .026-beta
Что мне надо сделать чтобы обойти епанный античит аризоны написал скрипт на телепорт, самый легкий, хотел бы обойти анти чит аризоны, кто что может предложить?
сам скрипт на телепорт:
local sampev = require 'lib.samp.events'
local inicfg = require 'inicfg'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('rtp', teleportToMarker)
end
function teleportToMarker()
local result, x, y, z = getTargetBlipCoordinates()
if result then
sampAddChatMessage('Teleported naxyi', -1)
setCharCoordinates(PLAYER_PED, x, y, z)
else
sampAddChatMessage('Metka ne naidena poshel nax.', -1)
end
end