Advertisement
RaZgRiZ

Extended Gamehud SVN 1.03

Dec 15th, 2012
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.79 KB | None | 0 0
  1. gamehud = [
  2.     format "%5^f7%1 ^f5[%2]^t^f2(%3)^f7%4" (getname) (getclientnum) (getteam) (
  3.         ? (timeremaining) (concat "^tTime:^f2" (timeremaining 1)) (? (m_edit (getmode)) "" "^f3Intermission")
  4.     ) (? (> (getfollow) -1) (
  5.         format "^f7Following: ^f0%1 ^f5[%2]^t%3(%4)^n" (getclientname (getfollow)) (getfollow) (
  6.             ? (=s (getclientteam (getfollow)) (getteam)) "^f1" "^f3"
  7.         ) (getclientteam (getfollow))
  8.     ) (
  9.         format "^f7Frags: ^f2%1 ^f7| Deaths: ^f2%2 ^f7| Acc: ^f2%3%%^f7^n%4KpD: ^f2%5 ^f7| DDpD: ^f2%6^n" (getfrags) (getdeaths) (getaccuracy) (
  10.             ? (|| [m_ctf (getmode)] [m_collect (getmode)]) (format "%1: ^f2%2^f7 | " (? (m_ctf (getmode)) "Flags" "Skulls") (getflags))
  11.         ) (procf (divf (max 0 (getfrags)) (max 1 (getdeaths))) 2) (procf (divf (gettotaldamage) (max 1 (getdeaths))) 2)
  12.     ))
  13. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement