ServerInfo
Moved
Total Downloads: 10,612 - First Release: Aug 29, 2015 - Last Update: Oct 27, 2017
- 5/5, 53 likes
-
Attached Files:
-
-
Attached Files:
-
-
Thankyou
-
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 -
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 }
-
You're a champion! Thank you.
-
Really nice Plugin
How to create additional tabs and pages? -
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.
-
yes, it worked
i just copied the tab-lines in the configfile, now i have ten tabs
tnx!
-
why this doesnt work for me. i editet all lines but when i restart server pluging rollback and show again default text.
-
You have made errors in your JSON, copy ad paste it here first to check it for errors
JSONLint - The JSON Validator. -
{
"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 -
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": ""
} -
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) ?
-
-
-
Code:var tabContentPanelName = container.Add(mainPanel, "Overlay");
-
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 ?
-
Wulf Community Admin
-