Created
January 23, 2016 19:28
-
-
Save kdeloach/9b599dca87ee036f1c57 to your computer and use it in GitHub Desktop.
Elliot Quest reset to first level
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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