Skip to content

Source code of New-Era HellBot Userbot.

License

Notifications You must be signed in to change notification settings

Muiz1232/Plugins

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

128 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HellBot v3 Plugins

Follow this format to make your own plugin for HellBot.

"""
A sample code to display hello without taking input.
"""
# this is a mandatory import
from . import on_message, hellbot, HelpMenu

# assigning command
@on_message("hii")
async def hi(_, message):
    # command body
    await hellbot.edit(message, "Hello!")


# to display in help menu
HelpMenu("hii").add(
  "hii", None, "Says Hello!"
).done()
"""
A sample code to display hello with input.
"""
# this is a mandatory import
from . import on_message, hellbot, HelpMenu

# assigning command
@on_message("hii", allow_stan=True)
async def hi(_, message):
    # command body
    msg = await hellbot.input(message)
    if msg:
        await hellbot.edit(message, f"Hello! {msg}")
    else:
        await hellbot.edit(message, "Hello!")


# to display in help menu
HelpMenu("hii").add(
    "hii", "<text>", "Display Hello with a input!"
).done()

To get more functions read codes in repo.

About

Source code of New-Era HellBot Userbot.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%