Skip to content

Instantly share code, notes, and snippets.

@MarkusG
Last active January 20, 2017 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarkusG/d405e0102dd72f53bc5e2df5dd39c566 to your computer and use it in GitHub Desktop.
Save MarkusG/d405e0102dd72f53bc5e2df5dd39c566 to your computer and use it in GitHub Desktop.
Discord.Net 0.9 String Prefix Example
x.CustomPrefixHandler = (m) =>
{
if (m.RawText.StartsWith(yourPrefixHere))
return yourPrefixHere.Length;
return -1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment