SifDoge

Veteran
Veteran
Joined
Jun 30, 2014
Messages
40
Reaction score
16
First Language
English
Primarily Uses
RMMV
Hi!
The message and choice window are both on Scene_Map.
But the character's name is on Scene_Name.
Screenshot_2.png
i think it not Scene_Map, already add it on plug in

Edit : Nvm there a setting on plug sry hahaha
 

Mattheo

Warper
Member
Joined
Feb 13, 2021
Messages
1
Reaction score
0
First Language
french
Primarily Uses
RMMV
I noticed a significant bug with the plugin. When I use the directional cross to move around and access the menu just after. Sometimes the character is continuously moving in one direction without me touching the screen or the directional pad. All the plugin are off except Aloe during the test.

 

mauigamestudio

Creator of Familia
Veteran
Joined
Jan 21, 2020
Messages
79
Reaction score
64
First Language
English
Primarily Uses
RMMZ
Not the way it is designed currently, unfortunately.

I was trying to balance flexibility and power with trying to keep the parameters as simple as possible, so I decided to make the buttons customizable for each scene (Scene_Battle, Scene_Title, Scene_Equip, Scene_Map, Scene_Status, etc.), but I didn't include anything for sub-menus because the possibilities, especially with anybody's custom menu, became nearly endless :blush:

Of course the buttons will work fine, but they would be there for the entire Scene_Battle, not just part of it.

There is a way to have buttons only for certain windows, but it would require you to dive through the code and show/hide these buttons as appropriate.

For example, in the battle, this part shows the item window:

Code:
Scene_Battle.prototype.commandItem = function() {
   this._itemWindow.refresh();
   this._itemWindow.show();
   this._itemWindow.activate();
};

You would need to add something to also show the buttons you have configured:

Code:
Scene_Battle.prototype.commandItem = function() {
   this._itemWindow.refresh();
   this._itemWindow.show();
   this._itemWindow.activate();

   this._keyButtons.up.show(); // <-- new
   this._keyButtons.down.show(); // <-- new
};
(Assuming you configured an "Up" and a "Down" button for the Scene_Battle)

Then you'd have to do the same thing for any window you wanted to show those buttons, as well as hide the buttons when the window was hidden. It would take some work, but it's possible in the end.
This plugin works great and makes all my dreams come true. However, I got a little bit stuck on one specific thing. I have a button that I want to remove when I click formation in my menu. I also want to add a button when I click formation on my menu.

There is no formation scene. There isn't even a formation window in rpg maker. Formation is just part the status menu window so I can't use a specific scene with the plugin parameters. I was trying to use the _keyButtons.up.show and _keyButtons.up.hide but I am getting nowhere.

Please help someone!
 

Naufalanam

Warper
Member
Joined
Apr 24, 2021
Messages
1
Reaction score
0
First Language
Indonesia
Primarily Uses
RMMV
why can't the button be placed outside the black screen of the game screen?
 

bleau11

Warper
Member
Joined
Jul 1, 2021
Messages
2
Reaction score
0
First Language
french
Primarily Uses
RMMZ
can you please telle me how to download the plugin when i click download it take me to a text page
 

Shaz

Global Moderators
Global Mod
Joined
Mar 2, 2012
Messages
45,566
Reaction score
16,455
First Language
English
Primarily Uses
RMMV
Right-click on the Download button and choose Save Link As. Don't change the name - just navigate to your project's js/plugins folder and save it in there.
 

bleau11

Warper
Member
Joined
Jul 1, 2021
Messages
2
Reaction score
0
First Language
french
Primarily Uses
RMMZ
Right-click on the Download button and choose Save Link As. Don't change the name - just navigate to your project's js/plugins folder and save it in there.
Thanks for the quick answer
 

DarkAdria

Veteran
Veteran
Joined
Jul 29, 2020
Messages
39
Reaction score
12
First Language
Spanish
Primarily Uses
RMMV
Hi, I have a problem with this plugin.
It works great except for one little detail.
I am using the "EnemyBook" plugin (included in RPG Maker MV) and when I open the "Bestiary" of my project, the pad and buttons disappear.
I have seen that it is necessary to specify in which "Scene_" the pad and buttons appear, but I do not know that "Scene_" is that of the Bestiary.
I have tried "Scene_EnemyBook" but when trying to open the game, I get an error message.

Somebody could help me?
Thank you!

P.S.: The problem has already been solved.
It wasn't this plugin's fault, it was something from the other plugin.
Sorry.
 
Last edited:

acer1204

Warper
Member
Joined
Jul 15, 2021
Messages
1
Reaction score
0
First Language
English
Primarily Uses
RMMV
i use this plugins can do a keyboard button as whell.
Is this ALOE_VirtualButtons can do a virtual mouse click?
how to set the "key button settings", if i want to simulation a mouse middle click \ right click \ left click?
 

Cuprite

Previously Golden
Veteran
Joined
Feb 6, 2017
Messages
144
Reaction score
67
First Language
English
Primarily Uses
RMMV
Is there any way to have an in-battle button disappear at certain times (Such as at the end of battle or right at the start)? Asking cause I'm using Yanfly's Victory Aftermath plugin and the button I'm using for a back button stays on top of the aftermath screen.
1630978727874.png
(Figured it wasn't worth making a whole new thread for this)
 

Cuprite

Previously Golden
Veteran
Joined
Feb 6, 2017
Messages
144
Reaction score
67
First Language
English
Primarily Uses
RMMV
Is there any way to have an in-battle button disappear at certain times (Such as at the end of battle or right at the start)? Asking cause I'm using Yanfly's Victory Aftermath plugin and the button I'm using for a back button stays on top of the aftermath screen.
(Figured it wasn't worth making a whole new thread for this)
Update: I figured out a way of fixing the problem myself. I decided to use DreamX's Victory Aftermath Extension to trigger a common event that just has the plugin command to remove the virtual button and that seems to work pretty much flawlessly.
 

mauigamestudio

Creator of Familia
Veteran
Joined
Jan 21, 2020
Messages
79
Reaction score
64
First Language
English
Primarily Uses
RMMZ
Update: I figured out a way of fixing the problem myself. I decided to use DreamX's Victory Aftermath Extension to trigger a common event that just has the plugin command to remove the virtual button and that seems to work pretty much flawlessly.
Can confirm this works. I did the exact same thing.
 

andy123

Villager
Member
Joined
Dec 8, 2020
Messages
28
Reaction score
5
First Language
english
Primarily Uses
RMMV
How do I make the buttons appear only on specific map?
Ex: Say I have map A,B and C with mapid 1,2, and 3.
I want a custom button to appear only on map 2.

Using Scene_Map and hide/show plugin command provided by the plugin, the button appears on all Maps.

Update: Found a way!!
 
Last edited:

Raggon

Veteran
Veteran
Joined
Sep 29, 2018
Messages
111
Reaction score
76
First Language
english
Primarily Uses
RMMV
How do I make the buttons appear only on specific map?
Ex: Say I have map A,B and C with mapid 1,2, and 3.
I want a custom button to appear only on map 2.

Using Scene_Map and hide/show plugin command provided by the plugin, the button appears on all Maps.


Update: Found a way!!


soooo how you do it? @andy123 ?
 

andy123

Villager
Member
Joined
Dec 8, 2020
Messages
28
Reaction score
5
First Language
english
Primarily Uses
RMMV
soooo how you do it? @andy123 ?
I ended up using NRPTransfercommonevent plugin but realized the buttons still show up after various scene_map thing too, so not gonna use this plugin. Gonna stick with galv screen buttons, plugin.
 

Domyxer

Warper
Member
Joined
Sep 30, 2021
Messages
3
Reaction score
0
First Language
Italian
Primarily Uses
Other
Hi, you will probably be tired of the myriad of problems due to installing the plug-in but I have read the whole trend and have not found anything to solve my problem.

I installed the plugin, I just inserted the image in the pad and when I go to play nothing is shown, what am I wrong?

I use version 1.6.1 of prg maker mv

1633479658118.png1633480299947.png1633479891548.png
 

Attachments

  • 1633479833561.png
    1633479833561.png
    219.5 KB · Views: 1
Last edited:

vanchinhvnn

Villager
Member
Joined
Dec 4, 2019
Messages
7
Reaction score
1
First Language
English
Primarily Uses
RMMV
Can confirm this works. I did the exact same thing.
Hello friend, I have setup Input code: "ok" in Key button setting but when chatting with NPC, press ok key, it doesn't skip chat message window, but it keeps chatting continuously.

can u help me, please!!!!!!!!!!!!!!
 

mauigamestudio

Creator of Familia
Veteran
Joined
Jan 21, 2020
Messages
79
Reaction score
64
First Language
English
Primarily Uses
RMMZ
This is probably because you are hiding the buttons during dialogue. When your button disappears, you automatically touch the screen, which causes the dialogue to progress. something like that.
Hello friend, I have setup Input code: "ok" in Key button setting but when chatting with NPC, press ok key, it doesn't skip chat message window, but it keeps chatting continuously.

can u help me, please!!!!!!!!!!!!!!
 

Latest Threads

Latest Profile Posts

Shoot.gif
Because The Fury from Metal Gear Solid 3 is one of my favorite bosses of all time, I felt the need to make a somewhat similar boss for my own game. taking cues from both the Fury and another awesome astronaut boss, Captain Vladimir from No More Heroes 2.
RE4make almost had me with their demo until I got to the dog stuck in a bear trap and realized that he was dead and could no longer be saved. Just not the kind of reimagining I'm interested in.
Here's some dudes that I'm drawing for Jimmy's Quest!
autredo.png
Autism Acceptance Month 2023!


Did this randomly in my free time, I guess today is a good day to show it.

Forum statistics

Threads
130,027
Messages
1,207,130
Members
171,294
Latest member
asdy2518
Top