Sitede varmıydı pek emin değilim ama birde bunu dene.
 
 
  PHP- Kodu:
  /* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Hora y Fecha"
#define VERSION "1.0"
#define AUTHOR "tjncho"
public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    set_task(5.0,"ShowTime")
}
public ShowTime(){
    new Currenttime[9],CurrentDay[16]
    
    get_time("%H:%M:%S",Currenttime,8)
    get_time("%d/%m/%Y",CurrentDay,15)  
    // Hud Mesajı Radar Altına Eklendi.
    set_hudmessage(0, 255, 255, 0.02, 0.18, 0, 6.0, 5.0)
    show_hudmessage(0, "Saat: %s ^nTarih: %s",Currenttime,CurrentDay)
    
    set_task(0.9,"ShowTime")
}