Advertisement
Guest User

StupidassEASpamDetectionisbrokencrap

a guest
Mar 22nd, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. Create another Windows account then the game profile will be a per windows user setting as the key configs are saved in
  2.  
  3. %userprofile%\Saved Games\Respawn\Apex\local\settings.cfg
  4.  
  5. your other option is to have a batch file or powershell script which will copy a backup of the settings.cfg to the profile location
  6. you can have it with menu launch for yourself and for your brother it copies the keyconfig in place on launch.
  7.  
  8. setup the keys how you like them save exit the game copy
  9.  
  10. %userprofile%\Saved Games\Respawn\Apex\local\settings.cfg
  11.  
  12. to a folder / Directory call it mine.cfg have your brother set his keys up in game save and then copy
  13.  
  14. %userprofile%\Saved Games\Respawn\Apex\local\settings.cfg
  15.  
  16. have him call it bros.cfg
  17.  
  18. Put the folder anywhere on your machine copy the apex legends shortcut into the folder you should have 4 files inside it after creating the Profileswitcher.bat which is tacked on to the end here.
  19. ...
  20. Apex Legends.lnk
  21. bros.cfg
  22. mine.cfg
  23. ProfileSwitcher.bat
  24. ....
  25.  
  26. Create a txt file called profileswitcher change the extension to .bat
  27. After this copy text after : into your profileswitcher.bat
  28. :::
  29.  
  30.  
  31. ECHO OFF
  32. CLS
  33. :MENU
  34. ECHO.
  35. ECHO _________________________
  36. ECHO PRESS 1, 2 OR 3 to EXIT.
  37. ECHO _________________________
  38. ECHO.
  39. ECHO 1 - My Profile Launch Apex
  40. ECHO 2 - Brothers Profile Launch Apex
  41. ECHO 3 - EXIT
  42. ECHO.
  43. SET /P M=Type 1, 2, 3, press ENTER:
  44. IF %M%==1 GOTO mine
  45. IF %M%==2 GOTO bros
  46. IF %M%==3 GOTO exit
  47. :mine
  48. echo %CD%
  49. copy %CD%\mine.cfg "%userprofile%\Saved Games\Respawn\Apex\local\settings.cfg"
  50. start %CD%\"Apex Legends.lnk"
  51. GOTO EOF
  52. :bros
  53. copy %CD%\bros.cfg "%userprofile%\Saved Games\Respawn\Apex\local\settings.cfg"
  54. start %CD%\"Apex Legends.lnk"
  55. :EOF
  56. EXIT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement