Simple script to block loop/cycling through choices.

Qqernometabom

Villager
Member
Joined
Feb 19, 2018
Messages
13
Reaction score
6
First Language
English
Primarily Uses
RMMV
Hi, everyone !

Is there a way to block the cycling on choices ?

Like, eg.: When on first choice, when i click "up" it goes to the last choice. The same happens otherwise, on last choice, when click "down" i goes to the first.

Can i lock on first don't go "up", and the last don't go "down" further ?

Thx in advance ! :D
 

caethyril

^_^
Veteran
Joined
Feb 21, 2018
Messages
2,115
Reaction score
1,525
First Language
EN
Primarily Uses
RMMZ
Try saving this as a .js file and importing it like a plugin~
Code:
Window_ChoiceList.prototype.cursorDown = function(wrap) {
    var index = this.index();
    var maxItems = this.maxItems();
    var maxCols = this.maxCols();
    if (index < maxItems - maxCols) {
        this.select((index + maxCols) % maxItems);
    }
};

Window_ChoiceList.prototype.cursorUp = function(wrap) {
    var index = this.index();
    var maxItems = this.maxItems();
    var maxCols = this.maxCols();
    if (index >= maxCols) {
        this.select((index - maxCols + maxItems) % maxItems);
    }
};
Window_ChoiceList inherits from Window_Selectable. The above code overrides the inherited methods with versions that do not have a "wrap" check. For reference, you can find the code for Window_Selectable in your project's rpg_windows.js file. :)
 

Qqernometabom

Villager
Member
Joined
Feb 19, 2018
Messages
13
Reaction score
6
First Language
English
Primarily Uses
RMMV
Dude(tte :uwink:) , thank you VERY much ! Worked like a charm. I love you ! :kaocry:
 

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

Latest Threads

Latest Profile Posts

Our latest feature is an interview with... me?!

People4_2 (Capelet off and on) added!

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.

Forum statistics

Threads
106,034
Messages
1,018,446
Members
137,820
Latest member
georg09byron
Top