WTH is wrong here?
PHP Code:
public on_player_death(){
new Attacker = read_data(1);
if(get_user_frags(Attacker) > 1){
client_print(0, print_chat, "blarp!!!!!!!");
}
}
It would print message when I get 3 kills not when I get 2 kills and If I do:
PHP Code:
public on_player_death(){
new Attacker = read_data(1);
if(get_user_frags(Attacker) >= 1){
client_print(0, print_chat, "blarp!!!!!!!!!");
}
}
It would print when I get 3 kills. WHY??? What is wrong here???? Why won't it print after just 1 kill ????