- 14
- 1
- Версия SA-MP
-
- Другая
Решил написать бота на раксамп, но знаний особо нету, наткнулся на проблему... Проходить регистрация, а функция на курд не работает, в чем может быть причина?
Lua:
require("addon")
sampev = require 'samp.events'
password = '123123123'
referals = 'Sam_Mason'
referals_active = true
function sampev.onShowDialog(id, style, title, button1, button2, text)
if title:match('Дополнительная информация') then
return false
end
if id == 1 then
if text:match('Добро пожаловать') then
sendDialogResponse(id, 1, -1, password)
return false
end
if text:match('Мужской') then
sendDialogResponse(id, 1, 0, '')
return false
end
if text:match('Светлый') then
sendDialogResponse(id, 1, 0, '')
return false
end
if text:match('Вкладка') then
if referals_active == true then
sendDialogResponse(id, 1, 1, '')
else
sendDialogResponse(id, 1, 0, '')
end
return false
end
if text:match('Введите ник') then
sendDialogResponse(id, 1, -1, referals)
return false
end
end
end
function sampev.onShowTextDraw(id, data)
if data.position.x == 233 then
sendClickTextdraw(id)
end
end
function teleport()
local x,y,z = getBotPosition()
if z < 500 then
coordStart(1770.4293,-1894.9117, 13.5634, 50, 3, true)
end
end