in
plmenu.sma change an if statement on line 508 from this
PHP Code:
if (!cmd_access(id, level, cid, 1))
return PLUGIN_HANDLED
to this
PHP Code:
//global variable
can_slay[id]
if (!cmd_access(id, level, cid, 1) && can_slay[id])
return PLUGIN_HANDLED
public client_disconnet(id) {
can_slay[id] = 0
}
all you have to do now is create some sort of way to change the can_slay[index] variable to true on certain occasions.