Better use CMDSTART, it is better than PRETHINK for what you want to do ;).
PHP Code:
// PLUGIN_INIT()
register_forward(FM_CmdStart, "fw_cmdstart")
public fw_cmdstart(id, uc, seed)
{
if (!is_user_alive(id))
return FMRES_IGNORED
static buttons
buttons = get_uc(uc_handle, UC_Buttons)
// Here do what shine did! but instead of SET_PEV use SET_UC
}
__________________