Skip to content

Instantly share code, notes, and snippets.

@kdeloach
Created January 23, 2016 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdeloach/9b599dca87ee036f1c57 to your computer and use it in GitHub Desktop.
Save kdeloach/9b599dca87ee036f1c57 to your computer and use it in GitHub Desktop.
Elliot Quest reset to first level
import sqlite3
# Replace this with the path to your save file:
# Where are the save files located?
# https://steamcommunity.com/app/293440/discussions/0/624075374581106340/
path='C:\Users\xxx\AppData\Local\Elliot Quest\Local Storage\file__0.localstorage'
conn = sqlite3.connect(path)
c = conn.cursor()
c.execute("update ItemTable set value=? where key='currentLevel'",
('"f1"',))
c.execute("update ItemTable set value=? where key='savedLevel'",
('"f1"',))
c.execute("update ItemTable set value=? where key='respawnPosition'",
('{"x":128,"y":144}',))
conn.commit()
conn.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment