update id.lua removed myid.lua

This commit is contained in:
Akamaru 2015-05-19 18:41:36 +02:00
parent 14cef42529
commit 9b1c4c18b6
2 changed files with 7 additions and 20 deletions

View File

@ -18,16 +18,16 @@ local function returnids(cb_extra, success, result)
local text = 'IDs fuer den Chat "' .. chatname .. '" (' .. receiver .. ')\n' local text = 'IDs fuer den Chat "' .. chatname .. '" (' .. receiver .. ')\n'
text = text .. "Hier sind " .. result.members_num .. ' Mitglieder:\n---------\n' text = text .. "Hier sind " .. result.members_num .. ' Mitglieder:\n---------\n'
for k,v in pairs(result.members) do for k,v in pairs(result.members) do
text = text .. v.print_name .. " (user#id" .. v.id .. ")\n" text = text .. v.print_name .. " (user#id" .. v.id ..")\n"
end end
send_msg(receiver, text, ok_cb, false) send_msg(receiver, text, ok_cb, false)
end end
local function run(msg, matches) local function run(msg, matches)
if matches[1] == "/id" then if matches[1] == "/id" or matches[1] == "/myid"then
local text = user_print_name(msg.from) .. ' (user#id' .. msg.from.id .. ' ' .. tostring(is_sudo(msg)) .. ')' local text = 'Dein Name lautet "' .. user_print_name(msg.from) .. '" und deine ID ist ' .. msg.from.id .. ' ' .. tostring(is_sudo(msg))
if is_chat_msg(msg) then if is_chat_msg(msg) then
text = text .. '\nDu bist in der Gruppe "' .. user_print_name(msg.to) .. '" (chat#id ' .. msg.to.id .. ')' text = text .. '\nDu bist in der Gruppe "' .. user_print_name(msg.to) .. '" und die Chat ID ist ' .. msg.to.id
end end
return text return text
elseif matches[1] == "chat" then elseif matches[1] == "chat" then
@ -40,11 +40,8 @@ local function run(msg, matches)
end end
return { return {
description = "Zeige dir IDs und IDs aller Gruppenmitglieder an.", description = "Zeige dir deine ID und die IDs aller Gruppenmitglieder an.",
usage = "/id, /id chat", usage = {"/id", "/myid"," /id chat"},
patterns = { patterns = {"^/id$","^/myid$","^/ids? (chat)"},
"^/id$",
"^/ids? (chat)"
},
run = run run = run
} }

View File

@ -1,10 +0,0 @@
function run(msg, matches)
return tostring(msg.from.id) .. ' ' .. tostring(is_sudo(msg))
end
return {
description = 'Zeigt deine Telegram ID',
usage = {"/myid"},
patterns = {'^/myid$'},
run = run
}