its a hack to make your ingame clocks hella fast
makes it easy to print virtual currency like bytecoin
enjoy
Code:
local Hours = 21
local function fyckteminynz = function()
if(Hours == 00) then
Hours = string.format("12")
elseif(Hours < 10) then
Hours = string.format("0%d", Hours)
elseif(Hours == 13) then
Hours = string.format("01")
AMPM = "PM"
elseif(Hours == 14) then
Hours = string.format("02")
AMPM = "PM"
elseif(Hours == 15) then
Hours = string.format("03")
AMPM = "PM"
elseif(Hours == 16) then
Hours = string.format("04")
AMPM = "PM"
elseif(Hours == 17) then
Hours = string.format("05")
AMPM = "PM"
elseif(Hours == 18) then
Hours = string.format("06")
AMPM = "PM"
elseif(Hours == 19) then
Hours = string.format("07")
AMPM = "PM"
elseif(Hours == 20) then
Hours = string.format("08")
AMPM = "PM"
elseif(Hours == 21) then
Hours = string.format("09")
AMPM = "PM"
elseif(Hours == 22) then
Hours = string.format("10")
AMPM = "PM"
elseif(Hours == 23) then
Hours = string.format("11")
AMPM = "PM"
elseif(Hours == 24) then
Hours = string.format("12")
end
print(tostring(Hours))
end
hook.Add("Think", "ftheposlc31iaabraziol1", fyckteminynz)