24.01.2014, 22:06
Hello,
I have a code that worked perfectly on previous versions of SA-MP.
When I run this on 0.3z RC3 (didn't test previous RCs), the function runs up to the point where the array should be created and then the function returns. Server does not crash nor give me any warning.
Array sizes of 3800 or lower work perfectly.
Test:
The output in server log however is only:
I guess there is something wrong with my configuration. It worked on 0.3x. Any ideas?
Thanks.
I have a code that worked perfectly on previous versions of SA-MP.
Код:
new string[5000];
Array sizes of 3800 or lower work perfectly.
Test:
Код:
public OnGameModeInit() { // do stuff // ... print("array test"); new string[5000]; print("post array test"); return 1; }
Код:
array test
Thanks.