Quote:
Originally Posted by Bugsy
This is client-side and cannot be done using a plugin.
|
You can hide or alter the scoreboard flags with ScoreAttrib message(check
https://wiki.alliedmods.net/Half-Lif...ts#ScoreAttrib).
PHP Code:
#include <amxmodx>
#include <hamsandwich>
new gmsgScoreAttrib
public plugin_init()
{
RegisterHam(Ham_Killed, "player", "CBasePlayer_Killed", true)
gmsgScoreAttrib = get_user_msgid("ScoreAttrib")
}
public CBasePlayer_Killed(Victim)
{
if(is_user_connected(Victim))
{
message_begin(MSG_ALL, gmsgScoreAttrib)
{
write_byte(Victim)
write_byte(0)
message_end()
}
}
}
@OP, try this.
__________________