• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

One question about items skill name change with c++

adamox223

New Member
Joined
Oct 21, 2017
Messages
99
Reaction score
4
I have one question, where i can change name of skill item:

18:16 You see a Dark Armor (Arm:85, Magic Level +10, speed +100).
It can only be wielded properly by players of level 500 or higher.


i need change - Magic Level to - Dark Level, can you say me name of file for fix this?
 
Thanks.
ok i find this, is here:

Code:
if(it.abilities.stats[STAT_MAGICLEVEL])
        {
            if(begin)
            {
                begin = false;
                s << " (";
            }
            else
                s << ", ";

            s << "magic level " << std::showpos << (int32_t)it.abilities.stats[STAT_MAGICLEVEL] << std::noshowpos;
        }
 
Back
Top