• 🏆 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!

Hmz.

Status
Not open for further replies.
Level 10
Joined
Nov 3, 2009
Messages
686
Hello,

Can this cause server split ?

  • Charge
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • (Ability being cast) Equal to Charge [Q]
    • Actions
      • Wait 0.50 seconds
      • Unit - Set (Casting unit) movement speed to 999.00
      • Special Effect - Create a special effect attached to the chest of (Casting unit) using Abilities\Weapons\PhoenixMissile\Phoenix_Missile.mdl
      • Set ChargeEffect = (Last created special effect)
      • Unit - Order (Casting unit) to Attack (Target unit of ability being cast)
      • Unit - Set mana of (Casting unit) to ((Mana of (Casting unit)) + 12.00)
      • Wait 1.50 seconds
      • Special Effect - Destroy ChargeEffect
      • Wait 1.50 seconds
      • Unit - Set (Casting unit) movement speed to (Default movement speed of (Casting unit))
:) If not then what can cause server splits ?!

Thanks,

~Spoontoobig
 
Level 4
Joined
Jan 9, 2010
Messages
89
I don't think it will cause splits, but it's not MUI and movement speed is capped at 522. Use triggering unit instead of casting.
 
Level 18
Joined
Jan 21, 2006
Messages
2,552
Spoontoobig said:
Wait 1.50 seconds
Unit - Set (Casting unit) movement speed to (Default movement speed of (Casting unit))

You can't use a wait and then expect event responses to work properly all of the time. In this case, you may lose reference to (Casting unit).
 
Status
Not open for further replies.
Top