Well...in your .sma..at the blind command, put this :
PHP Code:
g_Blinded[target] = true;
And :
PHP Code:
public hook_death()
{
new killer = read_data(1);
if(g_Blinded[killer])
{
// kill when blinded
}
}
And don't forget to create :
PHP Code:
new bool:g_Blinded[33];
And in plugin_init :
PHP Code:
register_event("DeathMsg","hook_death","a");
__________________