| Object | Contents | |--------|----------| | $game_party | Gold, item/weapon/armor inventories, party member actor IDs | | $game_actors | Array of Game_Actor objects (level, exp, HP, MP, stats, skills, equipment) | | $game_switches | Array of booleans (game flags: $game_switches[001] = true ) | | $game_variables | Array of numbers/strings (quest progress, player choices) | | $game_map | Current map ID, player X/Y coordinates, map name | | $game_system | Magic number, save count, battle music, menu disabled flags |
An .rxdata file is a specific save game or data file format used primarily by (and occasionally adapted for later versions or custom fangames like Pokemon Essentials ). save editor rxdata
refers to the specific save file format used by RPG Maker XP , the engine famously behind the original Pokémon Essentials and thousands of fan-made RPGs. | Object | Contents | |--------|----------| | $game_party
: A dedicated user interface designed specifically to edit RPG Maker XP data files. It uses the Ruby Marshal module to safely modify and re-save the .rxdata format. It uses the Ruby Marshal module to safely
files. It allows you to upload your save, modify variables like gold, items, and experience points , and download the edited file. griest024 RXData Editor