diff options
Diffstat (limited to 'Data/BuiltIn/Libraries/lua-addons/addons/scoreboard/data')
-rw-r--r-- | Data/BuiltIn/Libraries/lua-addons/addons/scoreboard/data/settings.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/lua-addons/addons/scoreboard/data/settings.xml b/Data/BuiltIn/Libraries/lua-addons/addons/scoreboard/data/settings.xml new file mode 100644 index 0000000..2478be1 --- /dev/null +++ b/Data/BuiltIn/Libraries/lua-addons/addons/scoreboard/data/settings.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" ?> +<settings> + <!-- + This file controls the settings for the Scoreboard plugin. + Settings in the <global> section apply to all characters + + The available settings are: + posX - x coordinate for position + posY - y coordinate for position + numPlayers - The maximum number of players to display damage for + bgTransparency - Transparency level for the background. 0-255 range + --> + <global> + <posX>10</posX> + <posY>250</posY> + <bgTransparency>200</bgTransparency> + <numPlayers>8</numPlayers> + <UpdateFrequency>0.5</UpdateFrequency> + </global> + + <!-- + You may also override specific settings on a per-character basis here. + --> +</settings> + |