JIF Grid Inventory

● ARCHIVED · READ-ONLY
Started by Jiffy 27 posts Page 1 of 2 View original ↗
  1. JIF_GridInventory V.1.1
    Created by WolfFS (Also known as Jiffy)

    Features:
    Allows you to create an inventory system similar to Stardew Valley and Resident Evil.
    Parameters that allow you to take control of the plugin.

    Screenshots:

    [embedded media]

    [embedded media]


    How to Use:


    - Place the plugin in your js\plugins folder.
    - Install the plugin in the plugin manager
    - Edit parameters to your needs
    - Be happy because you have a grid inventory plugin now :)

    Download:
    Download
    https://www.dropbox.com/s/z6j9m648suceal9/JIF_GridInventory.js?dl=0

    Credits:

    Free for commercial and non commercial use.
    Please just credit me under the name of Jiffy.

    Note:
    I will be taking suggestions on features for this plugin. However, I like you, am working on a game that requires lots of my attention, so large scale additions may not happen for a while.

    Also, thanks to SumRndmDde for helping me throughout the creation of the plugin.
  2. be cool if you could make it more like Link to the past menu.
  3. This looks so cool! Thank you so much for making this plugin @Jiffy !
  4. I test on full inventory, it seem that your item list window not able to scroll down.
  5. I can't seem to get the grid inventory to display at all in MV 1.50 v_v I tried a brand new project with no other plugins but still nothing, any thoughts about this?
  6. DMIgames said:
    I can't seem to get the grid inventory to display at all in MV 1.50 v_v I tried a brand new project with no other plugins but still nothing, any thoughts about this?
    same here. Not working =/
    How this interact with yanfly plugins?
  7. @DMIgames Can you give me a screenshot of your console? I can patch it today if necessary.
  8. Jiffy said:
    @DMIgames Can you give me a screenshot of your console? I can patch it today if necessary.
    upload_2017-8-26_11-49-39.png
  9. @Jiffy Here's a few screenshots

    rTqY9Xt.png
    6oXZa0D.png
    wjNajq4.png
  10. Plugin has been updated. Please re download the plugin through the Dropbox link provided above.
  11. upload_2017-8-28_17-5-28.png
    With Yanfly Plugins and MrTSLimited_Inventory.
    I actually use the second one because i want to limit the bag. Is there a way to limit the inventory? (without the MrTsLimitedInventory. obvious)
    Also, i would like to custom the font.
    EDIT 2: it is changing the equip window too =/
  12. @afonsobr Unfortunately there is no way to limit the inventory with this plugin. The reason both the equip and item windows do this is because they are actually the same window. There is probably a way to fix this but I don't have time. The plugin uses the game font, so to change the font you'd need to change the default font.
  13. Working good now, thanks for the quick fix!

    Edit:
    So I added a little fix myself to the help window width, x and y values as I felt I needed to change it a bit :)

    Added the help window initialize as well as the help values in the areas above

    Code:
    Window_Help.prototype.initialize = function(numLines) {
        var width = Graphics.boxWidth;
        var height = this.fittingHeight(numLines || 2);
        Window_Base.prototype.initialize.call(this, windowHelpX, windowHelpY, windowHelpWidth, height);
        this._text = '';
    };

    Fa68A7F.png

    EDIT EDIT:

    I also added in the ability to rename categories via paramaters in the plugin (I have weapon and armor disabled for the sake of my setup but you can remove the // to activate them again)

    Code:
    Window_ItemCategory.prototype.makeCommandList = function() {
        this.addCommand(backName, 'item');
       // this.addCommand(TextManager.weapon,  'weapon');
      //  this.addCommand(TextManager.armor,   'armor');
        this.addCommand(keyItem, 'keyItem');
    };
  14. its possible to drag and drop?
  15. Like this thanks
  16. This is a great feature, thanks ! Love grid inventories
  17. would it be possible to add in an area that would show the max amount of items that can be in the inventory? and if this does not add in a max can you then possibly add in a plugin parameter so you can set a limit for how many total items (where I'm counting a stack as 1 item) and if set to 0 or something like that there would be no limit?
  18. Is there a way to make it so that if you have a unique item it just shows the item without a number attached?