CSPLague
Radar altı saat - Printable Version

+- CSPLague (https://www.csplague.com)
+-- Forum: CS 1.6 Plugin (Eklenti) Bölümü (https://www.csplague.com/forumdisplay.php?fid=6)
+--- Forum: [İSTEK] Cs 1.6 Plugin İstek Bölümü (https://www.csplague.com/forumdisplay.php?fid=80)
+---- Forum: Çözülmüş İstekler (https://www.csplague.com/forumdisplay.php?fid=87)
+---- Thread: Radar altı saat (/showthread.php?tid=8501)



Radar altı saat - caglarinhesap - 04-09-13

Resimde olduğu gibi radar altında aynı bu şekilde saat ve tarih istiyorum , teşekkürler.


https://u1309.hizliresim.com/1f/4/s8msf.bmp


Cevap: Radar altı saat - JDM - 04-09-13

Sitede varmıydı pek emin değilim ama birde bunu dene.


PHP Code:
/* 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(PLUGINVERSIONAUTHOR)
    
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(02552550.020.1806.05.0)
    
show_hudmessage(0"Saat: %s ^nTarih: %s",Currenttime,CurrentDay)
    
    
set_task(0.9,"ShowTime")




Cevap: Radar altı saat - caglarinhesap - 04-09-13

Rengi sarımı ne renk?


Cevap: Radar altı saat - peNgueN - 04-09-13

Sarı.


Cevap: Radar altı saat - akcaliberkk - 04-09-13

Bu şekilde de yapabilirsin

new curTime[32]
get_time("Saat: %H:%M:%S ^nTarih: %d/%m/%Y",curTime,31)


Cevap: Radar altı saat - caglarinhesap - 05-09-13

Saolun beyler


Cevap: Radar altı saat - JDM - 05-09-13

Çözülmüş İsteklere taşındı.


Cevap: Radar altı saat - JDM - 05-09-13

caglarinhesap dateline='' Wrote: Resimde olduğu gibi radar altında aynı bu şekilde saat ve tarih istiyorum , teşekkürler.


https://u1309.hizliresim.com/1f/4/s8msf.bmp

  • Hud mesaj rengi sarı olarak değiştirildi.
  • Saat ve Tarih yazısı tekrar düzenlendi.

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

#include <amxmodx>
#include <amxmisc>

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

public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
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.(Mesaj rengi sarı olarak değiştirildi)
    
set_hudmessage(25525500.020.1806.05.0)
    
show_hudmessage(0"Saat: %s^nTarih: %s",Currenttime,CurrentDay)
    
    
set_task(0.9,"ShowTime")
}  
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }
*/