Jump to content
  • 0

[HELP] Spawnlist heading field


Question

Posted

Hey Everybody,

 

I'm wondering if anybody can explain a bit how the field 'heading' in spawnlists works. I understand it has to do with it's orentation in the world, but I'm a bit confused as to exactly how. I've come across http://l2jserver.com/old-forum/print.php?threadid=19502&page=1&sid=89e0e7b2d6409b8bb9e1ad26aeff132e but that doesn't really shed any light.

 

0OdsZ.jpg

 

Obviously I'd like to have the npc as flush against the wall as possible, so I want to manually put the values in instead of just spawning it haphazardly in the world.

6 answers to this question

Recommended Posts

  • 0
Posted

An easy way to spawn something with good heading is to use //spawn command ingame. If you target nothing, it will spawn according your actual heading.

 

About heading, that's just degrees, and so far (from what I rem) that goes from 0 to 65000. Following that rule, you can expect the following to be true.

 

              32500 (back)

16250(right side)      48750 (left side)

          0    65000 (face)

 

If the max heading value isn't 65k, well do changes according... You got the point.

 

About what direction is supposed to show 0 (east west north south) to be honest, I have no idea. Just test ingame.

 

PS : config.developer setted to true show your actual position (and heading). It can be useful to you if you don't want to use //spawn.

 

Regards, Tk.

  • 0
Posted

An easy way to spawn something with good heading is to use //spawn command ingame. If you target nothing, it will spawn according your actual heading.

 

About heading, that's just degrees, and so far (from what I rem) that goes from 0 to 65000. Following that rule, you can expect the following to be true.

 

              32500 (back)

16250(right side)      48750 (left side)

          0    65000 (face)

 

If the max heading value isn't 65k, well do changes according... You got the point.

 

About what direction is supposed to show 0 (east west north south) to be honest, I have no idea. Just test ingame.

 

PS : config.developer setted to true show your actual position (and heading). It can be useful to you if you don't want to use //spawn.

 

Regards, Tk.

 

Hi Tryskell,

 

Thanks for the help. Afterwards I searched for heading in the project and found:

// Calculate and set the heading of the L2Character
int heading = (int) (Math.atan2(-sin, -cos) * 10430.378350470452724949566316381);
heading += 32768;
setHeading(heading);

 

Discovering yea, the heading is polar coordinates. The max here I believe is 32768, when I do half of that the rotation is 180 degrees. I'm trying to place my buffers flush with the church in Dion where it's not on 90 degree angles, so I guess I have to do a bit of math first.

 

Thanks again for the reply.

  • 0
Posted

Well, I confirm with a player you can obtain 65303 and such number. I'm bad on math so don't speak of polar, sinus or cosinus :D.

 

On L2Npc you got such formulas :

mob.setHeading(Rnd.nextInt(61794));

which means too the number is around 60k max for NPC too.

 

You can too simply check spawnlist.sql and check what is the biggest heading written inside. Lol.

 

Btw, my formula about heading is as following :

 

	public final static int calculateHeadingFrom(int obj1X, int obj1Y, int obj2X, int obj2Y)
{
	double angleTarget = Math.toDegrees(Math.atan2(obj2Y - obj1Y, obj2X - obj1X));
	if (angleTarget < 0)
		angleTarget = 360 + angleTarget;
	return (int) (angleTarget * 182.044444444);
}

 

And guess what, 360 * 182,044444444 equals 65536.

  • 0
Posted

Well, I confirm with a player you can obtain 65303 and such number. I'm bad on math so don't speak of polar, sinus or cosinus :D.

 

On L2Npc you got such formulas :

mob.setHeading(Rnd.nextInt(61794));

which means too the number is around 60k max for NPC too.

 

You can too simply check spawnlist.sql and check what is the biggest heading written inside. Lol.

 

Btw, my formula about heading is as following :

 

	public final static int calculateHeadingFrom(int obj1X, int obj1Y, int obj2X, int obj2Y)
{
	double angleTarget = Math.toDegrees(Math.atan2(obj2Y - obj1Y, obj2X - obj1X));
	if (angleTarget < 0)
		angleTarget = 360 + angleTarget;
	return (int) (angleTarget * 182.044444444);
}

 

And guess what, 360 * 182,044444444 equals 65536.

 

Well that makes sense too, but it's still weird. I actually did my math based on (degree) * 91.02; 360 * 91.02 = 32768 and 720 * 91.02 = 65534.4 (close nuff); Though your example is basically mine doubled. I'll just assume that yours is correct. By my values I manged to line the buffers up ok:

 

J9BPl.jpg

 

  • 0
Posted

Well dunno which pack you're using, my calcul came from my IL pack refactored using L2J Freya (8 months old).

 

Seems you use old IL not refactored.

 

Yea, it's just the normal l2j interlude distro from the old nightlies folder.

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...