- 120
- 20
- Версия MoonLoader
- .026-beta
Есть у меня скрипт, который должен отправлять мне от бота сообщение.
Но проблема в том, что меня просто крашит игра из-за этого скрипта.
Все данные ввёл верно, токен бота и свой айди телеги
Кто знает, в чем может быть причина?
Но проблема в том, что меня просто крашит игра из-за этого скрипта.
Все данные ввёл верно, токен бота и свой айди телеги
Lua:
script_name('Telegram Notifications Source')
script_authors('ronnyscripts, ronny_evans')
-- подключаем библиотеки
local effil = require("effil")
local encoding = require("encoding")
encoding.default = 'CP1251'
u8 = encoding.UTF8
chat_id = '504723676' -- чат ID юзера
token = '5348264822:AAGV1WG68gfi16BRR--NntrC9Bq-LSBETwQ' -- токен бота
local updateid -- ID последнего сообщения для того чтобы не было флуда
function threadHandle(runner, url, args, resolve, reject)
local t = runner(url, args)
local r = t:get(0)
while not r do
r = t:get(0)
wait(0)
end
local status = t:status()
if status == 'completed' then
local ok, result = r[1], r[2]
if ok then resolve(result) else reject(result) end
elseif err then
reject(err)
elseif status == 'canceled' then
reject(status)
end
t:cancel(0)
end
function requestRunner()
return effil.thread(function(u, a)
local https = require 'ssl.https'
local ok, result = pcall(https.request, u, a)
if ok then
return {true, result}
else
return {false, result}
end
end)
end
function async_http_request(url, args, resolve, reject)
local runner = requestRunner()
if not reject then reject = function() end end
lua_thread.create(function()
threadHandle(runner, url, args, resolve, reject)
end)
end
function encodeUrl(str)
str = str:gsub(' ', '%+')
str = str:gsub('\n', '%%0A')
return u8:encode(str, 'CP1251')
end
function sendTelegramNotification(msg) -- функция для отправки сообщения юзеру
msg = msg:gsub('{......}', '') --тут типо убираем цвет
msg = encodeUrl(msg) -- ну тут мы закодируем строку
async_http_request('https://api.telegram.org/bot' .. token .. '/sendMessage?chat_id=' .. chat_id .. '&text='..msg,'', function(result) end) -- а тут уже отправка
end
function get_telegram_updates() -- функция получения сообщений от юзера
while not updateid do wait(1) end -- ждем пока не узнаем последний ID
local runner = requestRunner()
local reject = function() end
local args = ''
while true do
url = 'https://api.telegram.org/bot'..token..'/getUpdates?chat_id='..chat_id..'&offset=-1' -- создаем ссылку
threadHandle(runner, url, args, processing_telegram_messages, reject)
wait(0)
end
end
function calc(str) --это тестовая функция, её не требуется переносить в ваш код
return assert(load("return "..str))()
end
function processing_telegram_messages(result) -- функция проверОчки того что отправил чел
if result then
-- тута мы проверяем все ли верно
local proc_table = decodeJson(result)
if proc_table.ok then
if #proc_table.result > 0 then
local res_table = proc_table.result[1]
if res_table then
if res_table.update_id ~= updateid then
updateid = res_table.update_id
local message_from_user = res_table.message.text
if message_from_user then
-- и тут если чел отправил текст мы сверяем
local text = u8:decode(message_from_user) .. ' ' --добавляем в конец пробел дабы не произошли тех. шоколадки с командами(типо чтоб !q не считалось как !qq)
if text:match('^!qq') then
sendTelegramNotification('Ку')
elseif text:match('^!q') then
sendTelegramNotification('Привет!')
elseif text:match('^!stats') then
sendTelegramNotification('Это тестовая версия блин')
elseif text:match('^!calc') then
local arg = text:gsub('!calc ','',1) -- вот так мы получаем аргумент команды
if #arg > 0 then
local result_calc = calc(arg)
if result_calc then
sendTelegramNotification('Вы ввели пример: '..arg..'\nОтвет: '..result_calc)
else
sendTelegramNotification('Неверный пример!')
end
else
sendTelegramNotification('Эм, ты не ввел аргумент')
end
else -- если же не найдется ни одна из команд выше, выведем сообщение
sendTelegramNotification('Неизвестная команда!')
end
end
end
end
end
end
end
end
function getLastUpdate() -- тут мы получаем последний ID сообщения, если же у вас в коде будет настройка токена и chat_id, вызовите эту функцию для того чтоб получить последнее сообщение
async_http_request('https://api.telegram.org/bot'..token..'/getUpdates?chat_id='..chat_id..'&offset=-1','',function(result)
if result then
local proc_table = decodeJson(result)
if proc_table.ok then
if #proc_table.result > 0 then
local res_table = proc_table.result[1]
if res_table then
updateid = res_table.update_id
end
else
updateid = 1 -- тут зададим значение 1, если таблица будет пустая
end
end
end
end)
end
function main()
while not isSampAvailable() do
wait(0)
end
getLastUpdate() -- вызываем функцию получения последнего ID сообщения
sampRegisterChatCommand('telegram',function() -- тестовая команда
sampAddChatMessage('[Telegram] Отправляю тестовое сообщение',-1)
sendTelegramNotification('Тестовое сообщение от '..sampGetPlayerNickname(select(2, sampGetPlayerIdByCharHandle(PLAYER_PED)))) -- отправляем сообщение юзеру
end)
lua_thread.create(get_telegram_updates) -- создаем нашу функцию получения сообщений от юзера
while true do
wait(0)
end
end
Кто знает, в чем может быть причина?