EP4 Mob Code Lists

05/30/2011 14:41 Gedronter#1
Ok I have been all over here looking for a EP4 mob code list having no luc. If anyone has one or can point me in the right direction would be great. Thanks
05/31/2011 05:47 Triade015#2
i have every list you could possibly need, and i would gladely hand over my code lists, if you give me your skype id or an e-mail addy ill send it to you
05/31/2011 05:55 castor4878#3
he already has all possible lists or has no server and any list is useless.

the intermediate reply, he doesn't know to do a "select MobID from Mobs", make any advice impossible, they won't be understood.
05/31/2011 06:53 RebeccaBlack#4
There are multiple "Mob Lists" available... I'd say the main one would be called "PS_GameDefs" (get it?)

Using simple queries on that database, would get you the information you need. I.E.
Code:
SELECT * FROM PS_GameDefs.dbo.Mobs WHERE MobName LIKE '%Cryptic The Immortal%'
The above would get you all the listings of 'Cryptic The Immortal' which has mob IDs, and all the information you'd need.

If that doesn't work for you, you could do:
Code:
SELECT * FROM PS_GameDefs.dbo.Mobs
Execute it, then right-click the results and save as .csv
There you go, your own Excel mob ID list
06/01/2011 11:47 dary3113#5
With me, I get the monster.sdata and view it with the Shaiya studio to see the Mob ID
08/21/2011 08:36 Gedronter#6
I know I am a bit late on saying something here. But at the time when I was asking for the list my mobs were still written in Korean and I needed the list to change there names to English in the SQL. But thanks to shStudio that made the task easy. So at this point I am good. So thanks to those that wanted to help out.
04/24/2014 08:51 Aya889#7
Quote:
Originally Posted by Triade015 View Post
i have every list you could possibly need, and i would gladely hand over my code lists, if you give me your skype id or an e-mail addy ill send it to you

([Only registered and activated users can see links. Click Here To Register...]):(I need the list mann send me that to my email adress pls
04/24/2014 10:43 nubness#8
Quote:
Originally Posted by Aya889 View Post
([Only registered and activated users can see links. Click Here To Register...]):(I need the list mann send me that to my email adress pls
That post was made in 2011. You should better just query your database to get the list of mobs, as follows:
Code:
USE PS_GameDefs
SELECT MobID, MobName FROM Mobs