Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Speech Bubble Title not Show

Newbie Spellweaver
Joined
Apr 25, 2022
Messages
6
Reaction score
0
the Speech Bubble Title is show in the lits,but not show above the role
my emu server is :

Does anyone know how to fix it?
 
Last edited:
Junior Spellweaver
Joined
Mar 2, 2023
Messages
196
Reaction score
326
the Speech Bubble Title is show in the lits,but not show above the role
my emu server is :

Does anyone know how to fix it?

Find String on Client

XML:
<string>
    <id>903159</id>
    <name>STR_BTITLE_SERVER_AND_TITLE_RSS</name>
    <body>http://g.aion.plaync.co.kr/api/webcontents/titleballoon/xml?serverId=%0&amp;raceId=%1</body>
</string>

and check link from body

4.6 response:

XML:
<channel>
    <item>
        <title>Убийца с дурной славой</title>
        <title_desc>Адм Элийцев</title_desc>
        <actorid>1002</actorid>
        <category>PvP GM</category>
        <description>GmAsirtis</description>
        <pubDate>Thu, 1 Jun 2023 10:00:00 +0300</pubDate>
    </item>
</channel>

5.0 - 6.5 response:

XML:
<channel>
    <item>
        <idx>23866338</idx>
        <metaIdx>54733</metaIdx>
        <serverId>1</serverId>
        <raceId>0</raceId>
        <category>GM</category>
        <title>ASTERIA LEADER</title>
        <titleDescription>ASTERIA LEADER</titleDescription>
        <charId>131689</charId>
        <charName>Matty</charName>
        <insertDate>1691380942557</insertDate>
    </item>
</channel>

6.5+ response:
Java:
https://g-aion.plaync.com/api/webcontents/titleballoon/xml?serverId=1&raceId=0
 
Last edited:
Upvote 1
Back
Top