Bunu dene.

PHP- Kodu:
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Tarih ve Saat"
#define VERSION "1.0"
#define AUTHOR "tjncho"

new sync;

public 
plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
set_task(5.0,"ShowTime")
    
sync CreateHudSyncObj();
}
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(25525500.020.1806.05.0)
    
ShowSyncHudMsg(0sync"Saat: %s^nTarih: %s",Currenttime,CurrentDay)
    
    
set_task(0.9,"ShowTime")