Lua Samp Почему скрипт не запускаеться?

Статус
В этой теме нельзя размещать новые ответы.

Xryzh

Новичок
Автор темы
1
0
Создал скрипт под арз и захожу на аризону он не видит команду скрипта
помогите пж, что не так
autosmoke:
function main()
repeat wait(0) until isSampAvalible()
wait(2000)
sampRegisterChatCommand('autosmoke', smoke)
end
function smoke()
local healh = getCharHealth(PLAYER_PED)
while healh < 20 do
wait(1000)
sampSendChat('/smoke')
end
end
 
Решение
Создал скрипт под арз и захожу на аризону он не видит команду скрипта
помогите пж, что не так
autosmoke:
function main()
repeat wait(0) until isSampAvalible()
wait(2000)
sampRegisterChatCommand('autosmoke', smoke)
end
function smoke()
local healh = getCharHealth(PLAYER_PED)
while healh < 20 do
wait(1000)
sampSendChat('/smoke')
end
end
попробуй:
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("autosmoke", function()
        lua_thread.create(function()
            local health = getCharHealth(PLAYER_PED)
            while health < 20 do
                wait(1000)
                sampSendChat('/smoke')
                health = getCharHealth(PLAYER_PED)
            end
        end)
    end)...

whyega52

Гений, миллионер, плейбой, долбаеб
Модератор
2,798
2,659
Создал скрипт под арз и захожу на аризону он не видит команду скрипта
помогите пж, что не так
autosmoke:
function main()
repeat wait(0) until isSampAvalible()
wait(2000)
sampRegisterChatCommand('autosmoke', smoke)
end
function smoke()
local healh = getCharHealth(PLAYER_PED)
while healh < 20 do
wait(1000)
sampSendChat('/smoke')
end
end
попробуй:
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("autosmoke", function()
        lua_thread.create(function()
            local health = getCharHealth(PLAYER_PED)
            while health < 20 do
                wait(1000)
                sampSendChat('/smoke')
                health = getCharHealth(PLAYER_PED)
            end
        end)
    end)
    wait(-1)
end
 
  • Нравится
Реакции: Xryzh и Lance_Sterling
Статус
В этой теме нельзя размещать новые ответы.