RPG Maker Forums

Hello! I was wondering if there was a way to have a separate opacity setting for the "select key item" menu that pops up in an event?
I'm using a custom item menu script (Seiryuki's CATEGORIZE ITEM SCENE) that changes the opacity settings for the item screen on the menu which makes it completely transparent. However, this messes with the key item menu that comes up with an event.
I wanted to keep the transparent menu-item screen while having an opaque key item menu for events. Is this possible?

Here's the part of the custom script that deals with the item list and also changes the key item menu::
class Window_ItemList < Window_Selectable

alias icat_initialize initialize
def initialize(x, y, width, height)
icat_initialize(x, y, 575, height)
@category = ICAT::VISIBLE_CATEGORY_INDEX
self.opacity = 255
end

def include?(item)
return false if item == nil
case @category
when :item
item.is_a?(RPG::Item) && !item.key_item?
when :weapon
item.is_a?(RPG::Weapon)
when :armor
item.is_a?(RPG::Armor)
when :key_item
item.is_a?(RPG::Item) && item.key_item?
when :all_item
item.is_a?(RPG::Item) || item.is_a?(RPG::Armor) || item.is_a?(RPG::Weapon)
else
###### NEED TO CHECK FOR CUSTOM CATEGORIES HERE AND
###### DECIDE IF TO INCLUDE THE ITEM TO IT
@icategory = item.item_category
for i in @icategory do
if @category == i
return item.item_category.include?(@category)
end
end
return false
end #when
end #def

end #class

Latest Threads

Latest Posts

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,035
Messages
1,018,456
Members
137,821
Latest member
Capterson
Top