Killing the same player without killing someone else in between ;p
also if I'm returning in this:
PHP Code:
if(++Kills[attacker][victim] >= 3)
return PLUGIN_HANDLED;
Is it good to have this: Kills[victim][attacker] = 0; after it ?
like:
PHP Code:
if(++Kills[attacker][victim] >= 3)
return PLUGIN_HANDLED;
Kills[victim][attacker] = 0;