I seem to have some issues with chats. I need to send messages to multiple users, so i figured that using chats would be the best way. The service i'm writing is for a live football score system, so there will probably be a lot of messages generated.
I think i'd hit ratelimit on over TOC pretty quickly, so therefore i think the only logical solution is to use a chat.
I can create/join a chat and that works, other clients see the bot online, but no messages that it sends to the chat get to their destination. Normal IM's work fine.
Hey Folks.
I seem to have some issues with chats. I need to send messages to multiple users, so i figured that using chats would be the best way. The service i'm writing is for a live football score system, so there will probably be a lot of messages generated.
I think i'd hit ratelimit on over TOC pretty quickly, so therefore i think the only logical solution is to use a chat.
I can create/join a chat and that works, other clients see the bot online, but no messages that it sends to the chat get to their destination. Normal IM's work fine.
Any ideas?
Scott.
AIM: sc0ttw22
MSN: sc0tt@x0f.org
IRC: irc.whatnet.org / #?
I should get a chance to look into this later this week. Just to make sure, you are calling the correct chat send function?
//Joined using:
$b->joinChat("LiveScores",4);
// Send to chat room $b->ChatSay("LiveScores",strip_tags($i));
Was the function i used.