• 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 remove Comma in HP/mana otv8 tfs 1.5

Solution
I've never used otcv8 but this line would be my first guess. Try removing the "comma_value" function from health / maxHealth.

Change:
Lua:
healthBar:setText(comma_value(health) .. ' / ' .. comma_value(maxHealth))

To:
Lua:
healthBar:setText(health .. ' / ' .. maxHealth)

Although as an end-user I prefer the comma; it makes the values far easier to quickly read.
Red
I've never used otcv8 but this line would be my first guess. Try removing the "comma_value" function from health / maxHealth.

Change:
Lua:
healthBar:setText(comma_value(health) .. ' / ' .. comma_value(maxHealth))

To:
Lua:
healthBar:setText(health .. ' / ' .. maxHealth)

Although as an end-user I prefer the comma; it makes the values far easier to quickly read.
Red
 
Solution
Back
Top