Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

hello there, thanks a lot for this plugin. 

I have a simple question: what would be the dcript call to be able to call the radio scene without having to use a keyboard button ? I would like to include it into a custom menu but I don't know how to call the scene.

Thanks a lot for your work.

Hello! Thank you for your comment.

I’m glad you liked the plugin and that it has been useful to you! :)

Of course, let me explain. The plugin already includes plugin commands so you can use it normally through events and event commands.

This means you can call it with the corresponding plugin command from any event, or with a normal script call using the following script commands:

For in-game use:

Open: PluginManager.callCommand(this, "RadioSystem", "ForceShowRadioUI", {});

Close: PluginManager.callCommand(this, "RadioSystem", "ForceHideRadioUI", {});

Although this last one should usually be irrelevant, I’m sharing it just in case.

And if you need to call it from another plugin, for example, you should be able to use the following depending on the situation. Most likely, this should work:

PluginManager.callCommand(null, "RadioSystem", "ForceShowRadioUI", {});

I remain at your disposal!

Best regards, and good luck with your project! ^^

thanks for the quick and complete answer.

I feel kind of stupid cause being new to the mv/mz style of rpg maker, I didn't think of looking at the plugin commands ><

Thanks for your plugins, they are awesome and I already use several of them in my project.


Wishing you the best and thanks again