Skip to content

Commit

Permalink
Needed to update Game Pass to be worded right
Browse files Browse the repository at this point in the history
  • Loading branch information
AbsentSemicolon committed Jan 21, 2024
1 parent 9becdf0 commit 1ae3db1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Remnant: From the Files
Move Remnant II files from Gamepass to Steam and vice versa.
Move Remnant II files from Game Pass to Steam and vice versa.

This is a very rudimentary script to get the job done for now. Please take care when using this. I've tested it... alas don't have unit tests yet, but wanted to get this out into the wild.

Expand All @@ -13,13 +13,13 @@ Update `config.ini` with your Steam ID. This can be found by navigating to: [htt
Example:
You'll see [U:1:########] for your steamID3. Grab the last part after the right most colon without the end bracket and then update `config.ini`.

Also, make sure you have created a character in Gamepass first if moving to Steam. This is because of how files are stored for Remant 2 for Gamepass. I would do the same for Steam just to make sure files and folders are there.
Also, make sure you have created a character in Game Pass first if moving to Steam. This is because of how files are stored for Remant 2 for Gam Pass. I would do the same for Steam just to make sure files and folders are there.

# To Run
Open up your terminal and run `python3 address_to_folder\main.py`. Follow the on screen prompts.

# What it's doing
When the script first runs it finds the files for Steam and Gamepass, and keeps those in memory. Then prompts you to decide if you want to move/copy your files to Steam or Gamepass. Once you've decided, there's no going back now, it'll take backups of your current files in both locations and them copy the files from the source you've chosen to the destination.
When the script first runs it finds the files for Steam and Game Pass, and keeps those in memory. Then prompts you to decide if you want to move/copy your files to Steam or Game Pass. Once you've decided, there's no going back now, it'll take backups of your current files in both locations and them copy the files from the source you've chosen to the destination.

That's it. Once it's done you should be able to load up which ever version and play the game.

Expand Down
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class Remnant_File_Changer():
def __init__(self) -> None:
print('\nRemnant: From the files\n')
print('This will copy files from Gamepass to Steam')
print('This will copy files from Game Pass to Steam')
print('and vice versa.')
print('Please take care as this could mess up your saves.')
print('\nWARNING: This will only change 1 save.\n')
Expand Down Expand Up @@ -123,7 +123,7 @@ def __move_files(self, direction):

case 'G':
self.__take_backups()
print('Moving to Gamepass.')
print('Moving to Game Pass.')
self.__actually_move_files(self.steam_files, self.gamepass_files)

case 'Q':
Expand All @@ -133,7 +133,7 @@ def __move_files(self, direction):
print('Nothing selected; not sure how we got here.')

def start(self):
print('G to copy files to Gamepass')
print('G to copy files to Game Pass')
print('S to copy files to Steam')
print('Q to quit')
direction = input('\nWhich direction do you want to go? ')
Expand Down

0 comments on commit 1ae3db1

Please sign in to comment.