- Версия MoonLoader
- .026-beta
Прошу помогите, я кнч понимаю, что тупее этого кода нету, но помогите пж. Что там не так?
Lua:
require "lib.moonloader"
require "lib.samp.events"
local sampev = require "lib.samp.events"
local keys = require "vkeys"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
local x, y, z = getCharCoordinates(playerPed)
local d = getDistanceBetweenCoords3d(px, py, pz, x, y, z)
if d <= step then
else
local dx, dy, dz = px - x, py - y, pz - z
x = x + step / d * dx
y = y + step / d * dy
z = z + step / d * dz
setCharCoordinates(PLAYER_PED, x, y, z)
setCharCoordinates(PLAYER_PED, px, py, pz)
if isCharInArea3d(PLAYER_PED, 2476, -1424, 28, 2476, -1424, 28, true) and not sampIsChatInputActive() then
setVirtualKeyDown(VK_MENU, true)
wait(300)
setVirtualKeyDown(VK_MENU, false)
wait(300)
sampSendDialogResponse(7971, 1, 4, false)
wait(300)
sampSendDialogResponse(7972, 1, 1, false)
sampCloseCurrentDialogWithButton(1)
end
end
function isKeyCheckAvailable()
if not isSampLoaded() then
return true
end
if not isSampfuncsLoaded() then
return not sampIsChatInputActive() and not sampIsDialogActive()
end
return not sampIsChatInputActive() and not sampIsDialogActive() and not isSampfuncsConsoleActive()
end