Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coddingtonbear/eidolon-savegame-editor
Simple editor for the savegame file used by the game Eidolon (http://www.icewatergames.com/)
https://github.com/coddingtonbear/eidolon-savegame-editor
Last synced: 20 days ago
JSON representation
Simple editor for the savegame file used by the game Eidolon (http://www.icewatergames.com/)
- Host: GitHub
- URL: https://github.com/coddingtonbear/eidolon-savegame-editor
- Owner: coddingtonbear
- Created: 2015-01-25T08:24:02.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-26T05:12:52.000Z (almost 10 years ago)
- Last Synced: 2024-10-19T12:38:23.120Z (2 months ago)
- Language: Python
- Size: 184 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.rst
Awesome Lists containing this project
README
Eidolon Savegame Editor
=======================Early in my playing of Eidolon, I somehow missed my chance to find the
fishing pole and continually had trouble finding enough food to survive
as a result. This is the tool I wrote to avoid having to trek all
the way across the world to find that fishing pole.Install
-------From any environment where pip is available::
pip install eidolon-savegame-editor
Or, from a clone of this repository::
pip install -e .
Use
---::
eidolon_savegame_editor /path/to/savegame COMMAND
But where's my savegame?
------------------------+---------+----------------------------------------------------------------------------------------------------------------------------+
| OS | Path |
+=========+============================================================================================================================+
| OSX | ``~/Library/Application Support/Steam/SteamApps/common/Eidolon/EIDOLON.app/Contents/Resources/Engine/Config/SaveData.bin`` |
+---------+----------------------------------------------------------------------------------------------------------------------------+
| Windows | ``C:\UDK\EIDOLON\Binaries\Win32\SaveData.bin`` |
+---------+----------------------------------------------------------------------------------------------------------------------------+Commands
--------``reset_hunger``
~~~~~~~~~~~~~~~~Resets your hunger to zero.
``add_items ITEM COUNT``
~~~~~~~~~~~~~~~~~~~~~~~~Adds items to your inventory.
Options for ``ITEM`` include:
* ``Mushrooms``
* ``Tinder``
* ``CookedFish``
* ``Honey``*or* any other item in your inventory; use the key ``_items`` in
``show_properties`` to see what's in your inventory currently.Note: If the item name you enter is not something that exists in
Eidolon, it will be ignored by the game, but will stay in your
savegame file forever.``add_tool TOOL``
~~~~~~~~~~~~~~~~~Adds a tool to your inventory.
Options for ``TOOL`` include:
* ``nocs``
* ``rod``
* ``compass``
* ``bow````show_properties``
~~~~~~~~~~~~~~~~~~~Enumerates properties found in the savegame file.
Disclaimer
----------This may destroy your savegame! Make a backup if you don't trust this script.