• 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!

C++ You advance in...

BugaS

Donżuan
Joined
Mar 12, 2009
Messages
1,219
Reaction score
9
Location
NYC
Hey guys!

How to change the skill name in You advance in (fist->strenght). Where? LUA? C++? Hex?

#EDIT

I've got in player.cpp like this:

if (getSkillName(skill) == "sword fighting")
s << "Você avançou em sword fight";
else if (getSkillName(skill) == "axe fighting")
s << "Você avançou em glove fight";
else if (getSkillName(skill) == "fist fighting")
s << "Você avançou em attack speed";
else if (getSkillName(skill) == "distance fighting")
s << "Você avançou em distancia fight";
else if (getSkillName(skill) == "club fighting")
s << "Você avançou em staff fight";
else

But it shows normally You advanced in Axe Fighting etc
 
Last edited:
Back
Top