Not sure what the ask is here. The code seems to save and reload the last realm you were on but the game already does this with the last character you logged into. Clearly you’re exasperated but it might help to elaborate on what problem you’re intending to solve.
Also, you can format your code by sandwiching it between triple backtick (```) blocks.
Example:
```
if (isUsingCodeBlocks)
Console.WriteLine(“Super cool and easy to read!”);
else
Console.WriteLine(“Less cool and kinda ugly…”);
```
… turns into …
if (isUsingCodeBlocks)
Console.WriteLine("Super cool and easy to read!");
else
Console.WriteLine("Less cool and kinda ugly...");