Alright so I'm using make_deathmsg but there is an argument.
Since the fourth param has to be const, can I do this:
PHP Code:
public eDeath( iVictim, iAttacker )
{
new iWeapon[33];
if( cs_get_user_team(iVictim) == CS_TEAM_T )
{
iWeapon[iAttacker] = get_user_weapon( iAttacker )
make_deathmsg( iAttacker, iVictim, 0, iWeapon )
return PLUGIN_HANDLED;
}
}
__________________