• 💀 Happy Halloween! 💀 It's time to vote for the best terrain! Check out the entries to Hive's HD Terrain Contest #2 - Vampire Folklore.❗️Poll closes on November 14, 2023. 🔗Click here to cast your vote!
  • 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 HD Level Design Contest #1 is OPEN! Contestants must create a maze with at least one entry point, and at least one exit point. The map should be made in HD mode, and should not be openable in SD. Only custom models from Hive's HD model and texture sections are allowed. The only exceptions are DNC models and omnilights. This is mainly a visual and design oriented contest, not technical. The UI and video walkthrough rules are there to give everyone an equal shot at victory by standardizing how viewers see the terrain. 🔗Click here to enter!

[General] How to make time score?

Status
Not open for further replies.
Level 23
Joined
Sep 26, 2009
Messages
2,309
Every second of game time: Set time[player_index] = time[player_index] + 1

Show score:
Hours = time[player_index] / 3600
remainder = mod(time[player_index] / 3600)
Minutes = remainder / 60
seconds = mod(remainder / 60)

Display the rest via string? Fill the string with zeros if hour or minutes or seconds number is less than 10.

Example:
Time = 5240, which means 5240 seconds, since this is incremented each second.
1 hour = 3600 seconds.
Hours = Time / 3600 = 5240/3600 = 1
remainder = mod(Time/3600) = mod(5240/3600) = 1640
1 minute = 60 seconds
Minutes = remainder / 60 = 1640 / 60 = 27
Seconds = mod(remainder/60) = mod(1640/60) = 20

Now, just fill Hours/Minutes/Seconds with zeros if number is less 10. This would hold true for hours (probably all the time, so adding zero to hours should be automatic).
You'll get that 5240 = 01:27:20

Time[] should be integer array, Hours, Minutes and Seconds could be string, so you can easily covert these three strings into one big final string (the xx:yy:zz formatted string).
Tho it would be far easier to make yourself a jass function for it imo.
 
Status
Not open for further replies.
Top