- 341
- 116
Нашел хороший скрипт для автоеды но не получается сделать его активным сразу при входе в игру, может кто помочь с этим?
Lua:
local samp = require 'samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("autoeat", function()
activ = not activ
sampAddChatMessage("{828282}Автохавчик "..(activ and "{00FF00}ВКЛ" or "{FF0000}ВЫКЛ"),-1)
end)
wait(-1)
end
function samp.onShowTextDraw(id,data)
if activ and (data.text:find('You are hungry!') or data.text:find('You are very hungry!')) then
sampSendChat('/jmeat')
end
end