You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fabian-flassig edited this page Apr 13, 2026
·
8 revisions
Saves or stores a lua table to a local storage dedicated to this plugin. The values can be loaded again by load_values.
pyio.save_values(name, values)
Parameter
Type
Description
name
string
Name under which the values will be stored (see remarks)
values
{...}
The table containing the values (see remarks)
Return value
Type
Description
boolean
true for success, false if the file cannot be opened
Remarks:
The name must be a valid file name on the local system: it must not contain "/" or "\" as well as some other special characters. Stick to "A-Z", "a-z", "0-9" and "-", "_" and keep it short to be on the safe side.
All key-value pairs are saved, where key and value are either a number, a string or a boolean and where value may also be a sub-table. The same rules apply to sub-tables. The nesting-depth of tables is limited (at least 8 levels of tables are saved).