[DiscordArchive] Hi everyone,
[DiscordArchive] Hi everyone,
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?
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
Archived author: Tecc • Posted: 2025-10-23T14:44:38.633000+00:00
Original source
Damn I was hoping to get around this one :/
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 \
[...]
```
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.
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
Archived author: Sonkei • Posted: 2025-10-23T14:50:55.269000+00:00
Original source
I’ll give it a try, thx
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
Archived author: kastang • Posted: 2025-10-23T14:56:53.169000+00:00
Original source
Good luck!