update id.lua removed myid.lua
This commit is contained in:
@ -24,10 +24,10 @@ local function returnids(cb_extra, success, result)
|
|||||||
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
|
||||||
}
|
}
|
@ -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
|
|
||||||
}
|
|
Reference in New Issue
Block a user