• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[JASS] Dummy Caster Multiple Cast Problem

Status
Not open for further replies.

Kazeon

Hosted Project: EC
Level 33
Joined
Oct 12, 2011
Messages
3,449
Hey, I have a problem here. I'm creating an ability with slow and curse effect. And I use dummy caster to cast those abilities to affected units. But my question is, can I use only one dummy caster? Because it seems not to work if I ordered the dummy caster to cast two abilities at once:
JASS:
call IssueTargetOrderById(DummyCaster, MISS_ORDER_ID, fog)
call IssueTargetOrderById(DummyCaster, SLOW_ORDER_ID, fog)
Mostly only one of those abilities is casted. But sometimes both are casted.

I have set the dummy caster's cast backswing and cast point to zero. The two abilities also have 0 cast time. Is it indeed impossible to order a single unit to cast two abilities at the same time?
 
Level 20
Joined
Aug 13, 2013
Messages
1,696
^ I dont know if a single unit can perform multi-cast, ( better to test 5 instant abilities casted at the sametime even when its cast time is 0. )

You better create another dummy unit per each unique casting ability :/
 
Status
Not open for further replies.
Top