[ARZ] ищу автоеду раксамп

fopzzys

Новичок
Автор темы
29
3
zhopa:
local sampev = require 'samp.events'
local st = false
function sampev.onShowTextDraw(id, data)
    if data.text:find('You are hungry!') or data.text:find('You are very hungry!') then
        lua_thread.create(function()
            sampSendChat('/cheeps')
            wait(1000)
            sampSendChat('/smoke')
            st = true
        end)
    end
end
function sampev.onServerMessage(color, text)
    if st then
        if text:find('достал сигарету с зажигалкой и попыталс¤ закурить %(Ќеудачно%)') then
            lua_thread.create(function()
                repeat sampSendChat('/smoke') wait(1000)
                until st == false
            end)
        end
        if text:find('достал сигарету с зажигалкой и закурил') then
            st = false
        end
    end
end


такая пойдет на раксамп?
 

IlyaFontonov

Активный
172
37
Lua:
local sampev = require 'samp.events'
require('addon')
local st = false

function sampev.onShowTextDraw(id, data)
    if data.text:find('You are hungry!') or data.text:find('You are very hungry!') then
        newTask(function()
            sampSendChat('/cheeps')
            wait(1000)
            sampSendChat('/smoke')
            st = true
        end)
    end
end
function sampev.onServerMessage(color, text)
    if st then
        if text:find('достал сигарету с зажигалкой и попыталс¤ закурить %(Ќеудачно%)') then
            newTask(function()
                repeat sampSendChat('/smoke') wait(1000)
                until st == false
            end)
        end
        if text:find('достал сигарету с зажигалкой и закурил') then
            st = false
        end
    end
end