A downloadable tool

Buy Now3.00โ‚ฌ EUR or more

๐Ÿ“ฆ 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!


Purchase

Buy Now3.00โ‚ฌ EUR or more

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:

ES_EventClickBox.js 8.1 kB

Download demo

Download
ES_EventClickBox_Demo.js 11 kB

Leave a comment

Log in with itch.io to leave a comment.