View Single Post
kiki33hun
Veteran Member
Join Date: Jul 2011
Location: Magyarország
Old 03-20-2012 , 07:43   Re: Block Kill
Reply With Quote #6

Quote:
-,-
http://forums.alliedmods.net/showthread.php?p=624040
http://forums.alliedmods.net/showthread.php?p=349975

and

PHP Code:
#include <amxmodx> 
#include <fakemeta> 

public plugin_init() { 
    
register_plugin("Block Kill Command""1.0""xPaw"); 
    
register_forward(FM_ClientKill"fwdClientKill"); 


public 
fwdClientKill(id) { 
    if(!
is_user_alive(id)) 
        return 
FMRES_IGNORED

    
client_print(idprint_chat"[AMXX] You can't kill yourself!"); 
    
client_print(idprint_console"[AMXX] You can't kill yourself!"); 
    return 
FMRES_SUPERCEDE

__________________

Last edited by kiki33hun; 03-20-2012 at 07:44.
kiki33hun is offline