Skip to content
View Eng-Bunnys's full-sized avatar
Block or Report

Block or report Eng-Bunnys

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Eng-Bunnys/README.md

About me

  • Second Year Engineering Student
  • I like to think that I can code std::cout << "Hello, World?";

My Projects

  • GBF, a multi-purpose bot that's mainly made for Freebie Pings, meaning that whenever a paid game temporarily goes for free the bot notifies you
  • GBF Handler, a powerful and efficient command and event manager for your Discord bot
  • GBF Timers, Track your work time and get activity metrics that help improve your day to day life
  • Beastars Bot, get access to certain Manga's without ever leaving Discord using the powerful Beastars Bot

Contact Me!

You can contact me through my discord server, my discord user: .bunnys


Discord Presence

Pinned

  1. Discord-Bot-Commands-and-Handler Discord-Bot-Commands-and-Handler Public

    Advanced Handler & Commands for the current and previous version of d.js

    TypeScript 16 6

  2. GBF-Timers GBF-Timers Public

    Session statistics and logic handling using GBF's engine

    TypeScript

  3. Chat XP with cooldown to avoid spam Chat XP with cooldown to avoid spam
    1
    // This code is a general use case, meaning that it's auto enabled for all guilds, to make it per guild you'll have to moidfy it yourself
    2
    
    
    3
    // This is done in the messageCreate event
    4
    
    
    5
    // The channel that the level up message will be sent to, by default this should be the current channel unless you have a feature that has a custom level up channel
  4. Level System with carry over XP and ... Level System with carry over XP and extra levels
    1
    /**
    2
    What this does:
    3
    It checks if the users RP [XP] is larger than or equal to the required XP to level up, if larger than we have extra XP, we check if that extra XP can level the user up again and if it can't we set it as carryOverXp
    4
    */
    5
    //This is the function that calculates the amount of XP required to level up once, you can of course change this to your own equation