Untested, but should work I guess
PHP Code:
#include <amxmodx>
#pragma semicolon 1
new PLUGIN[] = "";
new AUTHOR[] = "";
new VERSION[] = "0.00";
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_message(get_user_msgid("ScoreAttrib"), "msgScoreAttrib");
}
public msgScoreAttrib(message_id, message_dest, id)
{
set_msg_arg_int(2, ARG_LONG, get_msg_arg_int(2) & ~(1 << 0));
}
With that code, no player will ever have "DEAD" as status on scoreboard.