03.11.2011, 20:23
how can i get message only send back to teh guy who typed the command? the text sends to all, and i want to it send back to him.
pawn Код:
IRCCMD:command(botid, channel[], user[], host[], params[])
{
if(!IRC_IsOp(botid, channel, user)) return IRC_Say(botid, channel, "You must be OP to use this command!");
{
//something
}
return 1;
}