mob/proc/Kills()
spawn(-1)
var/list/records
var/result = world.GetScores(key, "")
if(isnull(result))
src << "Sorry, the hub could not be contacted to record your score."
return
records = params2list(result)
var/list/new_records = new
new_records["Kills"] = max(kills, text2num(records["Kills"]| "0")) + 1 |