Quote:
Originally Posted by Blizzard_87
Pastout last activity was almost 5 months ago...
so i would assume he wont reply to your post in his thread...
posting a screen shot may help.
|
I know, thats why Im posting here! Its to see if others beside him can help.
Quote:
Originally Posted by Compidence
It's not a bug, it's a feature. I would assume to keep the identity of the killer a secret, so the CTs don't know who has the weapon if the killer decides to hide their weapon and rejoin the game.
PHP Code:
// Hide Terrorist's name/give points for kill by Kruegs (soccdooccs)
if (get_bit(g_bIsConnected, attacker) && get_bit(g_bIsAlive, attacker) && get_user_team(attacker) == 1)
{
if(g_bHeadShot[attacker][victim])
{
g_bHeadShot[attacker][victim] = false;
cs_set_user_money(attacker, g_iPoints[attacker] += get_pcvar_num(cvar_pointer[cvar_headshotpoints]), 1);
}
else
{
cs_set_user_money(attacker, g_iPoints[attacker] += get_pcvar_num(cvar_pointer[cvar_killpoints]), 1);
}
SaveData(attacker);
ExecuteHamB(Ham_Killed, victim, 0, shouldgib);
set_pev(attacker, pev_frags, pev(attacker, pev_frags) + 1.0);
return HAM_SUPERCEDE;
}
|
Thank you very much! Could you help me making it disable for events and Last Requests? Enabled just for normal Kills? Thanks!