- 96
- 15
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
- Версия MoonLoader
- .027.0-preview
Сделал раздевание по текстдравам, но бот не нажимает на них.
Памагите, вот код ниже.
Памагите, вот код ниже.
код:
local sampev = require("samp.events")
local encoding = require("encoding")
local effil = require("effil")
local ini = require("inicfg")
local json = require("cjson")
require("addon")
local model = 1
function sampev.onSendSpawn()
newTask(function()
wait(2000)
sendInput("/invent")
end)
end
function sampev.onShowTextDraw(id,data)
if math.floor(data.position.x) == 318 and math.floor(data.position.y) == 169 then
newTask(function()
wait(1000)
sendClickTextdraw(id)
end)
end
if math.floor(data.position.x) == 357.77 and math.floor(data.position.y) == 204.13 then
newTask(function()
wait(1000)
sendClickTextdraw(id)
end)
end
end