modulepackage
0.0.0-20240725130451-5f8cbf3ebe02
Repository: https://github.com/g0dswisdom/frostgo.git
Documentation: pkg.go.dev
# README
FrostGo
FrostGo is a fast Discord API wrapper developed in Go, for selfbots
Installation
To install FrostGo, use the following command in your terminal:
go get github.com/g0dswisdom/frostgo
Documentation
We're currently working on our documentation. For now, explore the example below to create new commands.
You can also check out the command examples in the examples
folder.
You can also use this for API reference.
Selfbot example
package main
import (
"fmt"
FrostAPI "github.com/g0dswisdom/frostgo"
)
func main() {
bot := FrostAPI.NewBot("Discord token")
bot.On("ready", func() {
fmt.Printf("[+] Logged in as %s\n", bot.Client.Username)
})
bot.On("messageCreate", func(message FrostAPI.Message) {
if message.Content == "!ping" {
bot.User.DeleteMessage(bot, message.ChannelID, message.ID)
bot.User.SendMessage(bot, message.ChannelID, "Pong! :ping_pong:")
}
})
select {} // Keep the bot running
}
Note
Using a Discord selfbot is against the Discord TOS.
The author is not responsible for any damages done to the users account.
# Functions
No description provided by the author
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
Gateway presence update structure.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Discord bot.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This contains all of the guild functions.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This contains all of the user functions.
No description provided by the author
This contains all of the webhook functions.
No description provided by the author
No description provided by the author
# Type aliases
No description provided by the author