02.01.2011, 12:02
Probably an array out of bounds. Check if all your arrays are big enough. When you have for example:
new array[10];
and want to use this
a = array[11];
It can crash the server and create an exception like yours.
Btw sscanf only crashes the server if you use it wrong. The plugin itself works without big problems.
new array[10];
and want to use this
a = array[11];
It can crash the server and create an exception like yours.
Btw sscanf only crashes the server if you use it wrong. The plugin itself works without big problems.