Advertisement
Guest User

colortest

a guest
Jan 15th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.79 KB | None | 0 0
  1. colors = {}
  2. colors[1] = 'Menu > Font Colors > Chat > Immediate vicinity ("Say")'
  3. colors[2] = 'Menu > Font Colors > Chat > Wide area ("Shout")'
  4. colors[4] = 'Menu > Font Colors > Chat > Tell target only ("Tell")'
  5. colors[5] = 'Menu > Font Colors > Chat > All party members ("Party")'
  6. colors[6] = 'Menu > Font Colors > Chat > Linkshell group ("Linkshell")'
  7. colors[7] = 'Menu > Font Colors > Chat > Emotes'
  8. colors[17] = 'Menu > Font Colors > Chat > Messages ("Message")'
  9. colors[142] = 'Menu > Font Colors > Chat > NPC Conversations'
  10. colors[20] = 'Menu > Font Colors > For Others > HP/MP others loose'
  11. colors[21] = 'Menu > Font Colors > For Others > Actions others evade'
  12. colors[22] = 'Menu > Font Colors > For Others > HP/MP others recover'
  13. colors[60] = 'Menu > Font Colors > For Others > Beneficial effects others are granted'
  14. colors[61] = 'Menu > Font Colors > For Others > Detrimental effects others receive'
  15. colors[63] = 'Menu > Font Colors > For Others > Effects others resist'
  16. colors[28] = 'Menu > Font Colors > For Self > HP/MP you loose'
  17. colors[29] = 'Menu > Font Colors > For Self > Actions you evade'
  18. colors[30] = 'Menu > Font Colors > For Self > HP/MP you recover'
  19. colors[56] = 'Menu > Font Colors > For Self > Beneficial effects you are granted'
  20. colors[57] = 'Menu > Font Colors > For Self > Detrimental effects you receive'
  21. colors[59] = 'Menu > Font Colors > For Self > Effects you resist'
  22. colors[8] = 'Menu > Font Colors > System > Calls for help'
  23. colors[50] = 'Menu > Font Colors > System > Standard battle messages'
  24. colors[121] = 'Menu > Font Colors > System > Basic system messages'
  25.  
  26. for v = 0, 255, 1 do
  27.     if(colors[v] ~= nil) then
  28.         windower.add_to_chat(v, "Color "..v..": "..colors[v])
  29.     else
  30.         windower.add_to_chat(v, "Color "..v..": This is some random text to display the color.")
  31.     end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement