• 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 Removing "Offline Training" from client

oserc

Advanced OT User
Joined
Mar 5, 2022
Messages
148
Solutions
1
Reaction score
195
Location
Brazil
Hey, I was trying to rip off "stamina", "soul points" and "offline training" bars from otclient. Removing stamina and soul points was easy, I just had to delete these lines from "skills.oui" inside modules/game_skills:

Lua:
    SkillButton
      id: stamina
      SkillNameLabel
        !text: tr('Stamina')
      SkillValueLabel
      SkillPercentPanel

Lua:
    SkillButton
      id: soul
      height: 15
      SkillNameLabel
        !text: tr('Soul Points')
      SkillValueLabel

But if I delete the corresponding lines to "offline training" inside skills.otui, the skill bar won't open inside the game.

What is the proper way to remove"offline training" bar from OTClient?
 
Back
Top