PHP Code:
#include <amxmodx>
#include <hamsandwich>
public plugin_init()
{
register_event( "DeathMsg" , "knife_death" , "a" , "4=knife" );
}
public knife_death()
{
//The 2 is the extra points awarded
ExecuteHam( Ham_AddPoints , read_data( 1 ) , 2 , true );
}
__________________