 |
|
Junior Member
Join Date: Sep 2011
Location: Indonesia
|

09-28-2011
, 05:40
Re: [HELP] Knifekill_snapshot captures also other kill
|
#2
|
[SOLVED] using register_event("DeathMsg","knife_snapshot","a ","4&kni")
/* This Plugin was made by
* Almaro
*/
#include <amxmodx>
public plugin_init() {
register_plugin("KnifeKill_snapshot","1.1","A lmaro")
register_event("DeathMsg","knife_snapshot","a ","4&kni")
}
public knife_snapshot() {
new Killer = read_data(1) //get the killer ID for screenshot cmd
client_print(Killer, print_chat, "============= KNIFE KILL SNAPSHOT =============")
client_cmd(Killer,"wait;wait;wait;wait;wait;w ait;snapshot") //snapshot cmd issued by killer
}
|
|
|
|