Thread: Zero Deaths 1.1
View Single Post
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 03-19-2011 , 14:14   Re: Zero Deaths 1.1
Reply With Quote #22

set_user_deaths

Plugin doesn't compile at all (except with web compiler that generates a 2Mo file).

If you want the same feature, you can try :
PHP Code:
#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>

#define VERSION    "2.0"

#define XO_PLAYER 5
#define m_iDeaths 444

public plugin_init()
{
    
register_plugin("Zero Deaths"VERSION"ConnorMcLeod")
    
RegisterHam(Ham_Killed"player""CBasePlayer_Killed")
}

public 
CBasePlayer_Killedid )
{
    
set_pdata_int(idm_iDeaths, -1XO_PLAYER)

__________________
- tired and retired -

- my plugins -

Last edited by ConnorMcLeod; 03-19-2011 at 14:24.
ConnorMcLeod is offline