This is an example of an array:
PHP Code:
temp.array = {"hello","world"};
player.chat = temp.array[0]; // 0 is our index
Output:
Using an index of 1 would result in:
If you just want to see if a player's account name is in the array you can use:
PHP Code:
if ( player.account in temp.array ) {
// do stuff
}