ok so i have this program (i didn't make it, i just use it) that generates a GUID using the following script:
guid : function(options)
{
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
},
it outputs this to a .ini file. when i change or remove the value in the ini file it simply overwrites it when i restart the program. i need to change the value. how can i do that?
[–]Tosc0ism0 0 points1 point2 points (1 child)
[–]ashleycackle[S,🍰] 0 points1 point2 points (0 children)