I would register prethink and check in there if user button +attack.
Like this:
Code:
public plugin_init()
{
register_forward(FM_PlayerPreThink, "fm_playerthink", 1)
}
public fm_playerthink(id)
{
if(pev(id, pev_button) & IN_ATTACK)
{
// do something
}
}
What do you mean with "model is cell"?
greetz regalis
__________________