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

Removing (charges: X) of description

Antharaz

New Member
Joined
Jan 28, 2010
Messages
27
Reaction score
0
First: I did it because someone in other forum asks me.

Second: I don't see any utility for it, but i want to post...

Third: Sorry my poor english



Go to item.cpp:

aaawh.png


Find this code:

Code:
s << "(";
if(!it.runeSpellName.empty())
s << "\"" << it.runeSpellName << "\", ";

s << "Charges:" << subType <<")";

Delete it and paste the code below in the same place:

Code:
if(!it.runeSpellName.empty())
s << "(\"" << it.runeSpellName << "\")";

Result:

94843147.png


48908507.png


Tested with TFS 0.3.6pl1.
 
ahmm it's just search and delete
btw who would delete that descr from a rune????
 
It's not all description, only the charges...

if you read the third line of my post:

Second: I don't see any utility for it, but i want to post...

I did it because someone asks me...

And if you only delete, the spell name of rune won't appear when you look it...
 
Last edited:
Back
Top