What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Barb not enter portal to new level GP 2

it happens only on your WW build?
 
just ww and just with BarbarianWastesRolling.cs
maybe the problem is cause by
Code:
        public TrinityPower GetMovementPower(Vector3 destination)
        {
            // All walking is replaced by Whirlwind if possible.

            if (Skills.Barbarian.Whirlwind.CanCast() && !Player.IsInTown)
            {
                if (CurrentTarget == null || !(CurrentTarget.IsGizmo && CurrentTarget.RadiusDistance <= 1f))
                    return Whirlwind(destination);
            }

            return Walk(destination);
        }
 
Whats the difference with two routines? I've been running the Wastes Set + BulKathos Whirlwind by xzjv with great success.
 
Back
Top