16.09.2018, 05:31
Help me, i got error on line 23 and 31 in DCC.inc
PHP код:
public SendDC(channel[], const fmat[], va_args<>)
{
new
str[145];
va_format(str, sizeof (str), fmat, va_start<2>); //23
BotChannel = DCC_FindChannelById(channel);
return DCC_SendChannelMessage(BotChannel, str);
}
public SendDCByName(channel[], const fmat[], va_args<>)
{
new
str[145];
va_format(str, sizeof (str), fmat, va_start<2>); //31
BotChannel = DCC_FindChannelByName(channel);
return DCC_SendChannelMessage(BotChannel, str);
}