
Event Click Box - Plugin RPG Maker MV-MZ
A downloadable tool
๐ฆ Event Click Box - RPG Maker Plugin
ES_EventClickBox is a plugin for RPG Maker MV and MZ that allows you to add interactive boxes to the map. These boxes can contain text and trigger events when clicked by the player. Perfect for adding custom interaction zones and enhancing the gameplay experience!
โจ Features
โ Add clickable boxes anywhere on the map.
โ Trigger an event when a box is clicked.
โ Fully customize the boxes: color, size, visibility, text, font…
โ Add multiple boxes at once, each linked to a different event.
โ Remove a specific box or all boxes at once.
๐ฎ How to Use
Manage the boxes using script commands inside events.
๐ Add a Clickable Box
$gameSystem.showClickableBox(id, x, y, width, height, eventId, color, visible, text, fontSize, textColor);
=== Parameter Explanation ===
- id: Unique identifier for the box (used to manage it individually).
- x, y: Position of the box on the map.
- width, height: Width and height of the box.
- eventId: ID of the event triggered when the box is clicked.
- color: Box color (example: "#FF0000" for red).
- visible: true to show the box, false to hide it.
- text: Text displayed at the center of the box (leave empty for no text).
- fontSize: Size of the text.
- textColor: Text color (example: "#FFFFFF" for white).
๐ Example:
$gameSystem.showClickableBox(1, 300, 200, 200, 100, 2, "#FF0000", true, "Click here!", 24, "#FFFFFF");
๐ Displays a 200x100 pixel white box with the text "Click here!" in black.
๐ If the player clicks on it, event 2 will be triggered.
๐๏ธ Remove a Box
$gameSystem.hideClickableBox(id); // Removes a specific box $gameSystem.hideClickableBox("all"); // Removes all boxes
๐จ Customize Colors
Use hexadecimal color codes to modify the box and text color.
๐น Examples:
#FFFFFF
โ White#FF0000
โ Red#00FF00
โ Green#0000FF
โ Blue#FF00FF
โ Pink#FFF700
โ Yellow#0F0F0F
โ Gray#000000
โ Black
๐ฅ Installation
1๏ธโฃ Download the ES_EventClickBox file.
2๏ธโฃ Place it inside your project's js/plugins folder.
3๏ธโฃ Enable it in the plugin manager.
4๏ธโฃ Start adding unique interactions to your game!
๐ Use Case Ideas
โ
Interactive buttons on the map.
โ
Clickable signposts or panels.
โ
Mini-games where players must click the right spot.
โ
Hidden zones or interactive objects.
๐ฎ Try the Demo!
A downloadable demo is available so you can test the plugin in action before using it in your own project.
๐ฝ Download the demo and see how it works!
Published | 5 hours ago |
Status | Released |
Category | Tool |
Author | EroiK StyLeR |
Tags | plugin, RPG Maker, RPG Maker MV, RPG Maker MZ |
Purchase
In order to download this tool you must purchase it at or above the minimum price of 3.00โฌ EUR. You will get access to the following files:
Leave a comment
Log in with itch.io to leave a comment.