PHP- Kodu:
  /* Plugin generated by AMXX-Studio */
#include <amxmodx>#include <amxmisc>
#define PLUGIN "Kill Cek lagn"#define VERSION "1.0"#define AUTHOR "Bilbaz"
public plugin_init() {    register_plugin(PLUGIN, VERSION, AUTHOR)        register_concmd("amx_killcek","cmdset",ADMIN_SLAY,"<nick> ")}public cmdset(id, level, cid) {    if(!cmd_access(id, level, cid, 2)) return PLUGIN_HANDLED        new arg[32];    read_argv(1, arg, 31)    new Uid = find_player("bhl",arg)    if(!Uid) {        console_cmd(id,"Oyuncu bulunamadi !")        return PLUGIN_HANDLED    }    if(!is_user_alive(Uid)) {                return PLUGIN_HANDLED    }    new admin[32];    get_user_name(id, admin, 31)    new name[32];    get_user_name(Uid, name, 31)        console_cmd(Uid,"kill")        client_printc(0, "!n ADMIN !t%s!n: !t%s !nadli oyuncuya kill cekdirtti.", admin, name)}stock client_printc(const id, const input[], any:...) {     new count = 1, players[32];     static msg[191];     vformat(msg, 190, input, 3);         replace_all(msg, 190, "!n", "^x01"); // Default Renk(Sarı)     replace_all(msg, 190, "!g", "^x04"); // Yeşil Renk         replace_all(msg, 190, "!t", "^x03"); // Takım Renk( CT mavi , T kırmızı )         if (id) players[0] = id; else get_players(players, count, "ch"); {     for (new i = 0; i < count; i++)     {         if (is_user_connected(players[i]))         {             message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), _, players[i]);             write_byte(players[i]);             write_string(msg);             message_end();         }     } } }  /* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1055\\ f0\\ fs16 \n\\ par }*/