PHP- Kodu:
  client_cmd(id,"bind p +revle") // "p" yazan yere istediğin tuşu yazabilirsin... 
  
   PHP- Kodu:
  /* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <engine>
#include <hamsandwich>
#define PLUGIN "Aim Oyuncu Revle"
#define VERSION "1.0"
#define AUTHOR "JDM"
new bool:g_bRevle[33] = false
public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    register_clcmd("+revle","OyuncuRevle")
    register_logevent("eRoundStart",2,"1=Round_Start")
}
public client_connect(id) {
    client_cmd(id,"bind p +revle") // "p" yazan yere istediğin tuşu yazabilirsin...
}
public OyuncuRevle(id) {
    if(!is_user_alive(id)) return;
    
    new hedef, vucut
    get_user_aiming(id, hedef, vucut);
    
    if(is_valid_ent(hedef) && is_user_alive(hedef)) {
        g_bRevle[id] = true
        ExecuteHamB(Ham_CS_RoundRespawn,hedef)
        client_print(hedef, print_chat,"Tekrar Revlendiniz.")
        client_print(id, print_center,"Bir Oyuncuyu Revlediniz.")
    }
}
public eRoundStart() {
    new players[32], inum;
    static tempid
    get_players(players, inum) 
    for(new i;i<inum;i++) {
        tempid = players[i]
        g_bRevle[tempid] = false
    }
}