Yanfly Shop Options Issues

● ARCHIVED · READ-ONLY
Started by Caedmon 5 posts View original ↗
  1. When I test my game I notice that the images show up when I am buying items but I go to sell them I don't have any image.

    Item1.png

    Also when I choose my third option on the sell screen which is Rings it brings up the roster of my party on the right side.  This roster image will stay with me until I finally exit out of the shop screen entirely.  Otherwise it stays for all buying and selling activities making it impossible to do anything.

    Item2.png

    Sorry for removing names and pictures but I'm trying to work on a project that I want to keep under wraps as much as possible.
  2. I have the shop options script installed and don't have that issue. It is a conflict with another script you have, and to diagnose it you will have to provide us with the scripts you have, otherwise it will be near impossible to track this issue down.
  3. I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.


    Please post a link to the script.


    Try putting just this script into a new game and see if it works. If it does, it's either something to do with your database setup, or a conflict.
  4. Well you were right about it being another script.  Actually it was a patch to allow me to call certain shop scenes.

    class Scene_Shop  alias patch_start start  def start    patch_start    command_buy if $shopcommand == 0    command_sell if $shopcommand == 1    $shopcommand = nil  endend 

    This works well for calling to the specific area of the shop but obviously throws off the shop screen.  Any ideas on how to fix this?  What I needed was a way to use an picture menu that would go directly to the buy or sell screen.
  5. bump