Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1.  
  2. // FFA / DUEL SCORES
  3. menuDef {
  4. name "FFAColors"
  5. fullScreen MENU_FALSE
  6. visible MENU_TRUE
  7. ownerdrawflag CG_SHOW_ANYNONTEAMGAME
  8. rect 0 0 32 256
  9.  
  10. // FFA DUEL BG COLORS RED/GREEN
  11. itemDef {
  12. name "FFARXA1"
  13. ownerdrawflag CG_SHOW_IF_PLYR_IS_FIRST_PLACE
  14. rect 245 0 150 20
  15. visible 1
  16. decoration
  17. backcolor 0 1 0 0.5
  18. style 2
  19. }
  20. //FFA / DUEL SCORES - Player left side
  21. itemdef {
  22. name "redplace"
  23. ownerdrawflag CG_SHOW_IF_PLYR_IS_FIRST_PLACE
  24. ownerdraw CG_RED_SCORE
  25. rect 285 16 10 40
  26. visible 1
  27. textstyle 6
  28. textalign 0
  29. forecolor 1 1 1 1
  30. textscale .35
  31. decoration
  32. }
  33. itemdef {
  34. // PLAYER LEAD, ENEMY SCORE
  35. name "bluplace"
  36. ownerdrawflag CG_SHOW_IF_PLYR_IS_FIRST_PLACE
  37. ownerdraw CG_BLUE_SCORE
  38. rect 339 16 10 40
  39. textalign 2
  40. visible 1
  41. textstyle 6
  42. forecolor 1 1 1 1
  43. textscale .35
  44. decoration
  45. }
  46. itemDef {
  47. name "FFARXA1"
  48. ownerdrawflag CG_SHOW_IF_PLYR_IS_NOT_FIRST_PLACE
  49. rect 245 0 150 20
  50. visible 1
  51. decoration
  52. backcolor 1 0 0 0.5
  53. style 2
  54. }
  55. itemdef {
  56. // ENEMY LEAD
  57. name "redplace"
  58. ownerdrawflag CG_SHOW_IF_PLYR_IS_NOT_FIRST_PLACE
  59. ownerdraw CG_RED_SCORE
  60. rect 339 18 10 40
  61. visible 1
  62. textstyle 6
  63. textalign 0
  64. forecolor 1 1 1 1
  65. textscale .35
  66. decoration
  67. }
  68. itemdef {
  69. // ENEMY LEAD, PLAYER SCORE
  70. name "bluplace"
  71. ownerdrawflag CG_SHOW_IF_PLYR_IS_NOT_FIRST_PLACE
  72. ownerdraw CG_PLAYER_SCORE
  73. rect 285 18 10 40
  74. textalign 0
  75. visible 1
  76. textstyle 6
  77. forecolor 1 1 1 1
  78. textscale .35
  79. decoration
  80. }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement