Thread: Reset rank
View Single Post
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 04-23-2012 , 04:42   Re: Reset rank
#2

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

#define VERSION "0.0.1"
#define PLUGIN "Reset Score"

#define m_iDeaths 444

public plugin_init()
{
    
register_plugin(PLUGINVERSION"ConnorMcLeod")
    
register_clcmd("say /reset""ClCmd_Reset")
}

public 
ClCmd_Resetid )
{
    
set_pev(idpev_frags0.0)
    
set_pdata_int(idm_iDeaths0)
    
ExecuteHam(Ham_Add_Pointsid01)
    
client_print(idprint_chat"Ton score est remis a zero !!")

__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline