ShadowDragon

Realist
Regular
Joined
Oct 8, 2018
Messages
7,740
Reaction score
3,161
First Language
Dutch
Primarily Uses
RMMV
@destro0419 it might to be working on MZ if you use FOSSIL, but I believe
DK made a plugin and a patch as well to be working for it.
 

BreakerZero

Regular
Regular
Joined
Jul 8, 2018
Messages
1,206
Reaction score
523
First Language
English (USA)
Primarily Uses
RMMV
I have my doubts on that, @destro0419. Seeing as there are so many rendering differences between MV and MZ it's not as easy as simply using existing plugins if graphical resources are involved.

EDIT: As @ShadowDragon noted, a patch may work as well if tested. That said, I would personally prefer to hold out for a version with native compatibility.
 

mjshi

Jack of Most Trades
Regular
Joined
Feb 16, 2013
Messages
998
Reaction score
885
First Language
English
Primarily Uses
N/A
Yeah, I'm personally holding out until MZ goes on a steep enough sale that I can justify buying it (since I don't plan on developing a game with MZ). Until then, plugins may or may not work, depending on how they were coded.
 

Restart

Regular
Regular
Joined
Mar 15, 2019
Messages
848
Reaction score
751
First Language
English
Primarily Uses
RMMV
I tested this one with FOSSIL so (barring weird conflicts with other plugins) it should work for you as well.

And of course mjshi should feel free to use fossil as a resource for making a native port.
 

StaciaStay

Warper
Member
Joined
Jul 27, 2021
Messages
1
Reaction score
0
First Language
English
Primarily Uses
RMMV
I find this plugin extremely helpful and I'm using it for my project! However, I have to ask if there's a way to make it so the other buttons aren't shown until it's their time to press them.

Like if you have to press the up button in a sequence, the down button wouldn't show up until after you've pressed up first.

I hope that makes sense.
 

Restart

Regular
Regular
Joined
Mar 15, 2019
Messages
848
Reaction score
751
First Language
English
Primarily Uses
RMMV
I find this plugin extremely helpful and I'm using it for my project! However, I have to ask if there's a way to make it so the other buttons aren't shown until it's their time to press them.

Like if you have to press the up button in a sequence, the down button wouldn't show up until after you've pressed up first.

I hope that makes sense.

chain command is a wrapped plugin, so you'll need to stick this inside the plugin itself
Code:
//edit to make buttons appear when needed
Scene_ChainCommand.prototype.updateButtons = function() {
    this.index++;
    if (this.index > this.sequence.length - 1) return;

    AudioManager.playSe(soundFX.keypress);
    for (var i = 0; i < this.buttons.length; i++) {
        this.buttons[i].x -= button.width + button.spacing;
        if (i > this.index) this.buttons[i].opacity = 0
        if (i < this.index) this.buttons[i].opacity = 255 - (this.index - i) * 40;
    }
};
 

Guy_Fightmaster

Regular
Regular
Joined
Aug 14, 2019
Messages
173
Reaction score
19
First Language
English
Primarily Uses
RMMV
I am trying to make it where every time the player successfully presses one of the keys in the chain sequence; it activates a separate switch (different from the plugin switch). How would I go about this? Thank you.

[SOLVED] I found a way to make this happen without altering anything in the plugin.
 
Last edited:

Morganibus

Warper
Member
Joined
Feb 3, 2022
Messages
1
Reaction score
0
First Language
English
Primarily Uses
Other
sorry to ask this question
But does it work with RPG maker VX Ace?
 

ShadowDragon

Realist
Regular
Joined
Oct 8, 2018
Messages
7,740
Reaction score
3,161
First Language
Dutch
Primarily Uses
RMMV
@Morganibus this doesn't work in VX Ace, as VX Aces uses RGSS or ruby?
and this is javascript, so 2 compleet different languages and therefore,
it wont work.
 

NO_MORE

Warper
Member
Joined
Mar 28, 2022
Messages
1
Reaction score
0
First Language
KR
Primarily Uses
RMMV
How can I change the time limit? I change the default of Time per key, but it didn't work.
 
Joined
Nov 12, 2022
Messages
4
Reaction score
1
First Language
English
Primarily Uses
RMMZ
i know im a bit late to this, but does this work in rpg maker MZ? xd
 
Joined
Nov 12, 2022
Messages
4
Reaction score
1
First Language
English
Primarily Uses
RMMZ
honestly i do not understand how to install this, im very new to rmmz so i dont get anything, i just click where it says to download and it takes me to github or something, i am not sure what to do lol
 
Joined
Nov 12, 2022
Messages
4
Reaction score
1
First Language
English
Primarily Uses
RMMZ
nvm i installed it lol, now i dont know how to or where to put it in the files for it to work, i just got a folder named chaincmd, what should i do with it? (im so sorry i just dont understand much about any of this)
 

ShadowDragon

Realist
Regular
Joined
Oct 8, 2018
Messages
7,740
Reaction score
3,161
First Language
Dutch
Primarily Uses
RMMV
@gerardarthurway3 there is also a folder with the images (base) which you
can customize for your own game to fit nicely.

the cmd goes on the main root of the game where you see pictures, img, tilesets etc.
and it will take it from there.

read the helpfile carefully though, but I dont know if it will work in MZ.
as they draw pictures differently.
 
Joined
Nov 12, 2022
Messages
4
Reaction score
1
First Language
English
Primarily Uses
RMMZ
@gerardarthurway3 there is also a folder with the images (base) which you
can customize for your own game to fit nicely.

the cmd goes on the main root of the game where you see pictures, img, tilesets etc.
and it will take it from there.

read the helpfile carefully though, but I dont know if it will work in MZ.
as they draw pictures differently.
thank you very much, ill test it now on mz to see if it works, but thanks!!! :)
 

Sachio

Warper
Member
Joined
Jan 5, 2023
Messages
3
Reaction score
1
First Language
Chinese
Primarily Uses
RMMV
I am new here, who can provide an example to a project please, sorry, I do not know how to use it
 
Last edited:

Shaz

Keeper of the Nuts
Global Mod
Joined
Mar 2, 2012
Messages
46,153
Reaction score
16,958
First Language
English
Primarily Uses
RMMV
Hi, please use English on these forums. Thanks.

我是新手,有人可以提供项目示例吗,对不起,我自己不能使用它:RSAD:
"I'm new to this, can someone provide an example project, sorry I can't use it myself :RSAD:"
 

Sachio

Warper
Member
Joined
Jan 5, 2023
Messages
3
Reaction score
1
First Language
Chinese
Primarily Uses
RMMV
Hi, please use English on these forums. Thanks.


"I'm new to this, can someone provide an example project, sorry I can't use it myself :RSAD:"
i am sorry, i have already changed that(QAQ)
 

Sachio

Warper
Member
Joined
Jan 5, 2023
Messages
3
Reaction score
1
First Language
Chinese
Primarily Uses
RMMV
I solved my problem myself with constant trying, thanks to your plugin! It's fantastic!
 

Latest Threads

Latest Posts

Latest Profile Posts

Trying yet another hairstyle for Eliza and also been playing around with lights and shade
TSR
Capture d’écran, le 2023-06-18 à 12.53.13.png
At the end of chapter 1, the party get the world map key item which enable a mini map on the overworld. Alternatively, you can 'use' the world map from the item menu to see this representation of the world.
Have a nice weekend :cutesmile:
Baby sketches
VwUqfJ7hG9Y.jpg
She caught you for doing questionable stuff
383001878_10223238866908166_8958319270677218922_n.jpg
Me trying art tutorials be like:
Artist: Okay guys, you're just going to want to start with a simple circle as your base
Me: Man, mine looks nothing like the picture
Sqaure.png

Forum statistics

Threads
134,747
Messages
1,250,258
Members
177,505
Latest member
isjuanplayer
Top