Resource icon

CompletelyCustomizableVendor overhaul and update 1.3

No permission to download
I've updated the CompletelyCustomizableVendor script to work with the newest repo and added some of my own updates

ver 1.1
1) Now supports 6 items per page instead of 4
2) Overall "reskin" of the gump to look better
3) Amounts now support commas, so you'll see 1,000,000 instead of 1000000
4) I've taken the single file that this system use to be in and separated into individual files and folders.
- Makes a HUGE difference if you want to edit the system further
5) Created a Settings script to do certain edits easily
6) Items will now be centered or nearly centered in the middle of the button
7) Mouse hover over items now works so you can see the item properties
8) The exploit that allowed players to edit the item cost, etc has been fixed in this version by @Tresdni in a previous version he published

ver 1.2
9) Added in that the box that holds the reward items is not Visible by default so players can't see it if they press Ctrl + Shift

vendor screen shot.jpg


vendor screen shot 2.JPG


Settings options


C#:
public abstract class Settings
    {
        //main background of the gump
        public static int backgroundID = 30546;

        //button id behind the item
        public static int itemButton = 2329; // 2328
        public static int itemButtonPressed = 2328; // 2329

        //if you want to have the button "frame" and fill in the center with a different background
        public static bool ButtonBackground = true;
        public static int ButtonBackgroundID = 5104;
       
    }
Author
zerodowned
Downloads
173
Views
2,193
First release
Last update
Rating
0.00 star(s) 0 ratings

Latest Updates

  1. 1.3

    Added the currency item display back to the gump Added in support to see how many of each item...
  2. minor gump bug fix

    fixed bug with the staff side manageitems gump and added in a feature i forgot - box that holds...
Back