hi i have this code and how do i do so i show the message for all except one.
PHP Code:
public DeathMessage()
{
new Killer = read_data(1);
new VicTim = read_data(2);
if ( iPlayer && VicTim == iPlayer && is_user_connected(Killer) ) {
new KillName[32]
get_user_name(Killer, KillName, charsmax(KillName));
ColorChat(0, RED, "%s Mission Completed", Prefix); // i wont so iPlayer Can not see this one
ColorChat(0, RED, "%s %s killed a^3 wanted^1 player.", Prefix, KillName); // and this one
ColorChat(iPlayer, RED, "%s Mission Completed", Prefix);
}
}