TyranoBuilder is a drag-and-drop tool that allows creators to build complex branching narratives without deep coding knowledge. Because it generates games that can run in browsers (HTML5) or as standalone apps, its save data structure is often accessible to those who know where to look.
Windows/PC: Look for a folder named savedata within the game's directory or under %APPDATA%/Local/[GameName]. tyrano save editor full
"save_key": "slot_1",
"game_data":
"variables":
"f.player_name": "Hero",
"f.gold": 500,
"f.karma": 12,
"f.relationship_ally": 85
,
"current_scene": "scene_04",
"bgm": "track_02.ogg"
Tyrano Save Reader (or TSR-Tools) is a specialized utility designed to manage and edit save data for games created using the TyranoBuilder TyranoBuilder is a drag-and-drop tool that allows creators
- Need repeated, batch edits across many saves.
- Are producing curated save files for guides or translation patches.
- Need a safer UI to avoid type errors and preserve metadata.
import json, base64, os
3. Core Features of the “Full” Version
| Feature | Trial/Limited Version | Full Version |
|---------|----------------------|---------------|
| Variable editing | First 10 only | Unlimited |
| Flag/switch modification | Disabled | Full support |
| Item/Inventory editing | Read-only | Full read/write |
| Save slot renaming | Blocked | Enabled |
| Checksum repair | Automatic (basic) | Advanced CRC fix |
| Export/import save data | No | Yes (JSON format) | Need repeated, batch edits across many saves
1. Understanding the TyranoBuilder Architecture
To understand a save editor, one must first understand the target. Unlike high-budget engines that compile game data into unreadable binary code, TyranoBuilder is built on web technologies. It utilizes a framework based on HTML5, CSS, and JavaScript.
Template Detection: Include a template feature that can selectively parse specific parts of a save file to avoid corrupting core engine data.
Scroll to top