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

Elim tourny jump

Status
Not open for further replies.
here...
WHY IS THE CHAR LIMIT 15!!!
 

Attachments

  • Picture 2.png
    Picture 2.png
    54.6 KB · Views: 104
  • Picture 1.png
    Picture 1.png
    56.5 KB · Views: 104
  • Picture 3.png
    Picture 3.png
    51.6 KB · Views: 83
Level 1
Joined
Aug 5, 2005
Messages
4
Sorry for ressurecting a semi-dead thread, but there's a pretty vital mistake in it that's simple to fix in GroundHit_BounceJump.

Code:
if IsTerrainPathable(GetUnitX(u),GetUnitY(u), PATHING_TYPE_WALKABILITY) then

Should be...

Code:
if [B]not[/B] IsTerrainPathable(GetUnitX(u),GetUnitY(u), PATHING_TYPE_WALKABILITY) then

Before the unit would do the opposite of what you wanted him to; bounce around on flat terrain and get stuck in unpathable terrain.
 
Last edited:
Status
Not open for further replies.
Top