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

@ -24,10 +24,10 @@ local function returnids(cb_extra, success, result)
end
local function run(msg, matches)
if matches[1] == "/id" then
local text = user_print_name(msg.from) .. ' (user#id' .. msg.from.id .. ' ' .. tostring(is_sudo(msg)) .. ')'
if matches[1] == "/id" or matches[1] == "/myid"then
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
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
return text
elseif matches[1] == "chat" then
@ -40,11 +40,8 @@ local function run(msg, matches)
end
return {
description = "Zeige dir IDs und IDs aller Gruppenmitglieder an.",
usage = "/id, /id chat",
patterns = {
"^/id$",
"^/ids? (chat)"
},
description = "Zeige dir deine ID und die IDs aller Gruppenmitglieder an.",
usage = {"/id", "/myid"," /id chat"},
patterns = {"^/id$","^/myid$","^/ids? (chat)"},
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
}