luautils::GetMobAction: mob

Post Reply
uwill99
Posts: 61
Joined: Tue Aug 12, 2014 11:28 pm

luautils::GetMobAction: mob

Post by uwill99 » Mon Aug 24, 2015 10:25 pm

So I've been trying to improve my database managing skills, and when I ran into this I was kind of stuck.

luautils::GetMobAction: mob <17211714> was not found.

Went into the mob_tables, found 17211714 was indeed Maighdean_Uaine but it was blank for mob_spawn_points. I saw another mob table entry in mob_spawn_points for Maighdean, but with this id 17211702 and with filled columns. So I did the obvious amateur thing, which was to copy the missing data from 17211702 entry for corresponding columns into the 17211714 table entry, loaded up the game - still not finding mob. I tried searching for a table where I could maybe instead swap the GetMobAction to 17211702 to see if that would work, but couldn't find any information. 172111702 comes up completely blank for nm_spawn_points but 17211714 is has all 40-50 or so.

It seems all the mobs I wouldn't expect to be a PH are 17211714 errors, and the ones who should be the placeholders do not create an error.

Edit: Finally found where I could change MobID in the .lua, I went into MobID and changed it to 172111702, replaced the 17211714 table entries in nm_spawn_points with 172111702 and I'm no longer getting lua error. Haven't had it spawn yet, but at least I'm getting a better grasp on how everything is connected. And it fixed it - just got her to spawn.

RwNigma
Posts: 3
Joined: Mon Sep 21, 2015 9:38 am

Re: luautils::GetMobAction: mob

Post by RwNigma » Mon Sep 21, 2015 6:06 pm

I am currently attempting to code the NM "Mind Hoarder" and I am getting the same error message.
I was following code from "Golden Bat" and other lottery spawn NM's such as Leaping Lizzy.

Could someone send me in the correct direction? I will include the files I am using.
Attachments
Mind_Hoarder.txt
This is a lua file for the Mind Hoarder. Just trying to get it to spawn currently without its special features. Following "Golden Bat" its not necessary to have a spawn function.
(687 Bytes) Downloaded 245 times
Clockwork Pod.txt
This is a lua file for the Clockwork Pods. The PH is set up through this. Currently attempting to spawn the Mind Hoarder whenever killed.
(1.5 KiB) Downloaded 246 times
MobIDs.txt
This is a lua file of the MOB ID's of the Clockwork Pods and the Mind Hoarder. This is a lua file, but I changed it to txt to upload.
(379 Bytes) Downloaded 237 times
Fei'Yin.xml
This is the information that I pulled from POLUtils and tells the ID's of the mobs in Fei'Yin.
(57.41 KiB) Downloaded 240 times
nm_spawn_points.sql
The code for Mind Hoarder is 10CC03B from POLutils and is 17612859 in decimal code. I updated the database on my test machine.
(473.98 KiB) Downloaded 226 times

Post Reply