you dont need the
Code:
if(buttons & IN_USE)
part.
you can remove this
Code:
register_forward(FM_CmdStart, "CmdStart")
public CmdStart(id, uc_handle, random_seed)
{
if(!is_user_alive(id)) return FMRES_IGNORED
static buttons
buttons = get_uc(uc_handle, UC_Buttons)
buttons &= ~IN_USE
set_uc(uc_handle, UC_Buttons, buttons)
return FMRES_IGNORED
}