4201
Modification Help / Re: Chat Bot Help
« on: June 12, 2012, 03:53:04 PM »Still not working :/Oops, forgot a syntax error.
Code: [Select]
package ChatBotYola
{
function clientCmdChatMessage(%a, %b, %c, %fmsg, %cp, %name, %cs, %msg)
{
Parent::clientCmdChatMessage(%a, %b, %c, %fmsg, %cp, %name, %cs, %msg);
if($ChatBotYolaActive)
{
switch$(%msg)
{
case "Hey":
commandToServer('messageSent', "ChatBot: Hey");
}
}
if(%name $= $Pref::Player::NetName)
{
switch$(%msg)
{
case "ChatBot On":
$ChatBotYolaActive = true;
case "ChatBot Off":
$ChatBotYolaActive = false;
}
}
}
};
activatePackage(ChatBotYola);