14.06.2011, 21:20
The error is self-explanatory, the error occurs when the array size is too small for the string. Here's an example:
The error will show up because Hello doesn't match the size of _string.
pawn Код:
public OnGameModeInit( )
{
static
s_string[4]
;
s_string = "Hello";
return true;
}