This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/change_pic.lua

16 lines
370 B
Lua
Raw Normal View History

function run(msg, matches)
local receiver = get_receiver(msg)
local url = matches[1]
local file = download_to_file(url)
local cb_extra = {file_path=file}
chat_set_photo(receiver, file, ok_cb, false)
end
return {
description = "",
2016-01-11 19:39:19 +01:00
usage = {"/pic BILDURL"},
patterns = {"^/pic (.*)$"},
2015-11-12 17:42:03 +01:00
run = run,
notyping = true
2015-08-02 22:06:13 +02:00
}
--by Akamaru [https://ponywave.de]