Advertisement
Guest User

Untitled

a guest
Mar 10th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. #include <amxmodx>
  2.  
  3.  
  4.  
  5. #define PLUGIN "New Plug-in"
  6.  
  7. #define VERSION "1.0"
  8.  
  9. #define AUTHOR "eDward /R/"
  10.  
  11.  
  12.  
  13. new site
  14.  
  15.  
  16.  
  17. #define TASK_INTERVAL 3.0
  18.  
  19.  
  20.  
  21. public plugin_init()
  22.  
  23. {
  24.  
  25. register_plugin( PLUGIN, VERSION, AUTHOR );
  26.  
  27. set_task( TASK_INTERVAL, "RandomHudWithRandomColors", 0, "", 0, "b" );
  28.  
  29. site = register_cvar("amx_site","www.indungi.ro");
  30.  
  31. }
  32.  
  33.  
  34.  
  35. public RandomHudWithRandomColors()
  36.  
  37. {
  38.  
  39. new timeleft = get_timeleft()
  40.  
  41. new map[33]
  42.  
  43. get_mapname(map,32)
  44.  
  45.  
  46.  
  47. new forum[51]
  48.  
  49. get_pcvar_string(site,forum,50)
  50.  
  51.  
  52.  
  53. set_hudmessage( random(255), random(255) , random(255), -1.0, 0.04 )
  54.  
  55. show_hudmessage( 0, "TimeLeft: %d:%02d | %s | Harta: %s", timeleft / 60, timeleft % 60, forum, map )
  56.  
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement