29-01-14, 18:56
DENE Bİ GÜZEL CSAY ŞEKLİNDE KODLADIM, ALT ALTA. rengı açık mavimi desem turkuazmı
Code:
/* Plugin generated by AMXX-Studio */#include <amxmodx>
#include <amxmisc>
#define PLUGIN "Toplanti"
#define VERSION "1.0"
#define AUTHOR "kApo"
new syncObj;
new const TOPLANTIUYARI[] = { "sounds/jailbreak/toplantiuyari.wav" }
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /toplanti" , "Toplanti",ADMIN_RCON)
register_clcmd("say /toplantibitti" , "ToplantiBitti",ADMIN_RCON)
register_logevent("RoundEnd",2,"1=Round_End")
syncObj = CreateHudSyncObj()
}
public plugin_precache() {
precache_sound(TOPLANTIUYARI)
}
public Toplanti(id){
set_task(2.0, "ToplantiUyarisi", 0,_, _, "b");
}
public ToplantiUyarisi(id){
console_cmd(0,"spk jailbreak/toplantiuyari")
set_hudmessage(42, 170, 255, 0.42, 0.20, 0, 6.0, 10.0)
show_hudmessage(id, "SLOTLUK ICIN [F6] TUSUNA BASINIZ^nVEYA SAY'A /ts3 YAZINIZ.")
}
public ToplantiBitti(id){
for(new i; i<33; i++) {
if(task_exists(i)) remove_task(i)
}
}
public RoundEnd(id){
for(new i; i<33; i++) {
if(task_exists(i)) remove_task(i)
}
}
public client_disconnect(id){
remove_task(id);
}