I'm not entirely clear on what you're asking for, so if this doesn't answer your question, please let me know.
If you want to set a variable upon game load then you should create a load function for Config.saves.onLoad in your JavaScript section like this:
Config.saves.onLoad = function (save) {
save.state.history[save.state.index].variables.var = 1;
};
That would set $var to 1 whenever a game is loaded. See the save object definition for details.
Also, if you do want to use the Save.get() function in your passage, you can do that like this:
<<set saveObject = Save.get()>>
(The example code in this part of the documentation is for use in JavaScript, so you have to do something like the above if you want to use it in Twine/SugarCube code.)
Note that the Save.get() function doesn't load a game, it just gets you a copy of the save data object. If you want to load a particular save game, then you'd do this:
<<run Save.slots.load(1)>>
and that would load the game from slot #1.
Hope that helps! :-)