26.05.2010, 16:14
Well as the title says I have a problem with a string.
There is always the first letter missing.
Code:
So when I type "!botday test"
it says "est"
There is always the first letter missing.
Code:
pawn Код:
IRCCMD:botsay(botid, channel[], user[], host[], params[])
{
if (IRC_IsAdmin(botid, channel, user))
{
new msg[128];
format(msg, sizeof(msg), "%s", params[1]);
IRC_GroupSay(gGroupID, channel, msg);
}
return 1;
}
it says "est"