Jump to content

[Tutorial] Move or Add New Equipment Slots to Character Window


Uyarrr

Recommended Posts

Hello everyone, I saw too frequently asked question about how to add new equipment slots to the character screen properly. So I decided to make minor tutorial about it. It's my first tutorial I hope it will be helpful.

First of all you need understand what is bounds for.
STEPS:
1.Open gui/layouts/game/characterwindow.json
2.Find for "EquipmentItem0".
3. You will see this. Example, here X Pos:29 Y Pos:32 and size is 36x36. (It's different from yours, I edited it.)

  Reveal hidden contents

 

The most important part here is, where x and y starts. IT'S NOT THIS!

  Reveal hidden contents

You should use this one instead, which I made it easier for you just download it. 

  Reveal hidden contents



Okay for example, Ill show my own design. I showed where is the 29x32 point written in bounds. I hope it's understandable.
So you just need make a design in photoshop by placing "equipmenticon" and input starting points for EquipmentItem0,1,2,3,4's.... bounds.
 

  Reveal hidden contents


Question: How I will know which equipment is which number?
It's really simple, open your server/resources/config.json file.
 

"Equipment": {
    "WeaponSlot": 2,
    "ShieldSlot": 3,
    "Slots": [
      "Helmet",
      "Armor",
      "Weapon",
      "Class Specific",
      "Boots",
      "Amulet",
      "Ring",
      "Belt",
      "Telasia Stone"

You will see equipments written like that. So okay, check it respectively. Equipment0 is Helmet. Equipment1 is Armor, Equipment 2 is Weapon etc. Goes like that. 

Question: I made bounds for my own created item slots but it's not works! Help please.
Here is your answer, extra equipment slot's settings not setted at all. Just replace this settings for your custom equipment item slots and change bounds to whatever you want.

 

"EquipmentItem5": {
        "Bounds": "8,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },


Sorry for my terrible grammar, I hope it' understandable. Feedback would be appreciated!

Link to comment
Share on other sites

  • 3 months later...

I just tried doing this and am very confused. This is how I changed my config and how I changed my CharacterWindow.json

 

Server-side config\

  Quote

"Equipment": {
    "WeaponSlot": 2,
    "ShieldSlot": 3,
    "Slots": [
      "Helmet",
      "Armor",
      "Weapon",
      "Shield",
      "Boots",
      "Cape",
      "Amulet",
      "Ring",
      "Gloves"
    ],
    "Paperdoll": {
      "Up": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Down": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Left": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Right": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ]
    },

Expand  

 

 

CharacterWindow

  Quote

 

 "EquipmentItem0": {
        "Bounds": "8,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },

"EquipmentItem1": {
        "Bounds": "50,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem2": {
        "Bounds": "92,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem3": {
        "Bounds": "134,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem4": {
        "Bounds": "176,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem5": {
        "Bounds": "210,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": null,
        "ToolTipFont": null,
        "ToolTipTextColor": "",
        "Texture": null,
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "0,0,10,10",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem6": {
        "Bounds": "244,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": null,
        "ToolTipFont": null,
        "ToolTipTextColor": "",
        "Texture": null,
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "0,0,10,10",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem7": {
        "Bounds": "278,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": null,
        "ToolTipFont": null,
        "ToolTipTextColor": "",
        "Texture": null,
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "0,0,10,10",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem8": {
        "Bounds": "312,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": null,
        "ToolTipFont": null,
        "ToolTipTextColor": "",
        "Texture": null,
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "0,0,10,10",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      }
    }
  }
}

Expand  

 

Edited by MrValenza
Forgot to past EquipmentItem0
Link to comment
Share on other sites

  On 1/24/2020 at 12:00 PM, Ainz Ooal Gown said:

 

Looks correct to me, what is happening when you try to launch server/client?

Expand  

 

I tested this and there's a couple of faults.

1) The bounding box for the characterWindow needs to be expanded. (He didn't say he did this so I'm assuming here)

2) All of the extra slots are missing their textures, which means they show up blank with no background.

Link to comment
Share on other sites

So basically, the  new item types show up when I try to make a new item. So I have access to the actual items and can make and equip them. The actual issue is that there is no actual display of the item and no box where it should display in the character creation window. I remember at some point last year, after doing this it just magically created a single box for my boots slot. 

Link to comment
Share on other sites

So I played around with it and I can only get four items to actually show up in the slot. One of the items (when hovered over) shows the text "gloves" but no actual image or box pops up.

 

  Reveal hidden contents

 

 

For the other accessories, when I hover over the box (which is there) the name of the item equipped shows but the image of the actual equipped item does not. This is my last thing I am stuck on related to this

 

  Reveal hidden contents

 

 

 

 

 

 

 

Link to comment
Share on other sites

  • 2 weeks later...
  On 1/24/2020 at 8:21 PM, MrValenza said:

So I played around with it and I can only get four items to actually show up in the slot. One of the items (when hovered over) shows the text "gloves" but no actual image or box pops up.

 

  Reveal hidden contents

 

 

For the other accessories, when I hover over the box (which is there) the name of the item equipped shows but the image of the actual equipped item does not. This is my last thing I am stuck on related to this

 

  Reveal hidden contents

 

 

 

 

 

 

 

Expand  

 

I have not came across this error before.

 

Can you create a new forum topic in "Answers and Questions" so we dont flood this tutorial topic and upload your full "config.json" file from Server > Resources and "CharacterWindow.json" fom gui\layouts\game and I will have a look. Put a link to new topic in a post below for peoples referrence.

Link to comment
Share on other sites

  On 2/8/2020 at 11:45 PM, paidrew said:

I finally get my new type itens but i have one problem .. When i will choose my characters the paperdolls dont show in my char, where i find the archive to put my new type itens to show the paperdolls in char selection?

Expand  

 

Server side config.json:

 

"Paperdoll": {
      "Up": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Down": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Left": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Right": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ]
    },

 

The order in which you put the items in "Up, Down, Left, Right" depends on the order of drawing onto the player ingame.

Link to comment
Share on other sites

  On 2/9/2020 at 10:44 AM, Ainz Ooal Gown said:

 

Server side config.json:

 

"Paperdoll": {
      "Up": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Down": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Left": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ],
      "Right": [
        "Player",
        "Helmet",
        "Armor",
        "Weapon",
        "Shield",
        "Boots",
        "Cape",
        "Amulet",
        "Ring",
        "Gloves"
      ]
    },

 

The order in which you put the items in "Up, Down, Left, Right" depends on the order of drawing onto the player ingame.

Expand  

I do this in game the paperdools work fine.. but in char selection the others type itens dont show.. the default work like helmet, armor.. but ring, cape not.. I dont know why.. I think thats can be one config in client on gui char selection but i dont know where edit this..

Link to comment
Share on other sites

  On 2/9/2020 at 12:15 PM, paidrew said:

I do this in game the paperdools work fine.. but in char selection the others type itens dont show.. the default work like helmet, armor.. but ring, cape not.. I dont know why.. I think thats can be one config in client on gui char selection but i dont know where edit this..

Expand  

 

You have to add them to the game in the GUI/Layouts/Game/CharacterWindow.json Follow the above tutorial

Link to comment
Share on other sites

  On 2/9/2020 at 12:18 PM, Ainz Ooal Gown said:

 

You have to add them to the game in the GUI/Layouts/Game/CharacterWindow.json Follow the above tutorial

Expand  

Yes i follow everything in tutorial i show my codes..

 

In server.. the config

 "Equipment": {
    "WeaponSlot": 2,
    "ShieldSlot": 3,
    "Slots": [
      "Capacete",
      "Armadura",
      "Arma",
      "Escudo",
      "Bota",
      "Calça",
      "Anel",
      "Montaria",
      "Asa/Capa"
    ],
    "Paperdoll": {
      "Up": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ],
      "Down": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ],
      "Left": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ],
      "Right": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ]
    },

in Client the Character Window 

"EquipmentItem0": {
        "Bounds": "29,32,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem1": {
        "Bounds": "29,70,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem2": {
        "Bounds": "8,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem3": {
        "Bounds": "50,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem4": {
        "Bounds": "155,70,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem5": {
        "Bounds": "155,32,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem6": {
        "Bounds": "92,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem7": {
        "Bounds": "134,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem8": {
        "Bounds": "176,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      }

Show this ..

ed8aca222aec35a1390f680ec2de539a.png

 

07194dfadb29979b8f34b2b83c1a7b6a.png

 

Looks the detail of cape dont show in char selection ..

Link to comment
Share on other sites

  On 2/9/2020 at 12:27 PM, paidrew said:

Yes i follow everything in tutorial i show my codes..

 

In server.. the config

 "Equipment": {
    "WeaponSlot": 2,
    "ShieldSlot": 3,
    "Slots": [
      "Capacete",
      "Armadura",
      "Arma",
      "Escudo",
      "Bota",
      "Calça",
      "Anel",
      "Montaria",
      "Asa/Capa"
    ],
    "Paperdoll": {
      "Up": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ],
      "Down": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ],
      "Left": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ],
      "Right": [
        "Player",
        "Capacete",
        "Armadura",
        "Arma",
        "Escudo",
        "Bota",
        "Calça",
        "Anel",
        "Montaria",
        "Asa/Capa"
      ]
    },

in Client the Character Window 

"EquipmentItem0": {
        "Bounds": "29,32,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem1": {
        "Bounds": "29,70,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem2": {
        "Bounds": "8,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem3": {
        "Bounds": "50,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem4": {
        "Bounds": "155,70,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem5": {
        "Bounds": "155,32,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem6": {
        "Bounds": "92,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem7": {
        "Bounds": "134,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      },
      "EquipmentItem8": {
        "Bounds": "176,144,36,36",
        "Padding": "0,0,0,0",
        "AlignmentEdgeDistances": "0,0,0,0",
        "AlignmentTransform": "0,0",
        "Margin": "0,0,0,0",
        "RenderColor": "255,255,255,255",
        "Alignments": "",
        "DrawBackground": true,
        "MinimumSize": "1,1",
        "MaximumSize": "4096,4096",
        "Disabled": false,
        "Hidden": false,
        "RestrictToParent": false,
        "MouseInputEnabled": true,
        "HideToolTip": false,
        "ToolTipBackground": "tooltip.png",
        "ToolTipFont": "sourcesansproblack,10",
        "ToolTipTextColor": "255,255,255,255",
        "Texture": "equipmentitem.png",
        "HoverSound": null,
        "LeftMouseClickSound": null,
        "RightMouseClickSound": null,
        "Children": {
          "EquipmentIcon": {
            "Bounds": "2,2,32,32",
            "Padding": "0,0,0,0",
            "AlignmentEdgeDistances": "0,0,0,0",
            "AlignmentTransform": "0,0",
            "Margin": "0,0,0,0",
            "RenderColor": "255,255,255,255",
            "Alignments": "",
            "DrawBackground": true,
            "MinimumSize": "1,1",
            "MaximumSize": "4096,4096",
            "Disabled": false,
            "Hidden": false,
            "RestrictToParent": false,
            "MouseInputEnabled": false,
            "HideToolTip": false,
            "ToolTipBackground": null,
            "ToolTipFont": null,
            "ToolTipTextColor": "",
            "Texture": null,
            "HoverSound": null,
            "LeftMouseClickSound": null,
            "RightMouseClickSound": null
          }
        }
      }

Show this ..

ed8aca222aec35a1390f680ec2de539a.png

 

a41582c31801001c94ba064acd0d1138.png

 

Looks the detail of cape dont show in char selection ..

Expand  

 

Not sure about the detail of cape?

 

Editing CharacterWindow.json only adds the slots to the character window.

Link to comment
Share on other sites

  • 2 weeks later...
  Reveal hidden contents

 

Sorry for the delayed response. Things got busy on my end and had some time away from development. Here is my file. Everything works fine, the only problem I have is that when I hover my mouse over the "extra" slots there is no picture of the item I have equipped, just an empty box but the actual item IS equipped and shows the name of the equipped item when I hover over the slot with my mouse.

 

Fixed the issue. Had to change the bounds in Equipment Icon to 2,2,32,32 from 0,0,10,10

Link to comment
Share on other sites

  Reveal hidden contents

 

 

Whenever I do equip any "extra" items though, server crashes and I get this. 

Link to comment
Share on other sites

  • 3 weeks later...

I have tried. Spent an hour or two and I bet it is something simple that I just don't understand. I successfully fixed other issues by trial and error, but I am probably actually not understanding the reasoning why such and such isn't working, no matter what I change.

Link to comment
Share on other sites

  On 3/9/2020 at 2:24 PM, MrValenza said:

I have tried. Spent an hour or two and I bet it is something simple that I just don't understand. I successfully fixed other issues by trial and error, but I am probably actually not understanding the reasoning why such and such isn't working, no matter what I change.

Expand  

In that case you should make a new topic, include your config and item setup 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Γ—
Γ—
  • Create New...