Save-Point

Full Version: Save-Point
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Board Message
Sorry, you do not have permission to access this resource.
Save-Point - [Solved] Removing attack/defend/escape buttons from battle menu (XP)

Save-Point

Full Version: [Solved] Removing attack/defend/escape buttons from battle menu (XP)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Firstly, sorry if I'm putting this in the wrong place or if there's an obvious solution that I'm just missing, I'm still getting used to how everything works both here and in RMXP.

In the game I'm working on, I intend to have the battles be solely skill-focused and would like to remove the option to attack, defend, and escape from the battle menu, and, if possible, replace the item button with a button that recovers SP. If anyone has any pointers on how I could do this (or whether I can at all), I'd very much appreciate it!
I cobbled this together.  Certain methods NEEDED to be rewritten to do this.

Content Hidden

I added an option so you can turn on/off the "Fight/Escape" window by way of an RPGMaker XP switch (Control Switch).

You can set the words for your simplified Skill/SP Recover menu in the config.

I set it up so you can use a defined "SP Recovery Item" in your database as what performs your SP healing... since you were not using items in battle.

And you can enable or disable a help window that shows your heroes recovering.

Just paste it below Scene_Debug and above Main.
(05-13-2024, 06:18 PM)DerVVulfman Wrote: [ -> ]I cobbled this together.  Certain methods NEEDED to be rewritten to do this.

Content Hidden

I added an option so you can turn on/off the "Fight/Escape" window by way of an RPGMaker XP switch (Control Switch).

You can set the words for your simplified Skill/SP Recover menu in the config.

I set it up so you can use a defined "SP Recovery Item" in your database as what performs your SP healing... since you were not using items in battle.

And you can enable or disable a help window that shows your heroes recovering.

Just paste it below Scene_Debug and above Main.

sounds perfect, thanks a bunch!! although, i'm getting a syntax error on the last line when launching.
(05-13-2024, 07:10 PM)parawixlia Wrote: [ -> ]sounds perfect, thanks a bunch!! although, i'm getting a syntax error on the last line when launching.

That sounds odd, so here is the project demo I created.  Nothing within it but this script.
[attachment=2114]
(05-13-2024, 08:14 PM)DerVVulfman Wrote: [ -> ]
(05-13-2024, 07:10 PM)parawixlia Wrote: [ -> ]sounds perfect, thanks a bunch!! although, i'm getting a syntax error on the last line when launching.

That sounds odd, so here is the project demo I created.  Nothing within it but this script.

not sure what the problem was but I copied it directly from there and it worked this time. thanks!