• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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