BG2: Item descriptions the Icewind Dale Way
Baptor
Member Posts: 342
Hello everyone. I'm working on something for BG2 that I plan to share with everyone soon. One thing I am looking into is if there is a way to make the item inspection screen in BG2 look like the Icewind Dale one. In BG2 you get the description on the right and a sketch art on the left. In IWD there is no sketch art and the words take up the entire window. I tried just selecting "NONE" on the item window in NI but that just results in a blank sketch. I'm pretty sure there's actually not a way to do this but I still wanted to ask around before abandoning the idea.
0
Comments
Not that I know exactly what to look for - someone who has actually done interface modding would know more.
Yeah I don't know how to even access the interface tools. If anyone who does sees this please let me know where I should go next.
Alter the text's first area value to match the label's first area value.
356 -> 66
Increase the text's third area value by the difference between their first area values.
430 + (356 - 66) = 720
Delete the label.
@kjeron I can't find this file. I searched both my installation folder and the folder in Documents. Can you help me by telling me where to go to find this file?
I'm sure the answer lies in changing the numbers on one of the "label" entries below, but I am not sure which ones.
name 'ITEM_DESCRIPTION'
align center center
modal
label
{
area 0 0 864 710
mosaic GUIINVHI
}
label
{
area 81 11 700 44
text "ITEM_TITLE"
text style title
}
label
{
area 402 66 52 52
icon lua "itemDesc.item.icon"
}
label
{
area 57 170 295 40
text lua "itemDesc.item.name"
text align center center
text style "label"
text color '5'
}
text
{
area 66 210 720 353
text lua "itemDesc.item.description"
scrollbar 'GUISCRC'
text style "normal_parchment"
}
SoD already has the name centered and above, so there's no inherit conflict there.
label
{
area 70 190 295 40
text lua "itemDesc.item.name"
text align center center
text style "normal_parchment"
text color '5'
}
text
{
area 66 220 720 300
text lua "itemDesc.item.description"
scrollbar 'GUISCRC'
text style "normal_parchment"