Guest User

Untitled

a guest
Apr 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.51 KB | None | 0 0
  1. // Red first place
  2. menuDef {
  3. name "Red scores"
  4. fullScreen MENU_FALSE
  5. visible MENU_TRUE
  6. rect 501 409.5 120 40
  7. ownerdrawflag CG_SHOW_ANYTEAMGAME
  8.  
  9. itemDef {
  10. name "Red box"
  11. rect 107 34 32 17
  12. visible 1
  13. style 1
  14. decoration
  15. backcolor 1 0 0 .4
  16. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  17. }
  18.  
  19. itemDef {
  20. name "Red score"
  21. ownerdraw CG_RED_SCORE
  22. rect 118 48 136 40
  23. textstyle 3
  24. visible 1
  25. forecolor 1 1 1 1
  26. textscale .3
  27. decoration
  28. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  29. }
  30.  
  31. itemDef {
  32. name "Red Flagicon"
  33. rect 90 34 16 16
  34. visible 1
  35. decoration
  36. ownerdraw CG_RED_FLAGSTATUS
  37. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  38. }
  39. }
  40.  
  41. // Red not first place
  42. menuDef {
  43. name "Red scores"
  44. fullScreen MENU_FALSE
  45. visible MENU_TRUE
  46. rect 501 405 120 40
  47. ownerdrawflag CG_SHOW_ANYTEAMGAME
  48.  
  49. itemDef {
  50. name "Red box"
  51. rect 107 55 32 17
  52. visible 1
  53. style 1
  54. decoration
  55. backcolor 1 0 0 .4
  56. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  57. }
  58.  
  59. itemDef {
  60. name "Red score"
  61. ownerdraw CG_RED_SCORE
  62. rect 118 70 136 40
  63. textstyle 3
  64. visible 1
  65. forecolor 1 1 1 1
  66. textscale .3
  67. decoration
  68. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  69. }
  70.  
  71. itemDef {
  72. name "Red Flagicon"
  73. rect 90 56 16 16
  74. visible 1
  75. decoration
  76. ownerdraw CG_RED_FLAGSTATUS
  77. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  78. }
  79. }
  80.  
  81. // Blue first place
  82. menuDef {
  83. name "Blue scores"
  84. fullScreen MENU_FALSE
  85. visible MENU_TRUE
  86. rect 50 409.5 120 40
  87. ownerdrawflag CG_SHOW_ANYTEAMGAME
  88.  
  89. itemDef {
  90. name "Blue box"
  91. rect 558 34 32 17
  92. visible 1
  93. style 1
  94. decoration
  95. backcolor 0 0 1 .4
  96. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  97. }
  98.  
  99. itemDef {
  100. name "Blue score"
  101. ownerdraw CG_BLUE_SCORE
  102. rect 568 47 136 40
  103. textstyle 3
  104. visible 1
  105. forecolor 1 1 1 1
  106. textscale .3
  107. decoration
  108. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  109. }
  110.  
  111. itemDef {
  112. name "Blue Flagicon"
  113. rect 541 34 16 16
  114. visible 1
  115. decoration
  116. ownerdraw CG_BLUE_FLAGSTATUS
  117. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  118. }
  119. }
  120.  
  121. // Blue not first place
  122. menuDef {
  123. name "Blue scores"
  124. fullScreen MENU_FALSE
  125. visible MENU_TRUE
  126. rect 501 405 120 40
  127. ownerdrawflag CG_SHOW_ANYTEAMGAME
  128.  
  129. itemDef {
  130. name "Blue box"
  131. rect 107 55 32 17
  132. visible 1
  133. style 1
  134. decoration
  135. backcolor 0 0 1 .4
  136. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  137. }
  138.  
  139. itemDef {
  140. name "Blue score"
  141. ownerdraw CG_BLUE_SCORE
  142. rect 118 70 136 40
  143. textstyle 3
  144. visible 1
  145. forecolor 1 1 1 1
  146. textscale .3
  147. decoration
  148. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  149. }
  150.  
  151. itemDef {
  152. name "Blue Flagicon"
  153. rect 90 56 16 16
  154. visible 1
  155. decoration
  156. ownerdraw CG_BLUE_FLAGSTATUS
  157. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  158. }
  159. }
  160.  
  161. // FFA & Duel scores
  162. menuDef {
  163. name "scores"
  164. fullScreen MENU_FALSE
  165. visible MENU_TRUE
  166. rect 615 437 120 40
  167. ownerdrawflag CG_SHOW_ANYNONTEAMGAME
  168.  
  169. itemDef {
  170. name "box"
  171. rect -7 6 32 17
  172. visible 1
  173. style 1
  174. decoration
  175. backcolor 0.3 0.3 0 .2
  176. ownerdrawflag CG_SHOW_IF_PLYR_IS_FIRST_PLACE
  177. }
  178.  
  179. itemDef {
  180. name "1stplace"
  181. ownerdraw CG_1STPLACE
  182. rect 0 20.5 90 40
  183. visible 1
  184. forecolor 1 1 1 1
  185. textscale .3
  186. decoration
  187. }
  188.  
  189. itemDef {
  190. name "box"
  191. rect -7 24 32 17
  192. visible 1
  193. style 1
  194. decoration
  195. backcolor 0.3 0.3 0 .2
  196. ownerdrawflag CG_SHOW_IF_PLYR_IS_NOT_FIRST_PLACE
  197. }
  198.  
  199. itemDef {
  200. name "2ndplace"
  201. ownerdraw CG_PLAYER_SCORE
  202. ownerdrawflag CG_SHOW_IF_PLYR_IS_NOT_FIRST_PLACE
  203. rect -34.5 -2.5 90 40
  204. visible 1
  205. forecolor 1 1 1 1
  206. textscale .3
  207. decoration
  208. }
  209.  
  210. itemDef {
  211. name "2ndplace"
  212. ownerdraw CG_2NDPLACE
  213. ownerdrawflag CG_SHOW_IF_PLYR_IS_FIRST_PLACE
  214. rect 0 38.5 90 40
  215. visible 1
  216. forecolor 1 1 1 1
  217. textscale .3
  218. decoration
  219. }
  220. }
  221.  
  222. // CA red first place
  223. menuDef {
  224. name "CA players"
  225. fullScreen MENU_FALSE
  226. visible MENU_TRUE
  227. rect 585 165 48 32
  228. ownerdrawflag CG_SHOW_CLAN_ARENA
  229.  
  230. itemDef {
  231. name "how many players red"
  232. rect 1 289 32 16
  233. visible 1
  234. textalign 2
  235. textscale .25
  236. forecolor 1 0 0 1
  237. decoration
  238. ownerdraw CG_RED_CLAN_PLYRS
  239. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  240. }
  241.  
  242. itemDef {
  243. name "("
  244. rect 0 288 136 40
  245. visible 1
  246. textalign 2
  247. textscale .2
  248. forecolor 1 1 1 0.4
  249. decoration
  250. text [
  251. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  252. }
  253.  
  254. itemDef {
  255. name ")"
  256. rect 17 288 136 40
  257. visible 1
  258. textalign 2
  259. textscale .2
  260. forecolor 1 1 1 0.4
  261. decoration
  262. text ]
  263. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  264. }
  265.  
  266. itemDef {
  267. name "how many players blue"
  268. rect 1 308 136 40
  269. visible 1
  270. textalign 2
  271. textscale .25
  272. forecolor 0 0 1 1
  273. decoration
  274. ownerdraw CG_BLUE_CLAN_PLYRS
  275. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  276. }
  277.  
  278. itemDef {
  279. name "("
  280. rect 0 307 136 40
  281. visible 1
  282. textalign 2
  283. textscale .2
  284. forecolor 1 1 1 0.4
  285. decoration
  286. text [
  287. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  288. }
  289.  
  290. itemDef {
  291. name ")"
  292. rect 17 307 136 40
  293. visible 1
  294. textalign 2
  295. textscale .2
  296. forecolor 1 1 1 0.4
  297. decoration
  298. text ]
  299. ownerdrawflag CG_SHOW_IF_RED_IS_FIRST_PLACE
  300. }
  301. }
  302.  
  303. // CA blue first place
  304. menuDef {
  305. name "CA players"
  306. fullScreen MENU_FALSE
  307. visible MENU_TRUE
  308. rect 585 165 48 32
  309. ownerdrawflag CG_SHOW_CLAN_ARENA
  310.  
  311. itemDef {
  312. name "how many players blue"
  313. rect 1 289 32 16
  314. visible 1
  315. textalign 2
  316. textscale .25
  317. forecolor 0 0 1 1
  318. decoration
  319. ownerdraw CG_BLUE_CLAN_PLYRS
  320. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  321. }
  322.  
  323. itemDef {
  324. name "("
  325. rect 0 288 136 40
  326. visible 1
  327. textalign 2
  328. textscale .2
  329. forecolor 1 1 1 0.4
  330. decoration
  331. text [
  332. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  333. }
  334.  
  335. itemDef {
  336. name ")"
  337. rect 17 288 136 40
  338. visible 1
  339. textalign 2
  340. textscale .2
  341. forecolor 1 1 1 0.4
  342. decoration
  343. text ]
  344. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  345. }
  346.  
  347. itemDef {
  348. name "how many players red"
  349. rect 1 308 136 40
  350. visible 1
  351. textalign 2
  352. textscale .25
  353. forecolor 1 0 0 1
  354. decoration
  355. ownerdraw CG_RED_CLAN_PLYRS
  356. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  357. }
  358.  
  359. itemDef {
  360. name "("
  361. rect 0 307 136 40
  362. visible 1
  363. textalign 2
  364. textscale .2
  365. forecolor 1 1 1 0.4
  366. decoration
  367. text [
  368. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  369. }
  370.  
  371. itemDef {
  372. name ")"
  373. rect 17 307 136 40
  374. visible 1
  375. textalign 2
  376. textscale .2
  377. forecolor 1 1 1 0.4
  378. decoration
  379. text ]
  380. ownerdrawflag CG_SHOW_IF_BLUE_IS_FIRST_PLACE
  381. }
  382. }
Add Comment
Please, Sign In to add comment