Skip to content

Instantly share code, notes, and snippets.

@k1zn
Last active November 13, 2021 19:37
Show Gist options
  • Select an option

  • Save k1zn/71eae4fcb7bc83730bc0548aa6af87ea to your computer and use it in GitHub Desktop.

Select an option

Save k1zn/71eae4fcb7bc83730bc0548aa6af87ea to your computer and use it in GitHub Desktop.
VimeWorld RAM Bypass
# thx LoganFrench
import os, base64
def base64_encode(text):
return base64.b64encode(bytes(text, 'utf-8')).decode('ascii')
ram = input('Enter RAM amount (example 3G, 3000M): ')
os.system('cmd /d /c start "" /D "%APPDATA%\\.vimeworld" "%APPDATA%\\.vimeworld\\VimeWorld.exe" -home "%APPDATA%\\.vimeworld\\" -jre "%APPDATA%\\.vimeworld\\jre-x64" -jvmargs -Xmx' + ram + ' -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -jar "launcher.jar" -updater ' + base64_encode(os.getenv('APPDATA') + '\\.vimeworld\\VimeWorld.exe') + ' -appdata ' + base64_encode(os.getenv('APPDATA')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment