Swirling Vortex in Valkurm Dunes

Forum rules
NO LONGER BEING MAINTAINED!
Post Reply
starlightknight
Posts: 25
Joined: Sun Apr 06, 2014 11:43 am

Swirling Vortex in Valkurm Dunes

Post by starlightknight » Tue Apr 15, 2014 5:51 pm

I'm seeing an interesting issue with the Swirling Vortex in Valkurm Dunes after updating the server code this morning. The swirling vortex appears to be off by one on npc_id, and yet isn't at the same time.

When I click on the Swirling Vortex, the server tries to load:

[18:38:15][Debug] CLIENT Starlightknight PERFORMING ACTION 00
[18:38:17][Info] parse: 01A | 06D1 06D0 08 from user: Starlightknight
[18:38:17][Error] luautils::OnTrigger: cannot open scripts/zones/Valkurm_Dunes/n
pcs/14.lua: No such file or directory

When I look at the POLUtils dump, I see this (30140402_2):

<thing type="MobListEntry">
<field name="id">17199726</field>
<field name="name">Swirling Vortex</field>
</thing>

And...

17199726 -> 106726E -> 26E -> 622

In the db, we have:

INSERT INTO `npc_list` VALUES (622,'Swirling_Vortex',0,420.057,0.000,-199.905,32769,40,40,0,0,0,0,3,0x0000340000000000000000000000000000000000,0,103);
INSERT INTO `npc_list` VALUES (623,'14',0,420.057,0.000,-199.905,32786,40,40,0,0,0,0,2075,0x0000D10200000000000000000000000000000000,32,103);

So even though it matches POLUtils dump in the db at 622, its still trying to load the next npc up, 623, which is leading it to try and load 14.lua instead of Swirling_Vortex.lua.

I'm not sure why this is - any ideas?

-SLK

Post Reply