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

Channel Windows

Exura ATS

New Member
Joined
Feb 5, 2017
Messages
72
Reaction score
4
Hi!

I'm actually using OTClient 0.6.3, and I installed the advanced hotkeys (https://otland.net/threads/mod-advanced-hotkeys.193497/) on it.

But, something went wrong. The Default Channel is now after Local Chat Channel. Like this:

https://imgur.com/a/dM5i0

I want to reverse them like this:

https://imgur.com/a/12y9a

"Default Channel" and then "Local Chat Channel".
And if possible, I want to make that mod's grey button disappear.

If someone knows how I can change it, please, answer me.
Thanks and Cya!
 
you can just pull and drag the channels... (or at least should be able to) smh
 
Look into console.lua file for:
Lua:
function online()
  defaultTab = addTab(tr('Default'), true) -- true means it is active tab by default
  serverTab = addTab(tr('Server Log'), false)
Probably you have them reversed.

Also, this gray button probably acts as a chat toggle button and then change its position.
 
Look into console.lua file for:
Lua:
function online()
  defaultTab = addTab(tr('Default'), true) -- true means it is active tab by default
  serverTab = addTab(tr('Server Log'), false)
Probably you have them reversed.

Also, this gray button probably acts as a chat toggle button and then change its position.

My console.lua:
defaultTab = addTab(tr('Default'), true)
serverTab = addTab(tr('Server Log'), false)

I just want to make that button disappear. :( I'll use the advanced hotkeys mod without clicking on button, only by pressing Enter.
 
If you want to remove button, then look for it in otui file, and delete, then you will need to look for all callbacks for it in lua file.
 
Back
Top