• 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 make new channel (Polish chat)

kret

K R E T O W N A G E
Joined
Apr 4, 2008
Messages
947
Reaction score
6
Location
PяOLAND
Hello

How to create a new channel called Polish Chat ?

Now i have

Game-chat
Trade
Trade-rookgaard
RL-Chat
NPCs
Private Channel
 
You need to know how to compile(source edit)
Used TFS 0.3 Beta2

In chat.cpp search for:

newChannel = new ChatChannel(CHANNEL_GAMECHAT, "Game-Chat");
if(newChannel)
m_normalChannels[CHANNEL_GAMECHAT] = newChannel;

Below that add this:

newChannel = new ChatChannel(CHANNEL_GAMECHAT, "Polish");
if(newChannel)
m_normalChannels[CHANNEL_GAMECHAT] = newChannel;

Tutorial how to compile The Latest TFS: In Here

Image:

18012009190556yn4.png


Enjoy!
 
Last edited:
Back
Top