How to save the hit points in integer

Status
Not open for further replies.
Level 4
Joined
Apr 30, 2007
Messages
62
yay im so stupid :D its a basic funktion nah it was just to late so my brain didnt worked correctly :D

btw so it works in a multiboard
  • For each (Integer A) from 1 to NumberOfPlayers, do (Actions)
    • Schleifen - Aktionen
      • Set A_HP[(Integer A)] = (Integer((Leben of CurrentHero[(Integer A)])))
      • Multiboard - Set the text for MultiBrd item in column 4, row ((Integer A) + 1) to (String(A_HP[(Integer A)]))
 
Level 11
Joined
Aug 25, 2006
Messages
971
Technically its not rounding, its truncating.
10.3948 becomes 10
10.9999 becomes 10
0.999999 becomes 0
It just chops off everything after the decimal point.
 
Status
Not open for further replies.
Top