Ok guys this time I did not take a script from the KILLbot I actually learned alittle bit of Torque but there is just one thing I think the name in this script is somehow wrong because my friend tryied it and it worked for him, could you please help? My name has also changed to D3athkat
package Chatbot {
function clientCmdChatMessage(%a, %b, %c, %fmsg, %cp, %name, %cs, %msg)
{
parent::clientCmdChatMessage(%a, %b, %c, %fmsg, %cp, %name, %cs, %msg);
if(%name $= "D3athkat")
{
if (%msg $= "test")
{
commandToServer('messageSent', "Test complete.");
}
}
}
}; activatePackage(Chatbot);