Button letters not showing up

04/10/2022 21:49 eunasciem#1
Hello!

I am having some issues with in game buttons not showing text. I've been adding some systems, like teleport, party finder etc, that opens new windows inside the game. However, even adding it to resdata.inc and resdata.txt.txt, no text appears on the buttons.

Example:
resdata.inc

resdata.txt.txt


But...

[Only registered and activated users can see links. Click Here To Register...]

The tooltip works tho (when I hover the button with the mouse and a text box appears with something written).

The same is happening with all buttons from other systems... any reason?

Thank you in advance!
04/10/2022 22:16 dpkidz#2
Since you are still using the old v15 theme, the text has to be photoshopped in.
With the v19 theme, some changes are done within the code so that text is written out on the buttons instead.

So in other words, to use that feature, look up any source with v19 theme and find the part that writes out text and add it in to your source
04/11/2022 04:32 styxhelix3#3
if you are using v15 theme. you need to make your own button with words in it.
04/15/2022 11:43 Miracle`#4
Replace it with this. This will fix your problem :)

Code:
APP_PARTY_FIND "WndTile00.tga" "" 1 624 384 0x2410000 26
{
// Title String
IDS_RESDATA_INC_010200
}
{
// ToolTip
IDS_RESDATA_INC_010201
}
{
    WTYPE_BUTTON WIDC_BUTTON1 "" 0 20 320 162 346 0x220010 0 0 0 0 0 0 0
    {
    // Title String
    IDS_RESDATA_INC_010202
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010203
    }
    WTYPE_BUTTON WIDC_BUTTON2 "" 0 172 320 315 345 0x220010 0 0 0 0 0 0 0
    {
    // Title String
    IDS_RESDATA_INC_010204
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010205
    }
    WTYPE_TEXT WIDC_TEXT1 "WndEditTile00.tga" 1 8 250 603 311 0x20020000 0 0 0 0 246 204 77
    {
    // Title String
    IDS_RESDATA_INC_010206
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010207
    }
    WTYPE_STATIC WIDC_STATIC1 "WndEditTile200.tga" 1 8 224 220 244 0x2220011 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010208
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010209
    }
    WTYPE_STATIC WIDC_STATIC2 "WndEditTile200.tga" 1 8 9 26 29 0x2220001 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010210
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010211
    }
    WTYPE_STATIC WIDC_STATIC3 "WndEditTile200.tga" 1 40 9 136 29 0x2220051 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010212
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010213
    }
    WTYPE_STATIC WIDC_STATIC4 "WndEditTile200.tga" 1 140 9 227 29 0x2220011 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010214
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010215
    }
    WTYPE_STATIC WIDC_STATIC5 "WndEditTile200.tga" 1 324 9 375 29 0x2220001 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010216
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010217
    }
    WTYPE_LISTBOX WIDC_LISTBOX1 "WndEditTile00.tga" 1 8 36 599 206 0x20020000 0 0 0 0 246 204 77
    {
    // Title String
    IDS_RESDATA_INC_010218
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010219
    }
    WTYPE_STATIC WIDC_STATIC6 "WndEditTile200.tga" 1 390 9 441 29 0x2220001 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010220
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010221
    }
    WTYPE_STATIC WIDC_STATIC52 "WndEditTile200.tga" 1 456 9 576 28 0x220050 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010228
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010229
    }
    WTYPE_STATIC WIDC_STATIC51 "WndEditTile200.tga" 1 258 9 309 29 0x2220001 0 0 0 0 196 196 196
    {
    // Title String
    IDS_RESDATA_INC_010222
    }
    {
    // ToolTip
    IDS_RESDATA_INC_010223
    }

}
04/25/2022 04:19 styxhelix3#5
you need to apply button fix for v19