Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] Hi everyone,

[DiscordArchive] Hi everyone,

[DiscordArchive] Hi everyone,

Pages (2): Previous 1 2
rektbyfaith
Administrator
0
10-23-2025, 02:42 PM
#11
Archived author: Tecc • Posted: 2025-10-23T14:42:57.115000+00:00
Original source

I'm currently exactly struggling with this - so creating a new item and giving it a displayID of existing one seems to work for quest reward display, but not for character inventory items. Do I need a client patch in this case or did I misunderstand it somehow?
rektbyfaith
10-23-2025, 02:42 PM #11

Archived author: Tecc • Posted: 2025-10-23T14:42:57.115000+00:00
Original source

I'm currently exactly struggling with this - so creating a new item and giving it a displayID of existing one seems to work for quest reward display, but not for character inventory items. Do I need a client patch in this case or did I misunderstand it somehow?

rektbyfaith
Administrator
0
10-23-2025, 02:44 PM
#12
Archived author: Mithria • Posted: 2025-10-23T14:44:08.980000+00:00
Original source

i believe the client looks for the item id in the Item.dbc and then gets its display info from there, so if you want the client to show the icon in the bag, you need to add the new item id to Item.dbc and make a client patch
rektbyfaith
10-23-2025, 02:44 PM #12

Archived author: Mithria • Posted: 2025-10-23T14:44:08.980000+00:00
Original source

i believe the client looks for the item id in the Item.dbc and then gets its display info from there, so if you want the client to show the icon in the bag, you need to add the new item id to Item.dbc and make a client patch

rektbyfaith
Administrator
0
10-23-2025, 02:44 PM
#13
Archived author: Tecc • Posted: 2025-10-23T14:44:38.633000+00:00
Original source

Damn I was hoping to get around this one :/
rektbyfaith
10-23-2025, 02:44 PM #13

Archived author: Tecc • Posted: 2025-10-23T14:44:38.633000+00:00
Original source

Damn I was hoping to get around this one :/

rektbyfaith
Administrator
0
10-23-2025, 02:44 PM
#14
Archived author: kastang • Posted: 2025-10-23T14:44:44.038000+00:00
Original source

I'm not sure how you would do it in Arch, but this is part of my Debian container build process:

```
ENV DEBIAN_FRONTEND="noninteractive"
ENV MYSQL_APT_CONFIG_VERSION=0.8.34-1
[...]
RUN apt-get update && \
wget https://dev.mysql.com/get/mysql-apt-config_${MYSQL_APT_CONFIG_VERSION}_all.deb && \
dpkg -i ./mysql-apt-config_${MYSQL_APT_CONFIG_VERSION}_all.deb \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
[...]
RUN apt-get update && \
apt-get install -y --no-install-recommends \
mysql-client \
libmysqlclient-dev \
[...]
```
rektbyfaith
10-23-2025, 02:44 PM #14

Archived author: kastang • Posted: 2025-10-23T14:44:44.038000+00:00
Original source

I'm not sure how you would do it in Arch, but this is part of my Debian container build process:

```
ENV DEBIAN_FRONTEND="noninteractive"
ENV MYSQL_APT_CONFIG_VERSION=0.8.34-1
[...]
RUN apt-get update && \
wget https://dev.mysql.com/get/mysql-apt-config_${MYSQL_APT_CONFIG_VERSION}_all.deb && \
dpkg -i ./mysql-apt-config_${MYSQL_APT_CONFIG_VERSION}_all.deb \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
[...]
RUN apt-get update && \
apt-get install -y --no-install-recommends \
mysql-client \
libmysqlclient-dev \
[...]
```

rektbyfaith
Administrator
0
10-23-2025, 02:48 PM
#15
Archived author: Sonkei • Posted: 2025-10-23T14:48:30.845000+00:00
Original source

thank you for your help
I’m installing 3 percona packages (server, client and libs) so this should be covered.
But maybe the libraries, in /usr/{lib,include}/perconaserver/ aren’t detected by CMake.
I’ll try to add manually a link for /usr/{lib,include}/mysql/ to the personaserver directory. That may do the trick.
rektbyfaith
10-23-2025, 02:48 PM #15

Archived author: Sonkei • Posted: 2025-10-23T14:48:30.845000+00:00
Original source

thank you for your help
I’m installing 3 percona packages (server, client and libs) so this should be covered.
But maybe the libraries, in /usr/{lib,include}/perconaserver/ aren’t detected by CMake.
I’ll try to add manually a link for /usr/{lib,include}/mysql/ to the personaserver directory. That may do the trick.

rektbyfaith
Administrator
0
10-23-2025, 02:50 PM
#16
Archived author: kastang • Posted: 2025-10-23T14:50:23.409000+00:00
Original source

Symlink would probably work. I'm sure there is a compile flag somewhere to specify the mysql client bin location but I dont know what it is
rektbyfaith
10-23-2025, 02:50 PM #16

Archived author: kastang • Posted: 2025-10-23T14:50:23.409000+00:00
Original source

Symlink would probably work. I'm sure there is a compile flag somewhere to specify the mysql client bin location but I dont know what it is

rektbyfaith
Administrator
0
10-23-2025, 02:50 PM
#17
Archived author: Sonkei • Posted: 2025-10-23T14:50:55.269000+00:00
Original source

I’ll give it a try, thx
rektbyfaith
10-23-2025, 02:50 PM #17

Archived author: Sonkei • Posted: 2025-10-23T14:50:55.269000+00:00
Original source

I’ll give it a try, thx

rektbyfaith
Administrator
0
10-23-2025, 02:56 PM
#18
Archived author: Sonkei • Posted: 2025-10-23T14:56:29.973000+00:00
Original source

it worked !
ln -s /usr/include/perconaserver/ /usr/include/mysql

Thank you for your help, now building
rektbyfaith
10-23-2025, 02:56 PM #18

Archived author: Sonkei • Posted: 2025-10-23T14:56:29.973000+00:00
Original source

it worked !
ln -s /usr/include/perconaserver/ /usr/include/mysql

Thank you for your help, now building

rektbyfaith
Administrator
0
10-23-2025, 02:56 PM
#19
Archived author: kastang • Posted: 2025-10-23T14:56:53.169000+00:00
Original source

Good luck!
rektbyfaith
10-23-2025, 02:56 PM #19

Archived author: kastang • Posted: 2025-10-23T14:56:53.169000+00:00
Original source

Good luck!

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