bloque comando kill desde consola
#1
Hola, tengo un inconveniente y es que los jugadores pueden usar el comando "kill" en consola, quiero desactivar. quien me ayuda por favor
[Imagen: 76561198133508672.png]
*Aprendiendo mas y mas* Excitedeyes *poco a poco* Whatever
Responder
#2
Código PHP:
#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;  

Responder
#3
Gracias
[Imagen: 76561198133508672.png]
*Aprendiendo mas y mas* Excitedeyes *poco a poco* Whatever
Responder


Salto de foro:


Usuarios navegando en este tema: 1 invitado(s)