For CS:
PHP Code:
#define OFFSET_CSDEATHS 444
#define fm_set_user_deaths(%1,%2) set_pdata_int(%1,OFFSET_CSDEATHS ,%2)
You will then need to update scoreboard manually with this method:
PHP Code:
message_begin(MSG_ALL , g_MsgScoreInfo );
write_byte(id);
write_short(iFrags);
write_short(iDeaths);
write_short(0);
write_short(iTeam);
message_end();
__________________