This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5  (Read 6670 times)

Synric

  • Registred Member
  • Polygonshifter
  • *****
  • Posts: 57
    • View Profile
[RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« on: June 28, 2016, 05:34:22 pm »
Here is itemdisplayinfo.dbc, current as of 21737. Im not sure it'll be possible to do this again, because AFAIK Blizz removed filedatacomplete which contained every one of the paths we needed here.

A few notes:

- It's not perfect. I had to recreate it from a combination of itemdisplayinfomaterialres, dbc_itemappearance, dbc_texturefiledata and dbc_modelfiledata. It took me around 80 separate queries to get all the data together, in the correct format, and modified for use in 3.3.5. Each one was done by hand. There is bound to be some errors left over.

- I deleted any item displays that contained no data (Basically when it was in my DB I ran a search for all the records that contained no models or textures and only contained default values for the different columns, and deleted those. Roughly... 500 or so? I think it was.)

- If you want the actual models you'll have to convert them yourself. Its not hard, and all the tools you need are somewhere on either this site or model-changing.net.

- I'm not going to recreate the item.dbc file. I am using these for art assets for my built-from-the-ground-up server so I had no need for WoW's items. But if someone does so feel free to send me a link or upload it here, I'll add it to this post.

- I may do this, time permitting, for creaturedisplayinfo as well. On the same note I won't be doing creaturedisplayinfoextra for the same reasons as above.

- If you stumble across an item that doesn't work go into the DBC and find the item display ID. There are some that had racial endings. I think I got them all, but there are a lot of items. (I.e.: if the helms model reads Helm_Circlet_C_01_bef.mdx it should be Helm_Circlet_C_01.mdx.

As a courtesy to myself who took the time to do this and to anyone else who may be interested in this file, if you find an error please either report it to me or fix it and reupload it.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

MR. Farrare

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 963
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #1 on: July 17, 2016, 05:47:38 pm »
thanks man
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

darksoke

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 20
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #2 on: August 23, 2016, 08:57:33 pm »
icons don't work for any of the items
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

elireth123

  • Registred Member
  • BLP Convertor
  • *****
  • Posts: 14
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #3 on: August 24, 2016, 09:42:47 pm »
Ok, you'r my god now. That's it, ¿where ritual i should do for you?. Kill a virgin o someting like tha. no?.. .jajajaja
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Shakar

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 16
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #4 on: August 27, 2016, 06:08:12 pm »
Quote from: "darksoke"
icons don't work for any of the items
From my understanding to have the icons appear you need to edit the item.dbc with the item added to it you need the icon for. Without editing this, all items in WotLK servers that are not normally in the game (AKA custom items) will have red "?" as their icon. Weapons and armor can be equiped by click/draging them but they can't use "Use:" effects properly without being placed on an actionbar. From what I see here, just the display stuff was released on this post specifically, meaning it's up to us to get the rest working.

For OP, this release is great ^^

///Edit///
Actually I see what the person I quoted was talking about. Perhaps the best way to counter this would be to simply add the items we need/want manually to our own DBC file to counter every item having a broken icon.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

darksoke

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 20
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #5 on: August 28, 2016, 11:13:12 pm »
Quote from: "Shakar"
Quote from: "darksoke"
icons don't work for any of the items
From my understanding to have the icons appear you need to edit the item.dbc with the item added to it you need the icon for. Without editing this, all items in WotLK servers that are not normally in the game (AKA custom items) will have red "?" as their icon. Weapons and armor can be equiped by click/draging them but they can't use "Use:" effects properly without being placed on an actionbar. From what I see here, just the display stuff was released on this post specifically, meaning it's up to us to get the rest working.

For OP, this release is great ^^

///Edit///
Actually I see what the person I quoted was talking about. Perhaps the best way to counter this would be to simply add the items we need/want manually to our own DBC file to counter every item having a broken icon.

yeah :D i managed to set almost all icons on each item i want to use :) a few hours work but it worth every second :)

here is a preety simple way to do it but is mostly a hackfix.
most items icon have the same name as the model for example inv_axe_2h_artifactmaw_d_02.blp have the model axe_2h_artifactmaw_d_02.md2.

create a database table for itemdisplayinfo.dbc and set the icon with the following query

update itemdisplayinfo set iconname=replace(concat('inv_',modelname),'.md2','');
this are the steps the following query actually do
inv_->inv_axe_2h_artifactmaw_d_02.mdx->inv_axe_2h_artifactmaw_d_02
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Shakar

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 16
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #6 on: September 09, 2016, 12:20:22 am »
Looking into the dbc the op provided, I found what the issue is for the broken icons :(

Basically, none of the entries in the dbc file above have an icon set in the icon column. Taking a look at the original DBC file taken out of a wrath client (3.3.5a) I found the displays had entries for the icons while the same entries for the DBC here did not.

I personally don't know if the icons are controlled elsewhere in Legion's file setups sadly, but now I must scour the many icons in Legion to find the artifacts and import them manually.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

PassCody

  • Registred Member
  • GM Isle Explorer
  • *****
  • Posts: 24
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #7 on: November 11, 2016, 07:17:41 pm »
Hi +rep for posting.

I have one question.

Where can I get the rest of the Items so the .m2, .skin and .blp files?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

funkybeatz15

  • Registred Member
  • MWCS Enthusiast
  • *****
  • Posts: 2
    • View Profile
Re: [RELEASE] [WotLk] Legion ItemDisplayInfo.dbc for 3.3.5
« Reply #8 on: August 06, 2017, 06:08:44 pm »
Hi,

any chance to do smth. like that again? :D