Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Removing Parameters from Yanfly Shop Options?
- Original author: ZServ
- Original date: July 24, 2016
- Source thread: https://forums.rpgmakerweb.com/threads/removing-parameters-from-yanfly-shop-options.65791/
- Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSSx Script Support
Summary
Hey there! I'm looking to remove some parameters from the Shop Options script, found HERE. From what I've gathered, the parameters are shown via this snippet: #-------------------------------------------------------------------------- # draw_item_stats
Archived First Post
Hey there! I'm looking to remove some parameters from the Shop Options script, found HERE.
From what I've gathered, the parameters are shown via this snippet:
#--------------------------------------------------------------------------
# draw_item_stats
#--------------------------------------------------------------------------
def draw_item_stats
return unless @item.is_a?(RPG::Weapon) || @item.is_a?(RPG::Armor)
dx = 96; dy = 0
dw = (contents.width - 96) / 2
for i in 0...8
draw_equip_param(i, dx, dy, dw)
dx = dx >= 96 + dw ? 96 : 96 + dw
dy += line_height if dx == 96
end
end
So, I likely need to make a method that overwrites the array and checks for certain parameters (in this case, MDF and MMP). But, I'm unsure of how to do that. Can anyone point me in the right direction?
Downloads / Referenced Files
Log in to downloadLog in, then follow the RPG Maker Developers Group to see these download links.
Log in to download
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.