- Joined
- Mar 24, 2013
- Messages
- 1,105
Well I got this function off http://www.hiveworkshop.com/forums/miscellaneous-tutorials-456/about-movement-172309/
But for some reason its throwing me an error, and I'm sure its cause of my very limited knowledge of Jass, but maybe someone could tell me what I need to fix.
JASS:
library ParabolicMovement
function GetParabolaZ takes real x, real d, real h, returns real
return 4 * h * x (d -x) / (d * d)
endfunction
endlibrary
But for some reason its throwing me an error, and I'm sure its cause of my very limited knowledge of Jass, but maybe someone could tell me what I need to fix.