HLMOD.HU Forrás Megtekintés
- www.hlmod.hu#include <amxmodx>
#include <colorchat>
#define PLUGIN "Round data"
#define VERSION "1.0"
#define AUTHOR "ibi"
new hs,kill
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("DeathMsg","eDeath","a")
register_logevent("log_end",2,"1=Round_End")
}
public eDeath(id){
if(read_data(1)){
hs+=1
kill+=1
}else{
kill+=1
}
}
public log_end(id){
ColorChat(0,RED,"^x01Ebben a korben ^x04%d ^x01ember halt meg,ebbol ^x04%d ^x01fejest kapott!",kill,hs)
kill=0
hs=0
}