Rpg Maker Vx Ace Cheat Menu High Quality Guide

# Cheat Menu Script

def command_execute(index) case @list[index][:name] when "Add Gold" $game_party.gain_gold(1000) # Adds 1000 gold when "Remove Gold" $game_party.lose_gold(1000) # Removes 1000 gold, checks for 0 when "Set Gold" $game_party.gain_gold(@gold - $game_party.gold) # Sets to predefined @gold when "Back" # Return to menu end end end rpg maker vx ace cheat menu

Maxing out character parameters. Switch/Variable Editor: Toggling event switches ( ONcap O cap N OFFcap O cap F cap F ) or altering variable values. :add_gold) add_command("Remove Gold"

key. This opens a menu that allows you to directly edit all game and Variables . Limitations: :remove_gold) add_command("Set Gold"

def make_command_list add_command("Add Gold", :add_gold) add_command("Remove Gold", :remove_gold) add_command("Set Gold", :set_gold) add_command("Back", :back) end