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.

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • 🚀 IronLock Shield - Closed Beta Update Hello everyone, Since our first announcement, IronLock Shield has received several major protection upgrades. IronLock Shield is a security platform developed specifically for Lineage II Interlude servers, focused on launcher integrity, runtime protection, session security, and anti-bot hardening. Current protection features: ✓ Secure Launcher Architecture ✓ HWID-Based Licensing ✓ Signed Launcher Session System ✓ Gateway Session Verification ✓ Automatic Session Revoke on Critical Detection ✓ Replay Protection with Nonce Validation ✓ Runtime Integrity Verification ✓ Secure Update System Client-side protections: ✓ Anti-Debug Protection ✓ Anti-Dump Protection ✓ DLL Injection Detection ✓ Manual Map Detection ✓ Remote Thread Detection ✓ Runtime Patch Detection ✓ Suspicious Handle Detection ✓ Memory Read / Write Guard ✓ Strict DLL Hash / Allowlist Control ✓ Launcher Self-Protection ✓ Watchdog Protection Bot and automation hardening: ✓ Adrenaline / Memory Reader Hardening ✓ Runtime Decoy Memory Regions ✓ Fake Pointer-Chain / Offset Noise ✓ Per-Build Mutation System ✓ Pointer Scan Disruption ✓ Virtual Keyboard Input Detection ✓ Hookless Virtual Mouse Click Detection ✓ Raw Input Based Mouse Verification Server and gateway security: ✓ Signed Launcher-to-Server Requests ✓ Build ID Binding ✓ HWID Binding ✓ IP / Session Binding ✓ Expired Session Blocking ✓ Revoked Session Blocking ✓ Gateway Runtime Session Checks ✓ Critical Detection Reporting Panel Recent improvements: ✓ Improved protection against memory-reading bots ✓ Added decoy pointer-chain memory traps ✓ Added per-build mutation data ✓ Added stricter process handle policy ✓ Added hookless virtual mouse click detection ✓ Improved watchdog stability to reduce false positives ✓ Improved session revoke logic for critical detections ✓ Updated website and protection feature list IronLock Shield is currently in closed beta. Selected Lineage II Interlude server owners can receive 1 month of free access in exchange for testing and feedback. Website: https://ilshield.com If you are interested, feel free to send me a private message or contact me through Discord. Thank you.
    • Contacts for communication. Telegram https://t.me/a_dvertising_man Telegram short link @a_dvertising_man   Delta Chat https://i.delta.chat/#11D46642C67CF6BDD4BD6430EB8AE99106CC54D7&v=3&i=u1npSLMZpUfcnWi5FGHNBn-1&s=GjBgI7oXKcuCXGl1acvt0tcp&a=p2norrc0e%40nine.testrun.org&n=advertisingman Hello. I participate in "forum deal" in role middleman. Paid services in graphic design,garant service(https link to profile) is provided only from buyer. Please write me in messenger for contact who are you by nationality and in which country you live.   I will not conduct deals with buyers and sellers from Ukraine. I do not cooperate with country Ukraine. If you Ukrainian by nationality or live in Ukraine,ignore this topic. If you other nationality: paid service from garant service buyer pays using own money.   Garant service(https link to profile) provided only from buyer. Buyer provides address guarantor service(https link to profile) or multiple addresses guarantors services. If seller don't like this garant service address(seller may doubt whether he will receive money from this garant service),then buyer offers another address garant service or multiple addresses guarantors services. If neither address seller doesn't like,then buyer is leaving from me.   Buyer deposits full amount to payment details guarantor service, plus my commission(my percent above amount for service in graphic design). In "forum questionnaire" buyer writes: payment details from seller,payment details seller i will send to buyer in advance via messenger.   Paid creation avatar and banner(price depends from complexity work). Paid creation visuals for music releases,for promo art(price depends from complexity work). Original posters using stock images(price depends from complexity work). Design for social media:covers,previews(price depends from complexity work). Other paid services in graphic design(price depends from complexity work).  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..