- Pokémon Essentials Version
- v21.1 ✅
Easy Debug Terminal
A quick, easy-to-use terminal you can use to execute script commands within the game.
Overview:
This plugin adds a small input window which can be used to execute any script commands that you previously would have to create debug events in order to test. This can be used for pretty much anything, and can be a HUGE time-saver during development, especially if you're working with a lot of custom scripts.As an example, you can simply type
$player.party
into the terminal, and it will print an array of your party into the Debug Console window.If you make a spelling error or there's something wrong with the script you execute, the error message will be printed to the debug console instead of crashing the game.
NOTE: You can press Arrow Up while in the terminal to scroll back through previously executed commands.
Installation & Configuration:
Installation:
Step 1: Download the plugin from the button in the top right corner of the page.
Step 2: Extract the contents of the ZIP file into your game's root folder. (The folder with Game.exe in it)
Step 3: Run the game, and make sure to compile your plugins. (Hold CTRL while starting)
You should now be able to open the debug terminal by clicking F3.
Step 2: Extract the contents of the ZIP file into your game's root folder. (The folder with Game.exe in it)
Step 3: Run the game, and make sure to compile your plugins. (Hold CTRL while starting)
You should now be able to open the debug terminal by clicking F3.
Opening the Debug Terminal:
You can open the Debug Terminal by pressing F3. This can be changed to whatever key you want.
(See "Changing the Button to Open the Terminal")
(See "Changing the Button to Open the Terminal")
Disable or Enable the Debug Terminal:
Step 1: Open the 000_Easy Debug Terminal.rb file in the Plugins/Easy Debug Terminal/ folder. (.rb files can be opened with any text editor)
Step 2: Look for
Step 2: Look for
TERMINAL_ENABLED = true
and change it to false
if you want to disable it, or leave it as true
if you want it to be enabled.Toggle Terminal always printing returned values:
Step 1: Open the 000_Easy Debug Terminal.rb file in the Plugins/Easy Debug Terminal/ folder. (.rb files can be opened with any text editor)
Step 2: Look for
Step 2: Look for
TERMINAL_ECHO = true
and change it to false
if you want to disable it, or leave it as true
if you want it to keep printing the values returned from ran scripts.Changing the Button to Open the Terminal:
Step 1: Open the 000_Easy Debug Terminal.rb file in the Plugins/Easy Debug Terminal/ folder. (.rb files can be opened with any text editor)
Step 2: Look for
Step 2: Look for
TERMINAL_KEYBIND = :F3
and change the F3
to whichever button you want. The possible inputs are SDL scancodes without the SDL_SCANCODE_ prefix. You can check out a list of SDL scancodes here.- Credits
- ENLS