Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 XAIL MENU from RPG VX ACE to RPG XP
#31
Well then, it should be fully compatible. You just need to make:
Code:
LIST[4] = ["Reserves",   "048-Skill05",  "Exchange party members with your reserve staff.",        true,  false]
and
Code:
LIST[4] = [false, false, "Scene_Reserves.new"]
Or whatever the scene code is for your script.

Oh, new thought. An 'actor only' or 'actors only' setting for specific scenes. What this entails is for special menu options that only work for a specific character or group of characters.

As an example, let's say your game has a custom Crafting script and the menu selection reads as 'Weaponsmith' Weaponsmith in your script is set to use Scene_Crafting.new(actor_index) ... as normal, but have an extra parameter for actor ID #12. No other scene or menu option is assigned an actor id but this one, and this one only permits the 12th actor in your database to even use the script. So if you want to craft any weapons, you better have him in your party.

I won't just stop there. Imagine if you have a group of actors... like actors 3 and 5 only able to access the Bestiary script! Better have your thief or warrior around to tell you what you fought before.

Sorta like this
Code:
LIST[5] = [false, false, "Scene_Crafting.new(@status_window.index)", 12]
and
Code:
LIST[6] = [false, false, "Scene_Bestiary.new", [3,5]]
The above examples would show that you are passing the actor's index per normal, but it only works if the unique actor id of #12 is used. OR that the other scene works if you are using either actor #3 or #5 in your database.

In a nutshell, I'm working out any eventualities seen in menus and added menu options before the need arises.

EDIT: Wow, that wasn't hard to add at all. Specified options disabled until actor(s) who uses them are in party. AND only those actors can use them.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }


Messages In This Thread
RE: XAIL MENU from RPG VX ACE to RPG XP - by DerVVulfman - 03-27-2016, 03:18 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Need help with my menu - Current issue is item grid layout LilyFrog 41 33,131 09-24-2018, 02:03 AM
Last Post: LilyFrog
   Special Items Separate Menu Diorm 41 36,467 02-10-2018, 06:06 PM
Last Post: Diorm
Question  Mog Menu script: help me stop the crazy picture movement during transitions Zachariad 4 8,643 05-31-2017, 05:10 AM
Last Post: Zachariad
Tongue  Healing Spell doesn't work right in Menu? Bounty Hunter Lani 8 11,078 01-15-2015, 07:45 PM
Last Post: Bounty Hunter Lani
   My Options Menu needs help firestalker 0 2,987 08-11-2014, 02:31 PM
Last Post: firestalker
   Vx Ace Custom Menu help? Skitzen 1 4,903 10-07-2013, 03:10 PM
Last Post: JayRay
   Dargor's Large Party script and shop menu Simon Greedwell 2 6,040 08-28-2013, 10:12 PM
Last Post: Simon Greedwell
   Help with Shop Menu [RPG Maker XP] JackMonty 6 11,799 05-23-2013, 10:14 AM
Last Post: JackMonty
Brick Sub-menu Tab Iqus 5 8,050 01-23-2013, 02:01 PM
Last Post: Pherione
   Help with Compact Menu Selection Script JackMonty 4 6,335 09-19-2012, 10:56 PM
Last Post: JackMonty



Users browsing this thread: