ID:1440727
 
(See the best response by Ss4toby.)
Most of the time, there is no problem with GetScores() and SetScores() at all. However, once every 1-2 weeks or so, player's scores stop being loaded from, and saved onto the hub standings. Even world.Reboot() doesn't fix this. What could possibly be happening?
Best response
Could just be an access malfunction. Perhaps making a while() that loops until success would help?

var/list/params
while(isnull(params))
params=world.GetScores("Ss4toby","Example")
sleep(1)
params=params2list(params)
if("Example" in params)
src<<"Ss4toby's Example was [params["Example"]]."