Still don't work in this situation:
Code:
public DeathMsg()
{
new iKiller = read_data( 1 );
new iVictim = read_data( 2 );
if(g_bMapBanned || !is_user_connected(iVictim) || !is_user_connected(iKiller))
return PLUGIN_HANDLED
if(!g_pdAFKData[ iVictim ][ IsAFK ])
{
pdData[iKiller][Kills]++;
}
else
{
ChatColor(iKiller, "!g* !yPlayer !g%s is!teamAFK !ykill doesn't count!")
return PLUGIN_HANDLED
}
return PLUGIN_HANDLED
}
__________________