HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. /*
  2. * AMX X Mod script.
  3. *
  4. * (c) Copyright 2007, jas0n
  5. * This file is provided as is (no warranties).
  6. */
  7.  
  8. #include <amxmodx>
  9.  
  10. /*
  11. * ShowTime displays the time and date on the top-center of the client
  12. * display as a hudmessage.
  13. *
  14. * History:
  15. * v0.1: - first release
  16. */
  17.  
  18.  
  19. public show_time(){
  20.  
  21. new ctime[64], cdate[64]
  22. get_time("%H:%M:%S", ctime, 63)
  23. get_time("%d.%m.%Y", cdate, 63)
  24. set_hudmessage(0,200,0,0.83,0.01,0, 1.0, 1.0, 0.1, 0.2, 13)
  25. show_hudmessage(0,"Ido: %s^nDatum: %s", ctime, cdate)
  26. return PLUGIN_CONTINUE
  27. }
  28.  
  29. public plugin_init()
  30. {
  31. register_plugin("ShowTime","0.2","jas0n")
  32. set_task(1.0, "show_time",0,"",0,"b")
  33. return PLUGIN_CONTINUE
  34. }