• Due to recent spam attacks that heavily used compormised accounts we did reset all user passwords, AGAIN, if it happens and your account got compromised again due to re-used passwords your account will be perma-banned.

array

  1. meko

    Array manipulation functions v10

    This script provides various array manipulation functions, and more might be added in the future. All of those functions (except the arithmetic ones) work with both integer and string arrays. The start of the array is always implicitly index 0, unless an index is specified, ie @array[index]...
  2. meko

    Array manipulation functions

    View File Array manipulation functions This script provides various array manipulation functions, and more might be added in the future. All of those functions (except the arithmetic ones) work with both integer and string arrays. The start of the array is always...
  3. bWolfie

    Set variable called from defined array?

    Hello, I want to set a permanent character variable that calls from an array. For example, my variable set up:     setarray(variable$[0],         "value_1",         "value_2",         "value_3"     );  And then call array to set the variable:         variable$[2] = 1; It seems to work...
  4. T

    How add Arrays to a Array

    Example Array = 1,2,3,4,5; if(Class == Swordman)  Add value: 6,7,8; if(Baselevel > 90)  Add value: 9,10; Final Array: 1,2,3,4,5,6,7,8,9,10;
Back
Top