• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

BLaCK ARmOR 3

This bundle is marked as useful / simple. Simplicity is bliss, low effort and/or may contain minor bugs.
This map is for helping me cause i followed arrow movement tutorial on youtube but i think i made a great work but still it still wont work please help me and fix the problem so i can make my map better dont change terrain.

Keywords:
warcraft,help,trigger,movement,arrow,black,armor,3,eternity,campaign,rpg,terrain,object,new,pending,map
Contents

BLaCK ARmOR 3 (Map)

Reviews
14:13, 30th Aug 2008 Septimus: Please do not upload such a map in the future, post it at tutorial instead.

Moderator

M

Moderator

14:13, 30th Aug 2008
Septimus: Please do not upload such a map in the future, post it at tutorial instead.
 
Level 8
Joined
Dec 8, 2007
Messages
312
You must change Movement and Turning trigger. This should fix the problem:

  • Movement and Turning
    • Events
      • Time - Every 0.01 seconds of game time
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • UpTrue Equal to True
        • Then - Actions
          • Set Location[2] = ((Position of Unit) offset by Speed towards Angle degrees)
          • Unit - Move Unit instantly to Location[2]
          • Custom script: call RemoveLocation(udg_Location[2])
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Speed Less than or equal to 3.00
            • Then - Actions
              • Set Speed = (Speed + 0.03)
              • Set AnimationSpeed = (AnimationSpeed + 0.01)
            • Else - Actions
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • DownTrue Equal to True
        • Then - Actions
          • Set Location[2] = ((Position of Unit) offset by Speed towards Angle degrees)
          • Unit - Move Unit instantly to Location[2]
          • Custom script: call RemoveLocation(udg_Location[2])
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • Speed Greater than -3.00
            • Then - Actions
              • Set Speed = (Speed - 0.03)
              • Set AnimationSpeed = (AnimationSpeed - 0.01)
            • Else - Actions
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • RightTrue Equal to True
        • Then - Actions
          • Set Angle = (Angle - 1.00)
        • Else - Actions
          • Unit - Make Unit face Angle over 0.00 seconds
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • LeftTrue Equal to True
        • Then - Actions
          • Set Angle = (Angle + 1.00)
        • Else - Actions
          • Unit - Make Unit face Angle over 0.00 seconds
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • UpTrue Equal to False
          • DownTrue Equal to False
        • Then - Actions
          • Set Speed = 0.00
          • Wait 0.05 seconds
          • Animation - Play Unit's stand animation
          • Set AnimationSpeed = 0.00
        • Else - Actions
But next time you should use Triggers & Scripts forum insted of uploading map here.
 
Top