It is currently May 4th, 2024, 3:06 pm

creating pretend authentication number

Get help with creating, editing & fixing problems with skins
chris114
Posts: 2
Joined: June 2nd, 2012, 6:03 pm

creating pretend authentication number

Post by chris114 »

I just can't figure out out how make a fake Authentication number in this layout 86051-H:867
were the numbers and letter change every time rainmeter starts or when the skin is refreshed.

thanks
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: creating pretend authentication number

Post by jsmorley »

Code: Select all

[Rainmeter]
Update=1000
DynamicWindowSize=1

[MeasureCalcLeft]
Measure=Calc
Formula=abs(Random)
LowBound=10000
HighBound=99999

[MeasureCalcRight]
Measure=Calc
Formula=abs(Random)
LowBound=100
HighBound=999

[MeasureCalcMiddle]
Measure=Calc
Formula=abs(Random)
LowBound=1
HighBound=26
Substitute="26":"Z","25":"Y","24":"X","23":"W","22":"V","21":"U","20":"T","19":"S","18":"R","17":"Q","16":"P","15":"O","14":"N","13":"M","12":"L","11":"K","10":"J","9":"I","8":"H","7":"G","6":"F","5":"E","4":"D","3":"C","2":"B","1":"A"

[MeterOne]
Meter=String
FontSize=12
FontColor=255,255,255,255
AntiAlias=1
Text=[MeasureCalcLeft]-[MeasureCalcMiddle]:[MeasureCalcRight]
DynamicVariables=1
chris114
Posts: 2
Joined: June 2nd, 2012, 6:03 pm

Re: creating pretend authentication number

Post by chris114 »

thanks it's perfect!