vlatkovski

Launch ROBLOX while it's under Maintenance

Feb 18th, 2015
532
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.92 KB | None | 0 0
  1. @echo off
  2.  
  3. :: This allows you to join and play games while the site is under Maintenance
  4.  
  5. ::  How to use this:
  6. ::  1. Open notepad
  7. ::  2. Paste the whole thing there
  8. ::  3. Configure the stuff (read settings)
  9. ::  4. Save the file as a .bat file anywhere
  10. ::  5. Run it
  11.  
  12. ::  Settings
  13.  
  14. set GAME_ID="5507913"
  15. :: Change above to the game id you'd like to join
  16.  
  17. set version="version-f9d6d23b9b1b466e"
  18. :: Change above to the current roblox version (in your roblox folder)
  19.     :: SIDE NOTE: THE EASIEST WAY TO GET THE ROBLOX VERSION IS TO GO TO http://setup.roblox.com/version AND COPY THE TEXT IN THERE
  20.  
  21. :: Also, don't put spaces between the "=", it won't work if you do that.
  22.  
  23. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  24.  
  25. set robloxFolder=%LocalAppData%\Roblox\Versions\%version%
  26.  
  27. set id= --id %GAME_ID%
  28. set openPath=%robloxFolder%\RobloxPlayerBeta.exe%id%
  29.  
  30. start %openPath%
Advertisement
Add Comment
Please, Sign In to add comment