#1: When registering Ham_Killed, I want it to display a chat message, but still show who was killed. For example:
PHP Code:
if( cs_get_user_team(iVictim) == CS_TEAM_T && cs_get_user_team(iAttacker) == CS_TEAM_CT )
{
client_print( id, print_chat, "Bool1 = true!" )
return PLUGIN_HANDLED;
}
Since I have return PLUGIN_HANDLED, it wont display at the top right that the CT killed the T. It will only display the message.
What should I return so it will display the message, but the plugin wont execute passed that if statement.
__________________