ServerInfo

Moved

Total Downloads: 10,612 - First Release: Aug 29, 2015 - Last Update: Oct 27, 2017

5/5, 53 likes
  1. Hello, the first tab is white and i dont know why? Pls Help me
     

    Attached Files:

  2. Here you go
     

    Attached Files:

  3. Thankyou :)
     
  4. Can someone explain (even roughly), how to use these variables so that I can place the image in the right position in the GUI? Many thanks, as usual.
    Are these numbers, the distance from some point?

    "Position": {
    "MinX": 0.0,
    "MaxX": 0.5,
    "MinY": 0.0,
    "MaxY": 0.5
     
  5. They are Percentages 1 = 100% 0 = 0%

    If you want the image to take up the whole GUI then set
    Code:
    "Position": {
      "MinX": 0.0,
      "MaxX": 1.0,
      "MinY": 0.0,
      "MaxY": 1.0
      }
     
  6. You're a champion! Thank you.
     
  7. Really nice Plugin :)
    How to create additional tabs and pages?
     
  8. Its probably best to open the JSON (configuration) file and check the sample descriptions and text in there. It shows you what parts constitute the tabs and which ones, the pages.
     
  9. yes, it worked :) i just copied the tab-lines in the configfile, now i have ten tabs :p tnx!
     
  10. why this doesnt work for me. i editet all lines but when i restart server pluging rollback and show again default text.
     
  11. {
    "ButtonText": " ",
    "HeaderText": " ",
    "Pages": [
    {
    "TextLines": [
    "Tab10"
    ],
    "ImageSettings": []
    }
    ],
    "TabButtonAnchor": 4,
    "TabButtonFontSize": 16,
    "HeaderAnchor": 0,
    "HeaderFontSize": 32,
    "TextFontSize": 16,
    "TextAnchor": 3,
    "OxideGroup": ""
    },

    this is a Tab with nothing but "Tab10" in the Texts
     
  12. Copy ALL of the coding in your JSON file (not just what you added or changed), and then paste it into this website:

    JSONLint - The JSON Validator.

    This will quickly check if there are any errors in the JSON file. Having any errors at all, will cause the plugin to create the default JSON file and overwrite what you previously had (which had errors). Get into this practise, its really handy.

    Incidentally, the error in the above coding is that the very last comma should be removed (which the above website will tell you also).

    ...
    "OxideGroup": ""
    }
     
  13. Does anyone know how can I set the GUI to be the top most GUI, so the it's in front of all other GUI elements (health bar, other plugins, etc) ?
     
  14. Give this a try
     
  15. Thx I'll give it a shot. I'm still using an older version because of some customizations, so I'll need to do some testing first.
     
  16. Ahh ok easier way would be to change on line 345
    Code:
    var tabContentPanelName = container.Add(mainPanel, "Overlay");
    
    Overlay is the layer you are looking for I am quite sure.
     
  17. Worked great ! Thanks. I have some other plugins that are using "overlay" too. Is there a way to get those to be one layer back ?
     
  18. Wulf

    Wulf Community Admin

    Overlay will cover menus, you want Hud.
     
  19. Thanks @Wulf :)