mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 14:34:17 +02:00
88 lines
3.0 KiB
Python
Executable File
88 lines
3.0 KiB
Python
Executable File
# █ █ ▀ █▄▀ ▄▀█ █▀█ ▀
|
|
# █▀█ █ █ █ █▀█ █▀▄ █
|
|
# © Copyright 2022
|
|
# https://t.me/hikariatama
|
|
#
|
|
# 🔒 Licensed under the GNU AGPLv3
|
|
# 🌐 https://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
# scope: hikka_min 1.2.10
|
|
|
|
# meta pic: https://img.icons8.com/fluency/240/000000/shuffle.png
|
|
# meta banner: https://mods.hikariatama.ru/badges/inline_random.jpg
|
|
# meta developer: @hikarimods
|
|
# scope: inline
|
|
# scope: hikka_only
|
|
|
|
from random import choice, randint
|
|
|
|
from .. import loader, utils
|
|
from ..inline.types import InlineQuery
|
|
|
|
|
|
@loader.tds
|
|
class InlineRandomMod(loader.Module):
|
|
"""Random tools for your userbot"""
|
|
|
|
strings = {"name": "InlineRandom"}
|
|
|
|
@loader.inline_everyone
|
|
async def coin_inline_handler(self, query: InlineQuery) -> dict:
|
|
"""Heads or tails?"""
|
|
|
|
r = "🦅 Heads" if randint(0, 1) else "🪙 Tails"
|
|
|
|
return {
|
|
"title": "Toss a coin",
|
|
"description": "Trust in the God of luck, and he will be by your side!",
|
|
"message": f"<i>The God of luck tells us...</i> <b>{r}</b>",
|
|
"thumb": "https://img.icons8.com/external-justicon-flat-justicon/64/000000/external-coin-pirates-justicon-flat-justicon-1.png",
|
|
}
|
|
|
|
@loader.inline_everyone
|
|
async def random_inline_handler(self, query: InlineQuery) -> dict:
|
|
"""[number] - Send random number less than specified"""
|
|
|
|
if not query.args:
|
|
return
|
|
|
|
a = query.args
|
|
|
|
if not str(a).isdigit():
|
|
return
|
|
|
|
return {
|
|
"title": f"Toss random number less or equal to {a}",
|
|
"description": "Trust in the God of luck, and he will be by your side!",
|
|
"message": f"<i>The God of luck screams...</i> <b>{randint(1, int(a))}</b>",
|
|
"thumb": "https://img.icons8.com/external-flaticons-flat-flat-icons/64/000000/external-numbers-auction-house-flaticons-flat-flat-icons.png",
|
|
}
|
|
|
|
@loader.inline_everyone
|
|
async def choice_inline_handler(self, query: InlineQuery) -> dict:
|
|
"""[args, separated by comma] - Make a choice"""
|
|
|
|
if not query.args or not query.args.count(","):
|
|
return
|
|
|
|
a = query.args
|
|
|
|
return {
|
|
"title": "Choose one item from list",
|
|
"description": "Trust in the God of luck, and he will be by your side!",
|
|
"message": (
|
|
"<i>The God of luck whispers...</i>"
|
|
f" <b>{choice(a.split(',')).strip()}</b>"
|
|
),
|
|
"thumb": "https://img.icons8.com/external-filled-outline-geotatah/64/000000/external-choice-customer-satisfaction-filled-outline-filled-outline-geotatah.png",
|
|
}
|
|
|
|
@loader.inline_everyone
|
|
async def person_inline_handler(self, query: InlineQuery) -> dict:
|
|
"""This person doesn't exist"""
|
|
|
|
return {
|
|
"photo": f"https://thispersondoesnotexist.com/image?id={utils.rand(10)}",
|
|
"title": "This person doesn't exist",
|
|
}
|