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

How to remove the dot at signs?

Xexza

New Member
Joined
Sep 3, 2007
Messages
1,053
Reaction score
3
Hey. I have an issue that's disturbing me. By default, the server is adding an extra dot after the text in all signs. We already put dots in the map editor so it become 2 dots (..), which looks pretty dumb.

Where can I find the sign part and what to remove there?
I use TFS 0.2.5
 
Easy todo, first open up the project file, and then search all project files for the text you usually see by default (I forgot what it is, I haven't played in awhile... Something like You read...) Anyway just search for that text line, then you should see where you need to take the period out, sorry for the vague tutorial, if I was at my house I would give you an exact explanation but I'm at school.
 
Here's how I did it:

item.cpp

Line 820:
Code:
		s <<[B][COLOR="Red"] "." <<[/COLOR][/B] std::endl;
Line 951:
Code:
[B][COLOR="Red"]	if(!it.allowDistRead || item->getText() == "")[/COLOR][/B]
		s << ".";
 
Back
Top