08.05.2012, 00:21
Change this:
to this:
When you "return 0", it means you are stopping the callback from fully funcitoning and since that callback is called each time someone types a message, you need to return something greater than 0. That way, it will finish functioning...
Код:
return 0;
Код:
return 1;