ds_list_add(id, val1 [, val2, ... val15]);
Argument | Description |
---|---|
id | The id of the list to add to. |
val | The value to add to the list. |
[val2, ... val15] | Optional values to be added to the list. |
Returns: N/A
This function can be used to add a new value (real or string) to
the list, which will be added on at the end. The function can take
a further 14 optional arguments (making a total of 15 possible
additions), permitting you to add multiple values consecutively to
the list in a single call.
ds_list_add(sc_list, score);
The above code will add the value stored in the "score" variable into the list indexed in the variable "sc_list".