public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

Numbers on top of eachother?

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: Numbers on top of eachother?
  • Original author: burntable
  • Original date: September 8, 2015
  • Source thread: https://forums.rpgmakerweb.com/threads/numbers-on-top-of-eachother.44549/
  • Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSSx Script Support

Summary

Ok, I have been pretty messy with my scripts, and something strange happend. If I raise an actors max tp, it often happens, that the last digit of the TP number gets bugged out. The top number is the correct one, though. This happens in all windows where I put the actor gauges. Does anyone know what can cause such a strange behaviour? {

Archived First Post

Ok, I have been pretty messy with my scripts, and something strange happend.

If I raise an actors max tp, it often happens, that the last digit of the TP number gets bugged out. The top number is the correct one, though. This happens in all windows where I put the actor gauges.

Does anyone know what can cause such a strange behaviour?

Protected download

I figured it out. For anyone who was also wondering.

Code:
  def draw_actor_tp(actor, x, y, width = 124)    draw_actor_tp_gauge(actor, x, y, width)    change_color(system_color)    draw_text(x, y, 60, line_height, Vocab::tp_a)    change_color(tp_color(actor))#    draw_text(x + width - 42, y, 42, line_height, actor.tp.to_i, 2) # <--- wtf ? xD    draw_current_and_max_values(x, y, width, actor.tp.to_i, actor.mtp.to_i,    tp_color(actor), normal_color)  end

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

Referenced Images / Attachments

DoubleDigit.png
DoubleDigit.png
Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#rpg-maker-archive#rgss-support

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar