Originally Posted By: Aku_Aku
You should initialize the string array before the firrst usage, like this:
Code:
for(i=0;i<1000;i++)
   str_create(arrlanguage[i],"");


Or something like. See the Manual.


That's odd, OK, thanks anyways it works now.

This is how I did it:
Code:
var i;
for(i=0;i<1000;i++){
   arrlanguage[i] = str_create("");
}