Author Topic: HUD Values Stacking  (Read 4063 times)

CastorHolyday

  • Newbie
  • *
  • Thank You
  • -Given: 1
  • -Receive: 0
  • Posts: 20
    • View Profile
HUD Values Stacking
« on: May 12, 2015, 08:06:05 PM »
Hello,

I was wondering is it possible to disable that feature of letting the HUD system, calculating added values, and add them in one value, for example I want my script to be able to call the HUDText.Add(....); quickly adding 16 Damage for example, and still not to display 16 ... 32 ... 48....64...
instead I want to see : 16 16 16 16 16 16 16....

Guide me please.

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: HUD Values Stacking
« Reply #1 on: May 14, 2015, 06:34:54 PM »
Just pass the values as a string instead of a float, and they won't be combined.

CastorHolyday

  • Newbie
  • *
  • Thank You
  • -Given: 1
  • -Receive: 0
  • Posts: 20
    • View Profile
Re: HUD Values Stacking
« Reply #2 on: May 14, 2015, 07:39:31 PM »
Genius, what a fool i am.