discord-php / DiscordPHP

An API to interact with the popular messaging app Discord
MIT License
1k stars 237 forks source link

How to know when bot is removed from a server #967

Closed RobertGrubb closed 2 years ago

RobertGrubb commented 2 years ago

Hey there,

I'm semi-new to discord bots, but was curious is someone could show me a quick pseudo code that gives an example of knowing when the bot is removed from a server. For instance, I'd like to know when the bot is removed so I can make the necessary changes in the database.

I did a quick search to see if I could find any information on it, maybe I'm just not looking for it the correct way? Any help is appreciated, thank you!

key2peace commented 2 years ago

Check GUILD_DELETE event on http://discord-php.github.io/DiscordPHP/#events

RobertGrubb commented 2 years ago

@key2peace Ah yes, that's it - Thank you!