fb9d3652f3
- self muss nicht mehr überall übergeben werden - alle Plugins wurden angepasst Eigene Updates: - abort_inline_query() hinzugefügt - Mehr Plugins zum Standard-Set hinzugefügt - Eventuell noch etwas, was ich vergessen hab
15 lines
412 B
Lua
15 lines
412 B
Lua
local speedtest = {}
|
|
|
|
speedtest.triggers = {
|
|
"speedtest.net/my%-result/(%d+)",
|
|
"speedtest.net/my%-result/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')
|
|
local file = download_to_file(url)
|
|
utilities.send_photo(msg.chat.id, file, nil, msg.message_id)
|
|
end
|
|
|
|
return speedtest |