It is currently March 28th, 2024, 3:57 pm

Super Smash Bros. Ultimate Countdown Clock

Clocks and timer skins
Post Reply
User avatar
raiguard
Posts: 660
Joined: June 25th, 2015, 7:02 pm
Location: The Sky, USA
Contact:

Super Smash Bros. Ultimate Countdown Clock

Post by raiguard »

2018-10-26 23_25_48-Calculator.png
Another one of my simple countdown timers, except that this one uses a much easier method than my last to actually do the counting. Theoretically it reaches zero at midnight EST, which is when the game will be released across the USA. I tested with various timezones and it appears to work correctly, but please let me know if you encounter time conversion issues.

You can switch between light/dark themes via the skin's context menu, as well as access links to r/smashbros and the official Smash Ultimate website. Additionally, you can scale the skin by scrolling the mouse wheel, ranging from 1x scale to 5x scale.

There is a .RMSKIN attached to the end of the post, but here also is the skin's code and the logo image used in the skin.

Anyway, HYPE TRAIN BOOSTERS ARE AT MAXIMUM POWER! ENGINES ARE AT FULL THROTTLE! ALL ABOARD! CHOO CHOO! :TrainRight

Code: Select all

[Rainmeter]
MiddleMouseUpAction=[!Refresh]
RightMouseUpAction=[!SkinCustomMenu]
AccurateText=1
DynamicWindowSize=1

ContextTitle=Toggle Theme
ContextAction=[!WriteKeyValue Variables style "(abs(#style# - 1))"][!Refresh]
ContextTitle2=Visit r/smashbros
ContextAction2=["https://reddit.com/r/smashbros"]
ContextTitle3=Visit Official Website
ContextAction3=["https://www.smashbros.com/en_US/"]

[Metadata]
Name=Smash Ultimate Countdown
Author=raiguard
Information=A simple countdown timer to count the time until Super Smash Bros. Ultimate is released! ALL ABOARD THE HYPE TRAIN! CHOO CHOO!
Version=1.1.0
License=Creative Commons Attribution - Non - Commercial - Share Alike 3.0

[Variables]
bgWidth=250
bgHeight=150

scale=1

style=0
s0Color1=230,230,230
s0Color2=15,15,15
s1Color1=15,15,15
s1Color2=230,230,230

; ==================================================
; MEASURES
; ==================================================

[MeasureLocalTime]
Measure=Time
TimeZone=-5
DaylightSavingTime=0

[MeasureEventTime]
Measure=Time
TimeZone=-5
DaylightSavingTime=0
TimeStamp=2018-12-07 00:00:00
TimeStampFormat=%Y-%m-%d %T
Format=%Y-%m-%d %T

[MeasureTimeDiff]
Measure=Uptime
SecondsValue=([MeasureLocalTime:timestamp] - [MeasureEventTime:timestamp])
Format=%4!i!d %3!i!h %2!i!m %1!i!s
DynamicVariables=1

; ==================================================
; METERS
; ==================================================

[MeterBackground]
Meter=Shape
Shape=Rectangle (5 * #scale#),(5 * #scale#),(#bgWidth# * #scale#),(#bgHeight# * #scale#),(5 * #scale#) | StrokeWidth (3 * #scale#) | Stroke Color [#s[#style]Color1] | Fill Color [#s[#style]Color2]
W=((#bgWidth# + 10) * #scale#)
H=((#bgHeight# + 10) * #scale#)
Antialias=1
MouseScrollUpAction=[!WriteKeyValue Variables scale "(clamp((#scale# + 0.5),1,5))"][!Refresh]
MouseScrollDownAction=[!WriteKeyValue Variables scale "(clamp((#scale# - 0.5),1,5))"][!Refresh]

[MeterSmashLogo]
Meter=Image
ImageName=#@#logo.png
ImageTint=[#s[#style]Color1]
X=(10 * #scale#)
Y=(10 * #scale#)
W=((#bgWidth# - 10) * #scale#)

[MeterCountdownText]
Meter=String
FontFace=Helvetica
FontWeight=700
FontSize=(20 * #scale#)
FontColor=[#s[#style]Color1]
StringAlign=Center
X=(((#bgWidth# / 2) + 5) * #scale#)
Y=4R
MeasureName=MeasureTimeDiff
Antialias=1
CHANGELOG:
v1.1.0 - 2018-10-27
- Fixed for daylight savings time offset
v1.0.0 - 2018-10-26
- Initial release
Attachments
SmashUltimateCountdown_1.1.0.rmskin
(90.94 KiB) Downloaded 494 times
logo.png
Post Reply