- Joined
- Jun 5, 2008
- Messages
- 2,573
I was wondering is there a chance to cast two spell in the exact same moment, that is in the exact second because i have spells of type:
Also when using Leak check 1.3 when having the
Need help about that.
- Event - Unit finishes casting an ability
- Condition - Ability being cast equal to *myability1*
-
Actions - Set Temp_Point1 = target point of ability being cast
- Special effect - create at Temp_Point1 using *myeffect1*
- Set Temp_Effect1 = last created effect
- Unit - Cause casting unit to damage area centered at Temp_Point1 with size *myAOE* of type *myType*
- Custom script: call RemoveLocation(udg_Temp_Point1)
- wait *random time scaling from 0.3-1 second*(depending on the spell animation speed)
- Destroy Temp_Effect1
- Event - Unit finishes casting an ability
- Condition - Ability being cast equal to *myability2*
-
Actions - Set Temp_Point1 = target point of ability being cast
- Special effect - create at Temp_Point1 using *myeffect2*
- Set Temp_Effect1 = last created effect
- Unit - Cause casting unit to damage area centered at Temp_Point1 with size *myAOE2* of type *myType2*
- Custom script: call RemoveLocation(udg_Temp_Point1)
- wait *random time scaling from 0.3-1 second*(depending on the spell animation speed)
- Destroy Temp_Effect1
Also when using Leak check 1.3 when having the
- Special effect create at unit/point
- Set Temp_Effect = last created effect
Need help about that.