I don't think he meant to put that <font> thing. Just do as he said before,
PHP Code:
#include < amxmodx >
#include < fakemeta >
#include < hamsandwich >
#define MULTIPLY 2.0
public plugin_init ( )
RegisterHam ( Ham_TakeDamage, "player", "ham_player_damage" );
public ham_player_damage ( e_Victim, e_Inflictor, e_Attacker, Float:f_Damage, m_DamageBits )
{
if ( g_ExtraDamage[e_Attacker] && m_DamageBits & ( DMG_NEVERGIB | DMG_BULLET ) )
{
pev ( e_Victim, pev_dmg_take, f_Damage );
SetHamParamFloat ( 4, f_Damage * MULTIPLY );
}
}
With...
PHP Code:
// ------
new g_ExtraDamage[ 33 ];
/* rest of your code */
case 8:// Extra Dmg Class
{
StripUserWeapons(id)
cs_set_user_defuse (id, 1)
give_item ( id, "weapon_knife" )
g_ExtraDamage[ id ] = 1;
client_print(id, print_chat,"%s You have chosen the Extra Damage Class.", PREFIX);