Quote:
Originally Posted by Emera
I was working on an easy way to edit, add and read from the server flags using a TextList. I have hit a wall. I have the interface finished and know how to add rows to the text list using the GUI, but don't know how to read from the server flags and show them in the text list.
|
In order to obtain a list of all the different serverr variable names you can do:
PHP Code:
temp.vars = serverr.getdynamicvarnames();
Then you can simply loop through that array and add serverr.(@ array value) as a list entry.