The Dink Network

Reply to Re: Why Can't I Quit You, DinkC?

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
December 17th 2013, 12:06 PM
wizardg.gif
leprochaun
Peasant He/Him Japan bloop
Responsible for making things not look like ass 
In the dmod I'm currently working on- in which enemies all have their own special ability, I run everything through their hit() proc. Which made me change from running things via wait() commands. They're still there at the end of the proc in case it doesn't get hit for a while. But most enemies tend to activate abilities based on number of hits taken or percentage of health lost. Others cast spells through the attack() proc, or just activate by chance.

You might be able to use a set_callback_random(); to cast the healing every 2 seconds. I'm not sure if that breaks upon another proc being called or not.