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!

[SHARE][SPLIT] GM Badge

Junior Spellweaver
Joined
Nov 27, 2023
Messages
101
Reaction score
45
This modification is specifically created for jolins source since i can't merge the GM badge from bubu ep9 source ( lot's of missing .cpp and .h) but i think this will also work for juver

dsda - [SHARE][SPLIT] GM Badge - RaGEZONE Forums


at NameDisplay.cpp find
Code:
        CString strSchoolMark[] =
        {
            "NAME_DISPLAY_SCHOOL1",
            "NAME_DISPLAY_SCHOOL2",
            "NAME_DISPLAY_SCHOOL3"
        };

modify it to
Code:
        CString strSchoolMark[] =
        {
            "NAME_DISPLAY_SCHOOL1",
            "NAME_DISPLAY_SCHOOL2",
            "NAME_DISPLAY_SCHOOL3",
            "NAME_DISPLAY_SCHOOL_GM"
        };

then using SSMS goto RanGame1>ChaInfo> find the GM character then change ChaSchool to 3

Now you are finish modifying server side now let's do client side at \data\gui
Find the following file interface_cfg.xml, uiinnercfg.xml, and uiinnercfg02.xml
on those 3 file add this

Code:
    <CONTROL Local="Common" Id="NAME_DISPLAY_SCHOOL_GM">
        <WINDOW_POS X="2" Y="2" W="16" H="11" />
        <TEXTURE SizeX="16" SizeY="11">gm_badge.dds</TEXTURE>
        <TEXTURE_POS X="0" Y="0" W="16" H="11" />
    </CONTROL>

then at \data\gui\gameword.xml
find
Code:
<WORD Ver="1" Id="ACADEMY_NAME">
<VALUE Lang="pe" Index="0">Sacred Gate</VALUE>
<VALUE Lang="pe" Index="1">Mystic Peak</VALUE>
<VALUE Lang="pe" Index="2">Phoenix</VALUE>
</WORD>

Modify it as
Code:
<WORD Ver="1" Id="ACADEMY_NAME">
<VALUE Lang="pe" Index="0">Sacred Gate</VALUE>
<VALUE Lang="pe" Index="1">Mystic Peak</VALUE>
<VALUE Lang="pe" Index="2">Phoenix</VALUE>
<VALUE Lang="pe" Index="3">GM</VALUE>
</WORD>

now download this gm_badge.rar below and extract the gm_badge.dds at \textures\gui

and it's done... if you want different gm badge color just comment below
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Mar 8, 2023
Messages
54
Reaction score
12
What's the meaning of ssms bro, Sorry I'm new and not familiar with that. Thanks!!
 
Junior Spellweaver
Joined
Nov 27, 2023
Messages
101
Reaction score
45
i forgot you also need to create name for the GM school at gameword.xml ...
the tutorial for it is added on thread
 
Junior Spellweaver
Joined
Nov 27, 2023
Messages
101
Reaction score
45
Can you share the different color badge bro? :)
are you using classic GUI? i have something here that convert the 3 school as two letter alphabet perhaps you are interested

dsadasdrewrwe - [SHARE][SPLIT] GM Badge - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Back
Top