Quote:
Originally Posted by Cubes
So I should do it like this?
PHP Code:
triggerserver("gui", "-loltest", "flip", {1,2,3});
or like this
PHP Code:
temp.i = {1,2,3}
triggerserver("gui", "-loltest", "flip", temp.i);
|
Depends on the length of the array, if it really is just 3 numbers then save the extra line and just send the trigger using {1,2,3}, but if it's a rather large string array of some sort then it would be better to use a temp. var.