- Joined
- Jul 21, 2015
- Messages
- 47
- Reaction score
- 9
- First Language
- English
- Primarily Uses
Did you know you can use pageup/pagedown to change which actor profile you're looking at in the menu? Yeah, neither did I. I'm looking for a way to change this. Ideally, press left to go back an actor and press right to go forward an actor. Seems pretty intuitive right?
I feel like I'm really close to the answer, but not quite hitting it. In rpg_scenes.js, starting at line 1547, you'll see this:
I tried changing "pagedown" to "okay", and that made me able to press Z to go to the next actor. So I know I can change the controls here! But I tried changing "pagedown" to "right" and "pageup" to "left", and... that just made neither pageup/down or left/right do anything.
Any ideas on what to try next?
I feel like I'm really close to the answer, but not quite hitting it. In rpg_scenes.js, starting at line 1547, you'll see this:
JavaScript:
Scene_Status.prototype.create = function() {
Scene_MenuBase.prototype.create.call(this);
this._statusWindow = new Window_Status();
this._statusWindow.setHandler('cancel', this.popScene.bind(this));
this._statusWindow.setHandler('pagedown', this.nextActor.bind(this));
this._statusWindow.setHandler('pageup', this.previousActor.bind(this));
this._statusWindow.reserveFaceImages();
this.addWindow(this._statusWindow);
};
I tried changing "pagedown" to "okay", and that made me able to press Z to go to the next actor. So I know I can change the controls here! But I tried changing "pagedown" to "right" and "pageup" to "left", and... that just made neither pageup/down or left/right do anything.
Any ideas on what to try next?