Hallo, ich schreibe gerade ein kleines Projekt zur Selbstübung, und brauche dazu einen Array, indem mehrere Parameter gespeichert werden.
Ich weiß vor dem User-Input aber nicht, wie groß dieser Array sein wird.
Derzeit versuche ich dies so:
new paramArray[][ArgumentInformation] = {0};
...
paramArray[j][type] = 1;
paramArray[j][valInt] = strval(funcArgs);
Allerdings wirft mir da der Compiler folgenden Fehler aus:
Code
[21:42:19] [debug] Run time error 4: "Array index out of bounds"
[21:42:19] [debug] Accessing element at index 1 past array upper bound 0
[21:42:19] [debug] Backtrace (most recent call first):
[21:42:19] [debug] #0 public LSFunctionHandler(functionSyntax[]=@0x00002bc8 "") at input:122
[21:42:19] [debug] #1 @receivepacket() at input:82
Ein RunTimeError also.
Habt ihr da eventuell Lösungsansätze oder Vorschläge?