Quote:
Originally Posted by Debjit
PHP код:
if(sscanf(params, "us[300]", playerName, reason))
Here at this line, since playerName's size is declared as 24 you also need to mention it here and playername is a string when you have declared its size so rename it as a string
Here is the fixed line
PHP код:
if(sscanf(params, "s[24]s[300]", playerName, reason))
|
Thanks buddy fixed, +reped