ID:261515
 
I can't get the Flick function to work properly. Here's what I have,

mob
verb
Attack()
flick(usr, "MHeroAttack")

The only thing I can think of that would make this not work is that I have all of my main character icons in one DMI file, and when I have the fick function call the "MHeroAttack" icon_state, it doesn't know to do it for that specific character or not, so it just doesn't do anything at all. Any help would be apprecitated.

?The Wizard of How¿
The Wizard of How wrote:
I can't get the Flick function to work properly. Here's what I have,

mob
verb
Attack()
flick(usr, "MHeroAttack")

The only thing I can think of that would make this not work is that I have all of my main character icons in one DMI file, and when I have the fick function call the "MHeroAttack" icon_state, it doesn't know to do it for that specific character or not, so it just doesn't do anything at all. Any help would be apprecitated.

?The Wizard of How¿

mob/verb/Attack(mob/M in oview(2))
flick("MHeroAttack",usr)

Enjoy,
- TheWizard