
Originally Posted by
Brainpower
Could be the same issue I had years ago on an old source.
If so it would only bug when you go in an instance (height * 4).
I think we cheaphaxed it at the time by doing height % 4 somewhere.
No.
What you are doing is just creating the object of projectile and not actually sending it.
Why are you returning the projectile? To wherever you are returning it, add
Aka example
Code:
Projectile p = new Projectile(character, target, 554, 62, 80, 31, 43, 0);
p.sendProjectile();
or even
Code:
new Projectile(character, target, 554, 62, 80, 31, 43, 0).sendProjectile();