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

OTClient [OTCV8] Changing Fonts + extraquestion

Felipe93

Ghost Member
Joined
Mar 21, 2015
Messages
2,035
Solutions
9
Reaction score
357
Location
Chile
Hello

I'm trying to change the fonts of otcv8 from
LUA:
font: verdana-11px-antialised
to
Code:
font: cipsoftFont
It's works but the words in some palces of the client seems to be too little and looks like this
cipsoftfont.png

So i tried something like
Code:
font: cipsoftFont-11px-antialised
and even lower values like 5px 1px so in some places like in inventory buttons
cap and soul labels words seems to to be too big and looks like this( you can see that the words inside the inventory buttons looks pretty bad
also inside cap and soul label


cipsoftfont11px.png

The Extra Question is that i've added a new widget in client_background it does works the problem is that in this wudget there is a new button called enter game
but the entergame widget appears right away after you open the client how can i disable that? do not start the client that widget/menubox
how to disable on client start the box marked in red?

disable.png
 
extraquestion solved still can't
solve the fonts issues

LUA:
changed
  scheduleEvent(function()
    EnterGame.hide()  - from show to hide
  end, 100)
end
 
Back
Top