• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Mob Id

    Discussion in 'Community Developer Forum' started by razzle, May 21, 2015.

    1. razzle

      razzle Member

      Joined:
      Nov 3, 2012
      Messages:
      189
      Likes Received:
      1
      Trophy Points:
      18
      Where do I find the Mob ID numbers? I am try to write my first grind routine and need the mob id. Would like to have a reference so I can write more in the future.
       
    2. torfin

      torfin New Member

      Joined:
      Sep 18, 2014
      Messages:
      10
      Likes Received:
      0
      Trophy Points:
      0
      You can find the Mob Id by searching for the name of the mob on xivdb.com. For example if you search for "Water Sprite" you will find the mob on the following page: xivdb.com/?monster/56/Water-Sprite. The number 56 is the mob id - it's part of the url.
       
    3. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,345
      Likes Received:
      383
      Trophy Points:
      83
      Code:
      
      Log("{0}-{1}",Core.Target,Core.Target.NpcId);
      string str = String.Format("<HotSpot XYZ=\"{0},{1},{2}\" Radius=\"75\" />",Core.Target.Location.X,Core.Target.Location.Y,Core.Target.Location.Z);
      Log(str);
      
      in the console
       
    4. razzle

      razzle Member

      Joined:
      Nov 3, 2012
      Messages:
      189
      Likes Received:
      1
      Trophy Points:
      18

      Thank you i was kinda hoping there was a file somewhere where i could print a hard copy for reference but this will work.
       
    5. Mr McGibblets

      Mr McGibblets Member

      Joined:
      May 20, 2014
      Messages:
      485
      Likes Received:
      12
      Trophy Points:
      18
      I'm working on one but its slow tedious work. I'm on page 4 of 96. There are 2870 mob ID's listed between lodestone and xivdb.
       
    6. qq12345

      qq12345 New Member

      Joined:
      May 5, 2015
      Messages:
      36
      Likes Received:
      0
      Trophy Points:
      0
      I think it might be possible to use regex or something and a simple batch file to pull this and input them into a file, I'm really really really out of touch, though!
       
    7. Mr McGibblets

      Mr McGibblets Member

      Joined:
      May 20, 2014
      Messages:
      485
      Likes Received:
      12
      Trophy Points:
      18
      I don't have the skills/knowledge to know how to do that. I have been doing it all by hand by opening the mobs page and grabbing a portion of the url for the ID. Main things needed are Mob Name and Mob ID (bolded portions of the url) com/?monster/1980/129th-Order-priest

      So if somebody knows how to pull it all and have it dumped, I can do the sort work. I also noticed not all of the mobs listed on the Lodestone mob list are listed on the xivdb. Also vice versa, there are mobs on xivdb with id's that are not on the lodestone.

      For reference I was pulling this list here: Search - Final Fantasy XIV : A Realm Reborn (FFXIV ARR) Database There all enemies database sorted by alpha in list view.
       
      Last edited: May 26, 2015
    8. Psicu

      Psicu New Member

      Joined:
      Feb 1, 2015
      Messages:
      20
      Likes Received:
      3
      Trophy Points:
      0
      Mr McGibblets and y2krazy like this.

    Share This Page