Kod: Tümünü seç
//////////////////////////////////////////////
#include <amxmodx>
new syncObj;
public plugin_init()
{
register_plugin("ustyazi", "1.0", "ADDICTED")
register_event("HLTV", "Event_HLTV_New_Round", "a", "1=0", "2=0")
syncObj = CreateHudSyncObj()
}
public Event_HLTV_New_Round(id)
{
switch(random_num(1,2)){ //Kırmızı,Mavi,Sarı 1 tanesi rastgele geçer.
case 1:{
set_hudmessage(255, 0, 0, -1.0, 0.0, 2, 6.0, 2.0)
}
case 2:{
set_hudmessage(255, 255, 255, -1.0, 0.0, 2, 6.0, 2.0)
}
}
ShowSyncHudMsg(id, syncObj,"[ `XXX JailBreak Sunucu ] ^n [ Csxx.Csduragi.COM & 213.238.173.xx ] ^n [ Tsxx.Csduragi.host ]")
}