Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] Good afternoon, can it be that the table locales_gossip is a little different from TC?

[DiscordArchive] Good afternoon, can it be that the table locales_gossip is a little different from TC?

[DiscordArchive] Good afternoon, can it be that the table locales_gossip is a little different from TC?

Pages (3): Previous 1 2 3 Next
rektbyfaith
Administrator
0
01-19-2019, 10:19 PM
#11
Archived author: Shin • Posted: 2019-01-19T22:19:26.177000+00:00
Original source

I guess now it's `gossip_menu_option_locale`
rektbyfaith
01-19-2019, 10:19 PM #11

Archived author: Shin • Posted: 2019-01-19T22:19:26.177000+00:00
Original source

I guess now it's `gossip_menu_option_locale`

rektbyfaith
Administrator
0
01-19-2019, 10:19 PM
#12
Archived author: Shin • Posted: 2019-01-19T22:19:32.035000+00:00
Original source

check what Winfi linked
rektbyfaith
01-19-2019, 10:19 PM #12

Archived author: Shin • Posted: 2019-01-19T22:19:32.035000+00:00
Original source

check what Winfi linked

rektbyfaith
Administrator
0
01-19-2019, 10:19 PM
#13
Archived author: stevej • Posted: 2019-01-19T22:19:42.874000+00:00
Original source

It used to be like that, and now it's like that. I don't understand how to create scripts. In TC I can't find anything in the wiki. Maybe it was a question, not a claim.
rektbyfaith
01-19-2019, 10:19 PM #13

Archived author: stevej • Posted: 2019-01-19T22:19:42.874000+00:00
Original source

It used to be like that, and now it's like that. I don't understand how to create scripts. In TC I can't find anything in the wiki. Maybe it was a question, not a claim.

rektbyfaith
Administrator
0
01-19-2019, 10:19 PM
#14
Archived author: stevej • Posted: 2019-01-19T22:19:48.170000+00:00
Original source


[Image: estructura_nueva.png?ex=690c7644&is=690b...3aba102f4&]
rektbyfaith
01-19-2019, 10:19 PM #14

Archived author: stevej • Posted: 2019-01-19T22:19:48.170000+00:00
Original source


[Image: estructura_nueva.png?ex=690c7644&is=690b...3aba102f4&]

rektbyfaith
Administrator
0
01-19-2019, 10:19 PM
#15
Archived author: stevej • Posted: 2019-01-19T22:19:48.545000+00:00
Original source


[Image: estructura_vieja.png?ex=690c7644&is=690b...5d63d8de8&]
rektbyfaith
01-19-2019, 10:19 PM #15

Archived author: stevej • Posted: 2019-01-19T22:19:48.545000+00:00
Original source


[Image: estructura_vieja.png?ex=690c7644&is=690b...5d63d8de8&]

rektbyfaith
Administrator
0
01-19-2019, 10:20 PM
#16
Archived author: stevej • Posted: 2019-01-19T22:20:59.710000+00:00
Original source

It was just a question, don't take it as a claim or a reproach. I just wanted to try a script, create the gossip to read it from the DB and found that the structure is very different now.
rektbyfaith
01-19-2019, 10:20 PM #16

Archived author: stevej • Posted: 2019-01-19T22:20:59.710000+00:00
Original source

It was just a question, don't take it as a claim or a reproach. I just wanted to try a script, create the gossip to read it from the DB and found that the structure is very different now.

rektbyfaith
Administrator
0
01-19-2019, 10:22 PM
#17
Archived author: stevej • Posted: 2019-01-19T22:22:27.753000+00:00
Original source

Nose if you remember <@109652764488892416> , that some time ago, I wanted to modify a script that read the gossip of the same c++. My idea was to take it from the DB so that it could be translated. However, I still couldn't make it because I always take it in English. I wanted to try now with the new changes, but I found this doubt.
rektbyfaith
01-19-2019, 10:22 PM #17

Archived author: stevej • Posted: 2019-01-19T22:22:27.753000+00:00
Original source

Nose if you remember <@109652764488892416> , that some time ago, I wanted to modify a script that read the gossip of the same c++. My idea was to take it from the DB so that it could be translated. However, I still couldn't make it because I always take it in English. I wanted to try now with the new changes, but I found this doubt.

rektbyfaith
Administrator
0
01-19-2019, 10:28 PM
#18
Archived author: Winfidonarleyan • Posted: 2019-01-19T22:28:22.616000+00:00
Original source

`loc1` - `loc8` changed to `koKR` - `ruRU`
rektbyfaith
01-19-2019, 10:28 PM #18

Archived author: Winfidonarleyan • Posted: 2019-01-19T22:28:22.616000+00:00
Original source

`loc1` - `loc8` changed to `koKR` - `ruRU`

rektbyfaith
Administrator
0
01-19-2019, 10:28 PM
#19
Archived author: Winfidonarleyan • Posted: 2019-01-19T22:28:58.461000+00:00
Original source

use you locale
rektbyfaith
01-19-2019, 10:28 PM #19

Archived author: Winfidonarleyan • Posted: 2019-01-19T22:28:58.461000+00:00
Original source

use you locale

rektbyfaith
Administrator
0
01-19-2019, 10:29 PM
#20
Archived author: Winfidonarleyan • Posted: 2019-01-19T22:29:11.189000+00:00
Original source

```cpp
enum LocaleConstant
{
LOCALE_enUS = 0,
LOCALE_koKR = 1,
LOCALE_frFR = 2,
LOCALE_deDE = 3,
LOCALE_zhCN = 4,
LOCALE_zhTW = 5,
LOCALE_esES = 6,
LOCALE_esMX = 7,
LOCALE_ruRU = 8
};
```
rektbyfaith
01-19-2019, 10:29 PM #20

Archived author: Winfidonarleyan • Posted: 2019-01-19T22:29:11.189000+00:00
Original source

```cpp
enum LocaleConstant
{
LOCALE_enUS = 0,
LOCALE_koKR = 1,
LOCALE_frFR = 2,
LOCALE_deDE = 3,
LOCALE_zhCN = 4,
LOCALE_zhTW = 5,
LOCALE_esES = 6,
LOCALE_esMX = 7,
LOCALE_ruRU = 8
};
```

Pages (3): Previous 1 2 3 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)