Possible example?
write works but load not working
load()
{
guid = self getGuid();
basePath = getDvar("fs_basegame") + "/test/" + guid + ".txt";
if(fileexists(basePath))
{
file = fopen(basePath, "r");
fread(file, "" + self.pers["kills"] );
fclose(file);
}
}