Dene bakalım ;
 
/toplanti yazdığın zaman aktif hale gelir , /toplantibitti yazdığın zaman ise sonlandırılır .
 
NOT : EL SONU inaktif duruma gelir.. 
 
  PHP- Kodu:
  /* 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(255, 255, 255, -1.0, 0.33, 0, 1.0, 1.0)
    ShowSyncHudMsg(0, syncObj,"TOPLANTIMIZ BASLAMAK UZERE SLOT VE ADMINLER TS YE GIRSIN^n^nTOPLANTIMIZ BASLAMAK UZERE SLOT VE ADMINLER TS YE GIRSIN^n^nTOPLANTIMIZ BASLAMAK UZERE SLOT VE ADMINLER TS YE GIRSIN")
}
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);
} 
  
  sesi atmayı unutmuşum buyur belki hoşuna gider 