Check if two buttons are being pressed at once?

Status
Not open for further replies.

peq42_

Yeet
Veteran
Joined
Feb 5, 2016
Messages
484
Reaction score
288
First Language
Portuguese(BR)
Primarily Uses
RMMV
I'm trying to add gamepad support to a game of mine, but due to how limited the amount of buttons on it is, and the fact that I added extra commands to the game(such as fire, drop things,etc) I need a system capable of detecting two buttons pressed at once( and/or one being hold then the other being pressed).

I tried creating an alias for the Scene_Map.updateScene that would check when two buttons are pressed at once, but doesn't seem to work(It detects individual button presses, but not multiple at once). Any ideas?

My code so far:

Code:
var keyconfig_alias = Scene_Map.prototype.updateScene;
   Scene_Map.prototype.updateScene = function() {
     keyconfig_alias.call(this);

       if (!SceneManager.isSceneChanging() && ($gameMap._mapId==1 || $gameMap._mapId==5)) {

       if (Input.isTriggered('weapon')||(Input.isTriggered('fire') && Input.isTriggered('ok'))) {
        ///use weapon

        if(weapondelay===0 && chatopen===false){

            $gameTemp.reserveCommonEvent(2);
        }


    }
     if ((Input.isTriggered('shield') || (Input.isTriggered('fire') && Input.isTriggered('cancel'))) && chatopen===false) {
         ///equip shield
        $gameTemp.reserveCommonEvent(3);
    }
    else if((Input.isTriggered('potion') || (Input.isTriggered('fire') && Input.isTriggered('menu'))) && chatopen===false){
        ///consume potion
        $gameTemp.reserveCommonEvent(7);
    }
    else if((Input.isTriggered('dropweapon') || (Input.isTriggered('drop') && Input.isTriggered('ok'))) && chatopen===false){
        ///drop weapon
        $gameTemp.reserveCommonEvent(8);
    }
    else if((Input.isTriggered('droppotion') || (Input.isTriggered('drop') && Input.isTriggered('cancel'))) && chatopen===false){
        ///drop heal
        $gameTemp.reserveCommonEvent(10);
    }
    else if((Input.isTriggered('dropshield') || (Input.isTriggered('drop') && Input.isTriggered('menu'))) && chatopen===false){
        ///drop shield
        $gameTemp.reserveCommonEvent(9);
    }
          
       }
   };
 

caethyril

^_^
Veteran
Joined
Feb 21, 2018
Messages
2,113
Reaction score
1,524
First Language
EN
Primarily Uses
RMMZ
Maybe try Input.isPressed() instead of isTriggered()? I think isTriggered is a single-frame thing, fired when the button is initially pressed down. For comparison, the Conditional Branch check (event command) uses isPressed. Relevant code can be found in rpg_core.js, under Input. :)
 

peq42_

Yeet
Veteran
Joined
Feb 5, 2016
Messages
484
Reaction score
288
First Language
Portuguese(BR)
Primarily Uses
RMMV
Maybe try Input.isPressed() instead of isTriggered()? I think isTriggered is a single-frame thing, fired when the button is initially pressed down. For comparison, the Conditional Branch check (event command) uses isPressed. Relevant code can be found in rpg_core.js, under Input. :)
That worked perfectly, thank you!
 

Kes

Veteran
Veteran
Joined
Aug 3, 2012
Messages
22,299
Reaction score
11,713
First Language
English
Primarily Uses
RMVXA
[closed]IgnoreMe[/closed]
 
Status
Not open for further replies.

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.
Can someone recommend some fun story-heavy RPGs to me? Coming up with good gameplay is a nightmare! I was thinking of making some gameplay platforming-based, but that doesn't work well in RPG form*. I also was thinking of removing battles, but that would be too much like OneShot. I don't even know how to make good puzzles!
one bad plugin combo later and one of my followers is moonwalking off the screen on his own... I didn't even more yet on the new map lol.
time for a new avatar :)

Forum statistics

Threads
106,018
Messages
1,018,358
Members
137,803
Latest member
andrewcole
Top