Author Topic: Chat Bots.  (Read 2510 times)

yes I did, but as I recently disclosed to Electrk, I now know you as the guy who released those two really stuffty add-ons but now all of a sudden is better
... thanks

If you didnt use the package your chatbot would be on all the time?

If you didnt use the package your chatbot would be on all the time?

No.


Do you remember me for sucking at coding?

OT:
There are plenty of chatbot topics that have the whole code pre-written...
Code: [Select]
package chatbot
{
function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
{
parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg);
                switch$(%msg)
                {
                        case "Input":
                              commandToServer('messageSent',"Output");
                              break;
                        case "!Test":
                              commandToServer('messageSent',"Test.");
                              break;
                }
}

};
activatePackage(chatbot);
That way seems much more harder to get input from the client..