Advertisement
emsixteen

EmSixTeen

Dec 26th, 2008
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. Delete these lines:
  2.  
  3. //GAME TIME
  4. itemDef {
  5. name "Timer"
  6. textalign 0
  7. style 0
  8. rect 201 18 50 12
  9. visible 1
  10. textstyle 3
  11. decoration
  12. forecolor 0.73 0.73 0.73 0.7
  13. textscale .22
  14. ownerdraw CG_LEVELTIMER
  15. }
  16. itemDef {
  17. name "roundTimer"
  18. textalign 0
  19. style 0
  20. rect 201 29 50 12
  21. visible 1
  22. textstyle 3
  23. decoration
  24. forecolor 0.73 0.73 0.73 0.7
  25. textscale .22
  26. ownerdraw CG_ROUNDTIMER
  27. }
  28. itemDef {
  29. name "timerIcon"
  30. rect 186 8 14 14
  31. style 1
  32. backcolor 0 0 0 0.7
  33. background "icons/icon_time.tga"
  34. visible 1
  35. decoration
  36. }
  37. itemDef {
  38. name "timerIcon"
  39. rect 185 7 14 14
  40. style 1
  41. backcolor 1 1 1 0.7
  42. background "icons/icon_time.tga"
  43. visible 1
  44. decoration
  45. }
  46.  
  47. Then go back to the top, and just before 'ADVERT AREA', put this:
  48.  
  49. // ** TIMER ** //
  50.  
  51. // Should change places depending on solo/team gametype, to avoid the overlay
  52.  
  53. menuDef {
  54. name "teamclock"
  55. fullScreen MENU_FALSE
  56. visible MENU_TRUE
  57. ownerdrawflag CG_SHOW_ANYTEAMGAME
  58.  
  59. itemDef {
  60. name "timer"
  61. textalign 2
  62. style 0
  63. rect 200 33 50 15
  64. visible 1
  65. textstyle 1
  66. decoration
  67. forecolor 1 1 1 1
  68. textscale .65
  69. ownerdraw CG_LEVELTIMER
  70. }
  71. }
  72.  
  73. menuDef {
  74. name "soloclock"
  75. fullScreen MENU_FALSE
  76. visible MENU_TRUE
  77. ownerdrawflag CG_SHOW_ANYNONTEAMGAME
  78.  
  79. itemDef {
  80. name "timer2"
  81. textalign 2
  82. style 0
  83. rect 295 25 50 15
  84. visible 1
  85. textstyle 1
  86. decoration
  87. forecolor 1 1 1 1
  88. textscale .65
  89. ownerdraw CG_LEVELTIMER
  90. }
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement