This works perfectly on my Windows server, on the linux one not, i can't see the message. I uploaded everything fine, code:
PHP Code:
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
register_event("DeathMsg", "eDeath", "a");
}
public eDeath()
{
new killer = read_data( 1 );
new victim = read_data( 2 );
new weapon[8]
read_data(4, weapon, 7)
new szNameK[32], szNameV[32];
get_user_name(killer, szNameK, 31);
get_user_name(victim, szNameV, 31);
if (killer != victim && equal(weapon, "awp"))
{
client_print(0, print_chat, "%s killed someone with the AWP!", szNameK);
}
}