determinate determinate

Author Topic: CountDown Script!  (Read 3614 times)

0 Members and 1 Guest are viewing this topic.

Offline Hades

  • Triple Ace
  • **
  • Posts: 186
  • Karma: +2/-0
  • Polish Cafe TM
    • Polish Cafe
CountDown Script!
« on: May 16, 2005, 01:06:57 am »
Could someone modify countdown - happy new year script to lua 5??




THANX!
••Polish Cafe Hub••
                     sky-net.sytes.net
                     TransXCorp Labz®

Offline Dessamator

  • Scripter
  • Emperor
  • ******
  • Posts: 1 257
  • Karma: +13/-7
(No subject)
« Reply #1 on: May 16, 2005, 10:02:14 am »
yep sure, just show us which script u want modded, btw try converting it using the gui converter !
Ignorance is Bliss.

Offline plop

  • Global Moderator
  • Forum God
  • *****
  • Posts: 2 475
  • Karma: +37/-0
(No subject)
« Reply #2 on: May 16, 2005, 12:07:22 pm »
http://www.plop.nl lua scripts/howto\'s.
http://www.thegoldenangel.net
http://www.vikingshub.com
http://www.lua.org

>>----> he who fights hatred with hatred, drives the spreading of hatred <----<<

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #3 on: May 16, 2005, 01:11:22 pm »
Here goes a fast one (not tested):
Code: [Select]
------------------------------------------------------------------------------
-------                  Lua 5 version by jiten                        -------
-------                  countdown bot by plop                         -------
-------             original julian day made by tezlo                  -------
-------      modifyd by chilla 2 also handle hours, mins, seconds      -------
------------------------------------------------------------------------------

------------------------------------------------------------------------------
-------           THE TEXT FILE LOADS ON BOT START                     -------
------------------------------------------------------------------------------
------- this may sound weird but this 2 make sure it shows on time,    -------
-------      as i allready seen some big ascii's come by               -------
------------------------------------------------------------------------------


------------------------------------------------------------------------------
Bot = "newyear"

--This the date the timer has 2 stop @ midnight
-- year (2 numbers), month, day
SylYear,SylMonth,SylDay = 05,12,31
-- this is the file 2 be shown
file = "happynewyear.txt"
------------------------------------------------------------------------------
------------------------------------------------------------------------------
function OnTimer()
if last == 0 then
SendToAll(Bot, TimeLeft())
Sync()
elseif last == 1 then
SendAscii() -- send the msg
StopTimer() -- kill the timer
end
end
------------------------------------------------------------------------------
function jdatehms(d, m, y,ho,mi,se)
local a, b, c = 0, 0, 0
if m <= 2 then y = y - 1 m = m + 12 end
if (y*10000 + m*100 + d) >= 15821015 then a = math.floor(y/100) b = 2 - a + math.floor(a/4) end
if y <= 0 then c = 0.75 end
return math.floor(365.25*y - c) + math.floor(30.6001*(m+1) + d + 1720994 + b),ho*3600+mi*60+se
end
------------------------------------------------------------------------------
function TimeLeft()
local curday,cursec = jdatehms(tonumber(os.date("%d")),tonumber(os.date("%m")),tonumber(os.date("%y")),tonumber(os.date("%H")),tonumber(os.date("%M")),tonumber(os.date("%S")))
local sylday,sylsec = jdatehms(SylDay,SylMonth,SylYear,24,0,0)
local tmp = sylsec-cursec
local hours, minutes,seconds = math.floor(math.mod(tmp/3600, 60)), math.floor(math.mod(tmp/60, 60)), math.floor(math.mod(tmp/1, 60))
local day = sylday-curday
if day >= 0 then
line = "Time left till new year:"
if day ~= 0 then line = line.." "..day.." Day's" end
if hours ~= 0 then line = line.." "..hours.." Hours" end
if minutes ~= 0 then line = line.." "..minutes.." Minutes" end
if seconds ~= 0 then line = line.." "..seconds.." Seconds" end
return line
end
end
------------------------------------------------------------------------------
function ShowAscii()
local f = io.open(file)
if f then
text = f:read("*all")
f:close()
return string.gsub( text, "\n", "\r\n" )
end
end
------------------------------------------------------------------------------
function SendAscii()
SendToAll(Bot, text.." |")
SendToAll(Bot, "happy new year 2 everybody from all the guy's/girls/bot's from the lua forum|")
end
------------------------------------------------------------------------------
function ChatArrival(user, data)
data=string.sub(data,1,-2)
s,e,cmd = string.find(data,"%b<>%s+(%S+)")
if cmd == "!daysleft" then
local tmp = TimeLeft()
if tonumber(tmp) == nil then user:SendData(Bot, tmp.."|") end
return 1
end
end
------------------------------------------------------------------------------
function NewUserConnected(user)
local tmp = TimeLeft()
if tonumber(tmp) == nil then user:SendData(Bot, tmp.."|") end
end
------------------------------------------------------------------------------
OpConnected = NewUserConnected
------------------------------------------------------------------------------
function Main()
SetTimer(100 * 1000)
StartTimer()
local tmp = TimeLeft()
if tonumber(tmp) == nil then SendToAll(Bot, tmp.."|") end
Sync() ShowAscii() last = 0
end
------------------------------------------------------------------------------
function Sync()
local curday,cursec = jdatehms(tonumber(os.date("%d")),tonumber(os.date("%m")),tonumber(os.date("%y")),tonumber(os.date("%H")),tonumber(os.date("%M")),tonumber(os.date("%S")))
local sylday,sylsec = jdatehms(SylDay,SylMonth,SylYear,24,0,0)
local tmp = sylsec-cursec
local hours, minutes,seconds = math.floor(math.mod(tmp/3600, 60)), math.floor(math.mod(tmp/60, 60)), math.floor(math.mod(tmp/1, 60))
local day = sylday-curday
if day ~= 0 then
adjust = (math.floor(math.mod(minutes, 60))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(3600 * 1000) end
else
if tmp > 3600 then  --- every hours a msg
adjust = (math.floor(math.mod(minutes, 60))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(3600 * 1000) end
elseif tmp > 900 then  -- every 15 mins a msg
adjust = (math.floor(math.mod(minutes, 15))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(900 * 1000) end
elseif tmp > 300 then  -- every 5 mins a msg
adjust = (math.floor(math.mod(minutes, 5))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(300 * 1000) end
elseif tmp > 60 then  -- every min a msg
adjust = (math.floor(math.mod(minutes, 1))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(60 * 1000) end
elseif tmp > 15 then  -- every 15 secs a msg
adjust = math.floor(math.mod(seconds, 15))
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(15 * 1000) end
elseif tmp > 10 then  -- every 10 secs a msg
adjust = math.floor(math.mod(seconds, 10))
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(5 * 1000) end
elseif tmp > 1 then
SetTimer(1 * 1000)
else
last = 1
SetTimer(1 * 1000)
end
end
end
------------------------------------------------------------------------------

Cheers
« Last Edit: May 16, 2005, 02:47:55 pm by jiten »

Offline Dessamator

  • Scripter
  • Emperor
  • ******
  • Posts: 1 257
  • Karma: +13/-7
(No subject)
« Reply #4 on: May 16, 2005, 01:44:26 pm »
hmm, nice one jiten, less work for me, :)
Ignorance is Bliss.

Offline TïMê†råVêlléR

  • Scripter
  • Lord
  • ******
  • Posts: 317
  • Karma: +16/-0
(No subject)
« Reply #5 on: May 16, 2005, 02:03:24 pm »
Got this in main  at ful hour

[14:00:00] 1


greetzzz TT

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #6 on: May 16, 2005, 02:39:28 pm »
First post updated.

Cheers

Offline TïMê†råVêlléR

  • Scripter
  • Lord
  • ******
  • Posts: 317
  • Karma: +16/-0
(No subject)
« Reply #7 on: May 16, 2005, 03:01:50 pm »
[15:00:00] Time left till new year: 229 Days 9 Hours

works  fine  thanks  jiten

Greetzzz TT

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #8 on: May 16, 2005, 09:11:48 pm »
You're welcome TT :]

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #9 on: May 16, 2005, 10:23:51 pm »
As it is countdown for new year...,
Is it possiblt to have coundown for any
custom date which can be changed
For e.g. countdown for 26 may...instead 31 dec

Regards
« Last Edit: May 16, 2005, 10:24:42 pm by kash© »

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #10 on: May 16, 2005, 10:40:09 pm »
Quote
Originally posted by kash©
As it is countdown for new year...,
Is it possiblt to have coundown for any
custom date which can be changed
For e.g. countdown for 26 may...instead 31 dec

Regards

Just edit this in the Countdown script with your desired "finish" date:
Code: [Select]
--This the date the timer has 2 stop @ midnight
-- year (2 numbers), month, day
SylYear,SylMonth,SylDay = 05,12,31

Cheers

Offline TwîsTèd-dèvîl

  • Lord
  • ***
  • Posts: 438
  • Karma: +79/-2
    • EURO-OP
(No subject)
« Reply #11 on: May 16, 2005, 10:41:31 pm »
Quote
Originally posted by kash©
As it is countdown for new year...,
Is it possiblt to have coundown for any
custom date which can be changed
For e.g. countdown for 26 may...instead 31 dec

Regards


yes m8  just alter this part of the script for the date you require...
Code: [Select]

--This the date the timer has 2 stop @ midnight
-- year (2 numbers), month, day
SylYear,SylMonth,SylDay = 05,12,31   <<<<<<   Alter date
-- this is the file 2 be shown
file = "happynewyear.txt"


MMM beat me to it       :D
« Last Edit: May 16, 2005, 10:42:47 pm by (uk)jay »

Offline Hades

  • Triple Ace
  • **
  • Posts: 186
  • Karma: +2/-0
  • Polish Cafe TM
    • Polish Cafe
Thankx a lot ppl!
« Reply #12 on: May 17, 2005, 06:28:27 am »
This board still rulez!


Regards!
••Polish Cafe Hub••
                     sky-net.sytes.net
                     TransXCorp Labz®

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #13 on: May 17, 2005, 06:50:58 pm »
How to enable that ascii ??
Is it possible to show that countdown
timer in main chat at short interval with editable
time interval.......because of motd..that msg can
not be seen as it goes upwards



Regards
« Last Edit: May 17, 2005, 06:52:01 pm by kash© »

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #14 on: May 17, 2005, 07:09:50 pm »
Quote
Originally posted by kash©
How to enable that ascii ??

You need to create a file named "happynewyear.txt" in your script's main folder and then put the ASCII inside.
Quote
because of motd..that msg cannot be seen as it goes upwards

Indeed. I'm going to change it so that it will come after the MOTD (maybe tomorrow).

Cheers

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #15 on: May 18, 2005, 06:00:49 pm »
It displays countdown time every one hour
I wanna edit it and change that time interval
How can it be done ????

Regards...

Offline plop

  • Global Moderator
  • Forum God
  • *****
  • Posts: 2 475
  • Karma: +37/-0
(No subject)
« Reply #16 on: May 19, 2005, 12:56:35 am »
Quote
Originally posted by kash©
It displays countdown time every one hour
I wanna edit it and change that time interval
How can it be done ????

Regards...


find the next lines in the sync() function.
Code: [Select]
if day ~= 0 then

adjust = (math.floor(math.mod(minutes, 60))*60)+seconds

if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(3600 * 1000) end

exchange 3600 for your prefered setting (3600 * 1000 = 1 hour in seconds).
but remember it's the syncronisation your messing with.

plop
http://www.plop.nl lua scripts/howto\'s.
http://www.thegoldenangel.net
http://www.vikingshub.com
http://www.lua.org

>>----> he who fights hatred with hatred, drives the spreading of hatred <----<<

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #17 on: May 19, 2005, 10:40:04 am »
Is it possible to display that message
after MOTD...
because of MOTD, that message can
not be seen as it goes upwards

Regards

Offline dkt

  • Forum Ace
  • *****
  • Posts: 91
  • Karma: +1/-0
(No subject)
« Reply #18 on: May 19, 2005, 02:42:58 pm »
just try changing the order in ptokax script editor...
use move up ..move down..
keep ur countdown script last
it shld work...as it worked for other scripts though

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #19 on: May 19, 2005, 06:16:02 pm »
It doesn't work

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #20 on: May 20, 2005, 08:00:33 pm »
Quote
Originally posted by kash©
Is it possible to display that message
after MOTD...
because of MOTD, that message can
not be seen as it goes upwards

Regards

It's possible, but, if I am not wrong, it would mess up all the other timers, and so, all the script.

Cheers

Offline Dessamator

  • Scripter
  • Emperor
  • ******
  • Posts: 1 257
  • Karma: +13/-7
(No subject)
« Reply #21 on: May 20, 2005, 08:13:10 pm »
Quote
Originally posted by jiten
Quote
Originally posted by kash©
Is it possible to display that message
after MOTD...
because of MOTD, that message can
not be seen as it goes upwards

Regards

It's possible, but, if I am not wrong, it would mess up all the other timers, and so, all the script.

Cheers


hmm, theres another way, disabling the motd from ptokax, and sending it via the  script, just like a normal text,  ;)
Ignorance is Bliss.

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #22 on: May 20, 2005, 08:30:11 pm »
Quote
Originally posted by Dessamator
hmm, theres another way, disabling the motd from ptokax, and sending it via the  script, just like a normal text,  ;)

Or sending the MOTD in PM too ;)

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #23 on: May 23, 2005, 10:26:41 pm »
Can u plz try
if u have time
I really need this script and that too after MOTD
please have a try if u knw how to do it
take ur time

waiting for reply
Posted on: 20 May 2005, 19:35:16
Jiten can u plz. help
regarding this script,

waiting reply....

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
(No subject)
« Reply #24 on: May 24, 2005, 09:01:17 am »
Quote
Originally posted by kash©
Jiten can u plz. help
regarding this script,

waiting reply....

Well, I don't want to modify the timers because it would mess all the script up. So, here's my hint:

  • In your PtokaX gui, go to Network Tab and tick "Send MOTD in PM".


By doing this, you'll be sending the MOTD in PM and, logicaly, it won't come after the CountDown stats like it used to happen.
That's all I can do unless someone else has a better idea ;)

Cheers

Offline kash©

  • Double Ace
  • *
  • Posts: 101
  • Karma: +0/-1
(No subject)
« Reply #25 on: May 24, 2005, 08:10:59 pm »
I don't want to sned MOTD in PM
anyways,.....Thx

Offline sidetrack

  • Newbie
  • *
  • Posts: 2
  • Karma: +0/-0
Re: CountDown Script!
« Reply #26 on: November 10, 2006, 07:46:40 pm »
Would it be fairly easy to change constant (of time, currently set to midnight), to a varible, this would be very helpful for having meetings and such, with all the different time zones, ppl get very easy confused.. so if I could set the date, and time of meeting, and have it count down this could rock.. Also.. can it be used safely in DCDM or any other LUA script client that supports Lua 5?

Offline Madman

  • Scripter
  • Emperor
  • ******
  • Posts: 1 317
  • Karma: +75/-1
Re: CountDown Script!
« Reply #27 on: November 10, 2006, 10:28:21 pm »
Code: [Select]
------------------------------------------------------------------------------
-------                  Lua 5 version by jiten                        -------
-------                  countdown bot by plop                         -------
-------             original julian day made by tezlo                  -------
-------      modifyd by chilla 2 also handle hours, mins, seconds      -------
------------------------------------------------------------------------------

------------------------------------------------------------------------------
-------           THE TEXT FILE LOADS ON BOT START                     -------
------------------------------------------------------------------------------
------- this may sound weird but this 2 make sure it shows on time,    -------
-------      as i allready seen some big ascii's come by               -------
------------------------------------------------------------------------------

-- Added: Hour,Min,Sec variables, make's it possibole to count to another time then midnight, Madman 10.11.06
-- Added: 5.1 support, Madman 10.11.06

------------------------------------------------------------------------------
Bot = "newyear"

--This the date the timer has 2 stop
-- year (2 numbers), month, day
SylYear,SylMonth,SylDay = 05,12,31
--This is the time
-- Hour, minute, second
SylHour,SylMin,SylSec = 24,00,00
-- this is the file 2 be shown
file = "happynewyear.txt"
------------------------------------------------------------------------------
if math.mod == nil then math.mod = math.fmod end

------------------------------------------------------------------------------
function OnTimer()
if last == 0 then
SendToAll(Bot, TimeLeft())
Sync()
elseif last == 1 then
SendAscii() -- send the msg
StopTimer() -- kill the timer
end
end
------------------------------------------------------------------------------
function jdatehms(d, m, y,ho,mi,se)
local a, b, c = 0, 0, 0
if m <= 2 then y = y - 1 m = m + 12 end
if (y*10000 + m*100 + d) >= 15821015 then a = math.floor(y/100) b = 2 - a + math.floor(a/4) end
if y <= 0 then c = 0.75 end
return math.floor(365.25*y - c) + math.floor(30.6001*(m+1) + d + 1720994 + b),ho*3600+mi*60+se
end
------------------------------------------------------------------------------
function TimeLeft()
local curday,cursec = jdatehms(tonumber(os.date("%d")),tonumber(os.date("%m")),tonumber(os.date("%y")),tonumber(os.date("%H")),tonumber(os.date("%M")),tonumber(os.date("%S")))
local sylday,sylsec = jdatehms(SylDay,SylMonth,SylYear,SylHour,SylMin,SylSec)
local tmp = sylsec-cursec
local hours, minutes,seconds = math.floor(math.mod(tmp/3600, 60)), math.floor(math.mod(tmp/60, 60)), math.floor(math.mod(tmp/1, 60))
local day = sylday-curday
if day >= 0 then
line = "Time left till new year:"
if day ~= 0 then line = line.." "..day.." Day's" end
if hours ~= 0 then line = line.." "..hours.." Hours" end
if minutes ~= 0 then line = line.." "..minutes.." Minutes" end
if seconds ~= 0 then line = line.." "..seconds.." Seconds" end
return line
end
end
------------------------------------------------------------------------------
function ShowAscii()
local f = io.open(file)
if f then
text = f:read("*all")
f:close()
return string.gsub( text, "\n", "\r\n" )
end
end
------------------------------------------------------------------------------
function SendAscii()
SendToAll(Bot, text.." |")
SendToAll(Bot, "happy new year 2 everybody from all the guy's/girls/bot's from the lua forum|")
end
------------------------------------------------------------------------------
function ChatArrival(user, data)
data=string.sub(data,1,-2)
s,e,cmd = string.find(data,"%b<>%s+(%S+)")
if cmd == "!daysleft" then
local tmp = TimeLeft()
if tonumber(tmp) == nil then user:SendData(Bot, tmp.."|") end
return 1
end
end
------------------------------------------------------------------------------
function NewUserConnected(user)
local tmp = TimeLeft()
if tonumber(tmp) == nil then user:SendData(Bot, tmp.."|") end
end
------------------------------------------------------------------------------
OpConnected = NewUserConnected
------------------------------------------------------------------------------
function Main()
SetTimer(100 * 1000)
StartTimer()
local tmp = TimeLeft()
if tonumber(tmp) == nil then SendToAll(Bot, tmp.."|") end
Sync() ShowAscii() last = 0
end
------------------------------------------------------------------------------
function Sync()
local curday,cursec = jdatehms(tonumber(os.date("%d")),tonumber(os.date("%m")),tonumber(os.date("%y")),tonumber(os.date("%H")),tonumber(os.date("%M")),tonumber(os.date("%S")))
local sylday,sylsec = jdatehms(SylDay,SylMonth,SylYear,SylHour,SylMin,SylSec)
local tmp = sylsec-cursec
local hours, minutes,seconds = math.floor(math.mod(tmp/3600, 60)), math.floor(math.mod(tmp/60, 60)), math.floor(math.mod(tmp/1, 60))
local day = sylday-curday
if day ~= 0 then
adjust = (math.floor(math.mod(minutes, 60))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(3600 * 1000) end
else
if tmp > 3600 then  --- every hours a msg
adjust = (math.floor(math.mod(minutes, 60))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(3600 * 1000) end
elseif tmp > 900 then   -- every 15 mins a msg
adjust = (math.floor(math.mod(minutes, 15))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(900 * 1000) end
elseif tmp > 300 then -- every 5 mins a msg
adjust = (math.floor(math.mod(minutes, 5))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(300 * 1000) end
elseif tmp > 60 then  -- every min a msg
adjust = (math.floor(math.mod(minutes, 1))*60)+seconds
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(60 * 1000) end
elseif tmp > 15 then  -- every 15 secs a msg
adjust = math.floor(math.mod(seconds, 15))
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(15 * 1000) end
elseif tmp > 10 then  -- every 10 secs a msg
adjust = math.floor(math.mod(seconds, 10))
if adjust ~= 0 then SetTimer(adjust * 1000) else SetTimer(5 * 1000) end
elseif tmp > 1 then
SetTimer(1 * 1000)
else
last = 1
SetTimer(1 * 1000)
end
end
end
------------------------------------------------------------------------------

Quick mode, untested, but should work...
Also added the line needed for 5.1...

And no, atm it can't be used in a client... not untill somebody mod it to be...
« Last Edit: November 10, 2006, 10:41:47 pm by Madman »
We suffer in silence, we lurk in the shadows, we kill in the night
Site currently down, ETA of returning online is 2099 ;p

Offline jiten

  • Scripter
  • Forum Legend
  • ******
  • Posts: 1 585
  • Karma: +71/-5
Re: CountDown Script!
« Reply #28 on: November 11, 2006, 11:56:46 am »
Would it be fairly easy to change constant (of time, currently set to midnight), to a varible, this would be very helpful for having meetings and such, with all the different time zones, ppl get very easy confused.. so if I could set the date, and time of meeting, and have it count down this could rock.. Also.. can it be used safely in DCDM or any other LUA script client that supports Lua 5?


Have a look at this thread: http://luaboard.sytes.net/index.php?topic=5928.0

Offline CrazyGuy

  • Global Moderator
  • Viking
  • *****
  • Posts: 512
  • Karma: +82/-20
    • ˜”°º•=-_The NightHawk_-=•º°”˜
Re: CountDown Script!
« Reply #29 on: November 11, 2006, 06:27:42 pm »
Code: [Select]
SylYear,SylMonth,SylDay = 05,12,31
Hope you don't mind we wont wait a whole year for you Madman and continue looking forward to 07  ;D

 

determinate determinate
guestbook