ID:852479
Jul 5 2012, 12:02 am (Edited on Jul 5 2012, 12:14 am)
|
|||||||
Not Feasible
| |||||||
What do you think about monsters being able to use skills at set chances? would it be possible for you to add that into the framework? or maybe a monster with ranged attacks.
|
Jul 5 2012, 3:26 am
|
|
you can check if(prob(what ever)) and then they shoot their secondary attack.
|
Enemies try to use all of their abilities every tick and are limited by cooldowns. If you want an enemy to only use an ability an average of once every five seconds, just give it a five second cooldown.
You can also handle this by making an ability that randomly does one of two things. For example: Ability The ability itself is used at a set interval but it's effect is random. You can also give each enemy a random chance to have an ability. For example: mob/enemy The enemy will still use all of its abilities whenever it can, but by randomly assigning abilities you're creating randomness in the outcome. |