Jump to content

Question

Posted (edited)

hello mxc i need some help with this code

i want to make rush impact take 50 range but with this code only goes in front of target always, i want to go on which location skill is casted with 50 range

not front please help me

 

video here:

 

 

code here

public final Location getFlyLocation(L2Character target, Skill skill)
	{
		if (target == null)
		{
			target = this;
		}
		
		int sign = 1;
		
		Location toLoc = null;
		int heading = target == this ? getHeading() : target.getHeading();
		double radian = Util.convertHeadingToRadian(heading);
		
		if (target != this)
		{
			toLoc = new Location(target.getX() + (int) (Math.sin(radian) * 40), target.getY() + (int) (Math.cos(radian) * 40), target.getZ());
		}
		else
		{
			toLoc = new Location(target.getX() + (int) (Math.sin(radian) * (skill.getFlyRadius() * (-sign))), target.getY() + (int) (Math.cos(radian) * (skill.getFlyRadius() * sign)), target.getZ(), heading);
		}
		
		if (isFlying())
		{
			return toLoc;
		}
		
		return GeoData.getInstance().moveCheck(this, toLoc);
	}

 

Edited by GoldenNightmare

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...