If you want to specify a value pool other than the current pool without
changing the current pool, you can specify it in the value name by separating it with
a period (.).
;@ savevalue("HighScore", score) ; Save the value in score to the "HighScore" value in the current value pool
;@ savevalue("Johns_Adventure1.strength", str) ; Save the value in str to the "strength" value in the public pool "Johns_Adventure1"
;@ savevalue(".SnapTo", snap) ; Save the value in snap to the "SnapTo" value in the private value pool
;@ loadvalue(score, "HighScore")
;@ loadvalue(str, "Johns_Adventure1.strength")
;@ loadvalue(snap, ".SnapTo")
;@ deletevalue("HighScore")
;@ deletevalue("Johns_Adventure1.strength")
;@ deletevalue(".SnapTo")