i need a script to sent a Message in mainchat every 1 Hour or more with a message i want I know i have seen it before, but cant find it so please help me.
no idea who made the original as there are lots of them
-------------------------
--- website adver banner
------------
text1 = "Take a look on our website."
text2 = "Many useful tips can be found there."
text3 = "From tools to download to a forum to have fun on,"
text4 = "or request things you would like to have."
text5 = "http://www.thegoldenangel.org"
sec = 1000
min = 60 * sec
hour = 60 * min
howmuch = 120
function Main()
SetTimer(howmuch*min)
StartTimer()
end
function OnTimer()
SendToAll("***","******************************************************** <***> |")
SendToAll("***",text1.." |")
SendToAll("***",text2.." |")
SendToAll("***",text3.." |")
SendToAll("***",text4.." |")
SendToAll("***",text5.." |")
SendToAll("***","******************************************************** <***> |")
end
plop
QuoteOriginally posted by plop
no idea who made the original as there are lots of them
-------------------------
--- website adver banner
------------
text1 = "Take a look on our website."
text2 = "Many useful tips can be found there."
text3 = "From tools to download to a forum to have fun on,"
text4 = "or request things you would like to have."
text5 = "http://www.thegoldenangel.org"
sec = 1000
min = 60 * sec
hour = 60 * min
howmuch = 120
function Main()
SetTimer(howmuch*min)
StartTimer()
end
function OnTimer()
SendToAll("***","******************************************************** <***> |")
SendToAll("***",text1.." |")
SendToAll("***",text2.." |")
SendToAll("***",text3.." |")
SendToAll("***",text4.." |")
SendToAll("***",text5.." |")
SendToAll("***","******************************************************** <***> |")
end
plop
Thanks M8
yw
plop