Cant figure out whats wrong here:
PHP Code:
#include <amxmodx>
#define VERSION "1"
new bunnies
public plugin_init()
{
register_plugin("Bunnies", VERSION, "P1raten")
}
public client_death(killer, victim, wpnindex, hitplace, TK) //Dont bother these.
{
bunnies++
set_hudmessage( 200, 100, 0, -1.0, 0.3, 0, 1.0, 5.0, 0.1, 0.2, 2 )
show_hudmessage( killer, "Bunnies:", bunnies )
}
__________________