local sampev = require("samp.events")
require("addon")
function sampev.onServerMessage(color, text)
if text:find('Ускоренная') then
sendInput('/invent')
end
end
function onLoad()
print('-----------------------------------------')
print('(Ускоренная прокачка загружена.)')
print('(Автор: kallik.)')
print('-----------------------------------------')
end
function sampev.onShowTextDraw(id, data)
local x, y = math.floor(data.position.x), math.floor(data.position.y)
if x == 493 and y == 127 then
newTask(function()
wait(4000)
sendClickTextdraw(id)
end)
end
if x == 603 or x == 582 and y == 331 or y == 326 then
newTask(function()
wait(6000)
sendClickTextdraw(id)
print('Закрыл инвентарь')
end)
end
if x == 486 and y == 141 then
sendClickTextdraw(id)
print('Использовал х3 payday')
end
end