Guest User

Steam Account Switcher

a guest
Feb 23rd, 2022
9,459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.88 KB | None | 0 0
  1. SCRIPT TO SWITCH STEAM ACCOUNTS WITH EASE
  2.  
  3. >open notepad
  4. >paste this there
  5. >edit the usernames and descriptions
  6. >save
  7. >rename .txt to .bat
  8. >open and input 1, 2 or 3
  9. >hit ENTER
  10. >automatically switches account
  11. you only have to login once and steam automatically remembers your account after that
  12.  
  13. ------------------------------------------------------------------------------------------
  14.  
  15. @echo off
  16.  
  17. TITLE Select Steam Account
  18.  
  19. taskkill.exe /F /IM steam.exe
  20.  
  21. cls
  22. echo(
  23. echo(
  24. echo(
  25. echo                                      Select your account
  26. echo                            =======================================
  27. echo(
  28. echo 1) "FIRST ACCOUNT DESCRIPTION"
  29. echo 2) "SECOND ACCOUNT DESCRIPTION"
  30. echo 3) "THIRD ACCOUNT DESCRIPTION"
  31. echo(
  32.  
  33. CHOICE /M Select /C 123
  34.  
  35. If Errorlevel 3 Goto 3
  36. If Errorlevel 2 Goto 2
  37. If Errorlevel 1 Goto 1
  38.  
  39. :3
  40. set username="THIRD ACCOUNT USERNAME"
  41. Goto end
  42. :2
  43. set username="SECOND ACCOUNT USERNAME"
  44. Goto end
  45. :1
  46. set username="FIRST ACCOUNT USERNAME"
  47. Goto end
  48.  
  49. :end
  50.  
  51. reg add "HKCU\Software\Valve\Steam" /v AutoLoginUser /t REG_SZ /d %username% /f
  52. reg add "HKCU\Software\Valve\Steam" /v RememberPassword /t REG_DWORD /d 1 /f
  53. start steam://open/main
  54.  
  55. exit
  56.  
  57. ------------------------------------------------------------------------------------------
  58.  
  59. BUT MUH HARD DISK SPACE!
  60.  
  61. >open new account
  62. >wait for the game to start to download the data
  63. >close game
  64. >go to "X:\steamlibrary\steamapps\common\yu-gi-oh! Master duel\localdata\"
  65. >there will be two folders there (an OLD ONE and a NEW ONE), locate the NEW ONE, copy the name, delete it
  66. >open CMD as administrator
  67. >mklink /d "H:\SteamLibrary\steamapps\common\Yu-Gi-Oh!  Master Duel\LocalData\NEW ONE" "H:\SteamLibrary\steamapps\common\Yu-Gi-Oh!  Master Duel\LocalData\OLD ONE"
  68. >hit enter
  69. >open game again, it will say data has already downloaded and start without downloading new shit
Advertisement
Add Comment
Please, Sign In to add comment