14 lines
382 B
Lua
14 lines
382 B
Lua
local speedtest = {}
|
|
|
|
speedtest.triggers = {
|
|
"speedtest%.net/my%-result/?a?i?/(%d+)",
|
|
"speedtest%.net/result/?a?i?/(%d+)"
|
|
}
|
|
|
|
function speedtest:action(msg, config, matches)
|
|
local url = 'http://www.speedtest.net/result/'..matches[1]..'.png'
|
|
utilities.send_typing(msg.chat.id, 'upload_photo')
|
|
utilities.send_photo(msg.chat.id, url, nil, msg.message_id)
|
|
end
|
|
|
|
return speedtest |