Ullikummi ??? server crash error

Volgin
Posts: 32
Joined: Sun Oct 13, 2013 10:27 pm

Ullikummi ??? server crash error

Post by Volgin » Sat Dec 14, 2013 12:10 am

Parameter was incorrect. Fixed. Credit to Imaulle (SinisterSkies) for taking initiative.

-Kat
Attachments
qm3.lua.patch
(383 Bytes) Downloaded 335 times

User avatar
whasf
Site Admin
Posts: 1312
Joined: Thu Jul 19, 2012 9:11 pm

Re: Ullikummi ??? server crash error

Post by whasf » Sat Dec 14, 2013 7:45 pm

thanks, but that's not what I'm seeing in the trunk code. it has:

Code: Select all

player:messageSpecial(NOTHING_HAPPENS);
Your patch is:

Code: Select all

player:messageSpecial(NOTHING_OUT_OF_ORDINARY);
and that textID doesn't exist.
-- Whasf

User avatar
TeoTwawki
Developer
Posts: 527
Joined: Mon Jul 15, 2013 9:50 pm

Re: Ullikummi ??? server crash error

Post by TeoTwawki » Sat Dec 14, 2013 9:38 pm

Code: Select all

-- General Texts
ITEM_CANNOT_BE_OBTAINED = 6377; -- You cannot obtain the item <item> come back again after sorting your inventory
          ITEM_OBTAINED = 6380; -- Obtained: <item>
           GIL_OBTAINED = 6381; -- Obtained <number> gil
       KEYITEM_OBTAINED = 6383; -- Obtained key item: <keyitem>

-- Other dialog
NOTHING_OUT_OF_ORDINARY = 7298; -- There is nothing out of the ordinary here.
           KIRIN_OFFSET = 7296; -- I am Kirin, master of the Shijin. The one who stands above all. You, who have risen above your mortal status to contend with the gods... It is time to reap your reward.
        SMALL_HOLE_HERE = 7285; -- There is a small hole here. It appears to be damp inside...
Is what I see in r4217
Hi, I run The Demiurge server.


Image
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
PLS USE [ code ] CODE TAGS [ /code ] WHEN POSTING CODE
DO NOT PRIVATE MESSAGE ME ABOUT BUGS

Imaulle
Posts: 6
Joined: Sat Dec 14, 2013 12:12 am

Re: Ullikummi ??? server crash error

Post by Imaulle » Sat Dec 14, 2013 11:29 pm

I changed it to NOTHING_OUT_OF_ORDINARY on my test server and it stopped the server crash, however the text doesn't say "There is nothing out of the ordinary here." it says something like you are not ready for what lies ahead

Volgin
Posts: 32
Joined: Sun Oct 13, 2013 10:27 pm

Re: Ullikummi ??? server crash error

Post by Volgin » Sun Dec 15, 2013 8:58 pm

forgottenandlost wrote:

Code: Select all

-- General Texts
ITEM_CANNOT_BE_OBTAINED = 6377; -- You cannot obtain the item <item> come back again after sorting your inventory
          ITEM_OBTAINED = 6380; -- Obtained: <item>
           GIL_OBTAINED = 6381; -- Obtained <number> gil
       KEYITEM_OBTAINED = 6383; -- Obtained key item: <keyitem>

-- Other dialog
NOTHING_OUT_OF_ORDINARY = 7298; -- There is nothing out of the ordinary here.
           KIRIN_OFFSET = 7296; -- I am Kirin, master of the Shijin. The one who stands above all. You, who have risen above your mortal status to contend with the gods... It is time to reap your reward.
        SMALL_HOLE_HERE = 7285; -- There is a small hole here. It appears to be damp inside...
Is what I see in r4217
This is what I see on my server as well. I dunno where you're getting <NOTHING_HAPPENS>, whasf.

Volgin
Posts: 32
Joined: Sun Oct 13, 2013 10:27 pm

Re: Ullikummi ??? server crash error

Post by Volgin » Wed Dec 18, 2013 11:34 pm

Anything for committing this...? Still crashes the server on public pservers, but I changed it to this and it now works on test server...

User avatar
kjLotus
Special Guest
Posts: 1813
Joined: Sun Jul 22, 2012 2:16 pm

Re: Ullikummi ??? server crash error

Post by kjLotus » Wed Dec 18, 2013 11:41 pm

Volgin wrote:Anything for committing this...?
whenever whasf stops being a dummy

User avatar
whasf
Site Admin
Posts: 1312
Joined: Thu Jul 19, 2012 9:11 pm

Re: Ullikummi ??? server crash error

Post by whasf » Thu Dec 19, 2013 9:01 pm

in scripts\zones\Alzadaal_Undersea_Ruins\TextIDs.lua I don't see the one you're referring to. that file hasn't changed since October of 2012
-- Whasf

User avatar
TeoTwawki
Developer
Posts: 527
Joined: Mon Jul 15, 2013 9:50 pm

Re: Ullikummi ??? server crash error

Post by TeoTwawki » Thu Dec 19, 2013 9:56 pm

whasf wrote:in scripts\zones\Alzadaal_Undersea_Ruins\TextIDs.lua I don't see the one you're referring to. that file hasn't changed since October of 2012
Wrong zone.

Ulli is a Sky NM in Shrine of Ru'Avitau.
Hi, I run The Demiurge server.


Image
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. - Martin Golding
PLS USE [ code ] CODE TAGS [ /code ] WHEN POSTING CODE
DO NOT PRIVATE MESSAGE ME ABOUT BUGS

Imaulle
Posts: 6
Joined: Sat Dec 14, 2013 12:12 am

Re: Ullikummi ??? server crash error

Post by Imaulle » Fri Dec 20, 2013 8:47 am

it's these 2 files that need fixin

Code: Select all

/scripts/zones/The_Shrine_of_RuAvitau/npcs/qm3.lua
/scripts/zones/The_Shrine_of_RuAvitau/TextIDs.lua

Post Reply