Could prolly set a bool within Playermobile ie "IsHealing" make it start when they apply the bandage
if(pm.IsHealing)
{
pm.SendMessage("already healing,blabla");
return;
}
Then once the bandage either failed or applied, pm.IsHealing = false
Or you could even go with the BandageContext which...