• 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 do I disable this top bar of the Otclient

I assume your using the default layout.

Navigate to layouts/retro/styles/20-topmenu.otui

line 74 (may be different for you) but search for:
Code:
TopMenu < TopMenuPanel

and add:
Code:
opacity: 0

This will disable to top menu completely though, you can probably set the opacity back to 1 in client.lua or something when the player has logged in for example, if i had the time, i'd do it for you. But try yourself first!
 
I assume your using the default layout.

Navigate to layouts/retro/styles/20-topmenu.otui

line 74 (may be different for you) but search for:
Code:
TopMenu < TopMenuPanel

and add:
Code:
opacity: 0

This will disable to top menu completely though, you can probably set the opacity back to 1 in client.lua or something when the player has logged in for example, if i had the time, i'd do it for you. But try yourself first!
Give this error:
1657131774438.png

TopMenu < TopMenuPanel
opacity: 0
id: topMenu
width: 800
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
&hideIngame: true
&reverseButtons: true
 
Back
Top