-
-
Save TheUltDev/6591255 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SynHUD Advanced Configuration | |
--------------------------------------------------------------------------------------------- | |
-- This config is optional and the HUD will work without it. It just unlocks more features. | |
-- Place the script in the 'Documents/XenoBot' directory. Not the scripts directory! | |
-- To enable, set the 'enabled' value to 'true', and edit the values to your desire. | |
-- If you do not need a certain config, you may delete or disable it. | |
-- Please post in the thread 'http://forums.xenobot.net/showthread.php?13829' for support. | |
-- Thanks for your support. Yours truly, Syntax. | |
--------------------------------------------------------------------------------------------- | |
-- Example: override default loot values/supply costs/ring durations. | |
-- Official itemid list: http://forums.xenobot.net/showthread.php?10295 | |
-- Tip: Make sure to add the active ring ids (sparkling) | |
-- Tip: Include durations for items you want to track by time usage | |
-- Tip: The items included in the example are already default values, you can delete them. | |
synhud.items = { | |
enabled = true, | |
-- axe ring, costs 500, sells for 100, lasts 30 minutes | |
[3095] = {cost=500, value=100, duration=30} | |
} | |
-- Example: override default theme value (disable outfit theming to use) | |
-- Uses hex colors, use http://www.colorpicker.com/ or a similar tool for the values. | |
-- itemValueAlt, is the second value in the supply column, incase you were wondering :) | |
synhud.theme = { | |
enabled = false, | |
panelHeader = 'FFFFFF', | |
itemLabel = 'FFF3CC', | |
itemValue = 'CECECE', | |
itemValueAlt = 'DCDCDC' | |
} | |
-- Example: global config, specific player configs will override this. | |
synhud.global = { | |
enabled = false, | |
xbst = "Setting 1", | |
showIcons = true, | |
showHourlyItemRates = true, | |
useOutfit = false, | |
useLog = true | |
} | |
-- Example: single player config | |
synhud["First Character"] = { | |
enabled = false, | |
xbst = "Setting 1", | |
showIcons = true, | |
showHourlyItemRates = true, | |
useOutfit = true, | |
useLog = true | |
} | |
-- Example: multiple player config | |
synhud["Player Name, Second Name"] = { | |
enabled = false, | |
xbst = "Setting 1", | |
showIcons = false, | |
showHourlyItemRates = true, | |
useOutfit = true, | |
useLog = true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment