Go to documentation repository
The AddIni method is used to write, change and read integer variable from the ini-file. The method returns the value of variable after its changing.
Method call syntax:
function AddIni(varName: String, varValue: int, path: String): int
varName – required argument. Sets the name of variable in the file.
varValue – required argument. Sets the value of variable or value which should be added to the existing value of variable:
Example. There is no the "MyVar" variable in the "C:\\test.ini". Write such variable with the -1 value to the file, then add 1 to it and display the result value on the script debug window.
var result = AddIni("MyVar", -1, "C:\\test.ini"); result = AddIni("MyVar", 1, "C:\\test.ini"); DebugLogString(result);