Created
September 7, 2016 20:56
-
-
Save dennorske/a868e9fe2542d5db443aa9360b59e873 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//place this at the top with the other "new's" in the script. | |
new BotIndexer; | |
//place this at the bottom. | |
stock Say(channel[], text[]) | |
{ | |
if(!strlen(text) || !strlen(channel)) | |
return 1; | |
if(botindexer == 4) | |
botindexer = 0; | |
IRC_Say(botindexer, channel, text); | |
botindexer ++; | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment