PHP Code:
new target = cmd_target ( id , arg , 9 )
if(!is_user_alive(id)){
console_print(id, "[Bucov AMXX] %s nu este viu.", target)
return PLUGIN_HANDLED
}
Problem was there :
1. you don't check if target is different from 0 -> client_cmd(id, "kill") was sent to all players.
2. not related but still a problem, you was check if 'id' is alive instead of target.
__________________