- 39
- 6
- Версия MoonLoader
- .026-beta
Помогите, выдает ошибку в мейне:
attempt to yield across C-call boundary
stack traceback:
[C]: in function 'wait'
Как исправить?
attempt to yield across C-call boundary
stack traceback:
[C]: in function 'wait'
Как исправить?
code:
function main()
while not isSampAvailable() do wait(0) end
local request = requests.get('link')
local nick = sampGetPlayerNickname(select(2, sampGetPlayerIdByCharHandle(PLAYER_PED)))
local function res()
for n in request.text:gmatch('[^\r\n]+') do
if nick:find(n) then return true end
end
return false
end
if not res() then msg('У вас закончилась или отсутствует подписка!')
msg('Купить подписку можно в Telegram: '..color..'@willbefinne{FFFFFF} или Discord: '..color..'fichawbf{FFFFFF}') error('У вас закончилась или отсутствует подписка! Скрипт был выгружен.') end
sampRegisterChatCommand('atc', function() main_window_state.v = not main_window_state.v end)
end
while true do wait(0)
if cfg.main.autoN then
local x, y, z = getCharCoordinates(PLAYER_PED)
local result, _, _, _, _, _, _, _, _, _ = Search3Dtext(x, y, z, 3, 'Для въезда в гараж')
if result then
setGameKeyState(18, 255)
end
end
end