I tryed to use this, heres the code I came up with. but it doesnt work. Could someone help or fix it. (I havnt used all the things, and dont know how to send the chat messages.) Please help!!
Heres the code:
Code:
if ($message =~ /^chats/) {<br />$chat = $chats->getAllChats();<br />$self->sendMessage($chat); }<br /><br />if ($message =~ /^createchat (.*)/){<br />$chats->createChat($1);<br />$self->sendMessage("I have created the chat room $1");<br />$chats->joinChat($1);<br />$self->sendMessage("You have now joined $1");}<br /><br />if ($message =~ /^getchats (.*)$/){<br />my $chatter = $chats->getChats($1);<br />$self->sendMessage("$1 is in:\n\n\t$chatter");}