Difference between revisions of "Setarray"
From Hercules Wiki
Nameless2you (Talk | contribs) (Created page with "Category:Script_Command ==Syntax== * setarray <array name>[<first value>],<value>{,<value>...<value>}; ==Description== This command will allow you to quickly fill up a...") |
Revision as of 19:42, 13 January 2013
Syntax
- setarray <array name>[<first value>],<value>{,<value>...<value>};
Description
This command will allow you to quickly fill up an array in one go. Check the Kafra scripts in the distribution to see this used a lot.
First value is the index of the first element of the array to alter.
Examples
setarray .@array[0],200,200,200; setarray .@array[1],300,150; // will produce: // .@array[0]=200 // .@array[1]=300 // .@array[2]=150