Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.19 KB | None | 0 0
  1. --------------------------------------------------------------------------------
  2. -- Player Frame Configuration
  3. --------------------------------------------------------------------------------
  4. playerFrameEnabled = "yes"
  5. -- Player Frame Background Configuration
  6. playerFrameBackgroundEnabled = "yes"
  7. playerFrameBackgroundColorAlpha = 150
  8. playerFrameBackgroundColorRed = 0
  9. playerFrameBackgroundColorGreen = 0
  10. playerFrameBackgroundColorBlue = 0
  11. playerFrameBackgroundLocationX = 1000 --default 680
  12. playerFrameBackgroundLocationY = 600 -- default 890
  13. playerFrameBackgroundWidth = 300 -- default 204
  14. playerFrameBackgroundHeight = 100 -- default 54
  15. -- Player Frame TP Bar Configuration
  16. playerTpBarEnabled = "yes"
  17. playerTpBarWidth = playerFrameBackgroundWidth - 4 --default 200
  18. playerTpBarHeight = playerFrameBackgroundHeight - 49 -- default 5
  19. playerTpBarLocationX = playerFrameBackgroundLocationX + 2 --default 682
  20. playerTpBarLocationY = playerFrameBackgroundLocationY + 2
  21. -- Player Frame HP Bar Configuration
  22. playerHpBarEnabled = "yes"
  23. playerHpBarWidth = playerFrameBackgroundWidth - 4
  24. playerHpBarHeight = playerFrameBackgroundHeight - 16
  25. playerHpBarLocationX = playerFrameBackgroundLocationX + 2 --default 682
  26. playerHpBarLocationY = playerFrameBackgroundLocationY + 8
  27. -- Player Frame MP Bar Configuration
  28. playerMpBarEnabled = "yes"
  29. playerMpBarWidth = playerFrameBackgroundWidth - 4 -- default 200
  30. playerMpBarHeight = playerFrameBackgroundHeight - 49
  31. playerMpBarLocationX = playerFrameBackgroundLocationX + 2 --default 682
  32. playerMpBarLocationY = playerFrameBackgroundLocationY + 47
  33. -- Player Frame TP Text Configuration
  34. playerTpTextEnabled = "yes"
  35. playerTpTextFont = "Consolas Regular"
  36. playerTpTextFontSize = 12
  37. playerTpTextLocationX = playerFrameBackgroundLocationX + 6 --default 686
  38. playerTpTextLocationY = playerFrameBackgroundLocationY - 16
  39. playerTpTextFontColorAlpha = 255
  40. playerTpTextFontColorRed = 255
  41. playerTpTextFontColorGreen = 255
  42. playerTpTextFontColorBlue = 255
  43. playerTpTextFontAntiAliased = "yes"
  44. -- Player Frame HP Text Configuration
  45. playerHpTextEnabled = "yes"
  46. playerHpTextFont = "Consolas Regular"
  47. playerHpTextFontSize = 14
  48. playerHpTextLocationX = playerFrameBackgroundLocationX + 6 --default 686
  49. playerHpTextLocationY = playerFrameBackgroundLocationY + 18
  50. playerHpTextFontColorAlpha = 255
  51. playerHpTextFontColorRed = 255
  52. playerHpTextFontColorGreen = 255
  53. playerHpTextFontColorBlue = 255
  54. playerHpTextFontAntiAliased = "yes"
  55. -- Player Frame MP Text Configuration
  56. playerMpTextEnabled = "yes"
  57. playerMpTextFont = "Consolas Regular"
  58. playerMpTextFontSize = 12
  59. playerMpTextLocationX = playerFrameBackgroundLocationX + 6 --default 686
  60. playerMpTextLocationY = playerFrameBackgroundLocationY + 56
  61. playerMpTextFontColorAlpha = 255
  62. playerMpTextFontColorRed = 255
  63. playerMpTextFontColorGreen = 255
  64. playerMpTextFontColorBlue = 255
  65. playerMpTextFontAntiAliased = "yes"
  66.  
  67. --------------------------------------------------------------------------------
  68. -- Target Frame Configuration
  69. --------------------------------------------------------------------------------
  70. targetFrameEnabled = "yes"
  71. -- Target Frame Background Configuration
  72. targetFrameBackgroundEnabled = "yes"
  73. targetFrameBackgroundColorAlpha = 150
  74. targetFrameBackgroundColorRed = 0
  75. targetFrameBackgroundColorGreen = 0
  76. targetFrameBackgroundColorBlue = 0
  77. targetFrameBackgroundLocationX = 2000 -- default 1030
  78. targetFrameBackgroundLocationY = 400 -- default 890
  79. targetFrameBackgroundWidth = 204 -- default 204
  80. targetFrameBackgroundHeight = 54 -- default 54
  81. -- Target Frame HP Bar Configuration
  82. targetHpBarEnabled = "yes"
  83. targetHpBarWidth = targetFrameBackgroundWidth - 4
  84. targetHpBarHeight = targetFrameBackgroundHeight
  85. targetHpBarLocationX = targetFrameBackgroundLocationX + 2
  86. targetHpBarLocationY = targetFrameBackgroundLocationY + 2
  87. -- Target Frame HP Text Configuration
  88. targetHpTextEnabled = "yes"
  89. targetHpTextFont = "Consolas Regular"
  90. targetHpTextFontSize = 14
  91. targetHpTextLocationX = targetFrameBackgroundLocationX + 2
  92. targetHpTextLocationY = targetFrameBackgroundLocationY + 18
  93. targetHpTextFontColorAlpha = 255
  94. targetHpTextFontColorRed = 255
  95. targetHpTextFontColorGreen = 255
  96. targetHpTextFontColorBlue = 255
  97. targetHpTextFontAntiAliased = "yes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement