--TimeMessenger by latinmusic == poweroperator 07/04/2003 --Based on TimeBot by aMutex --Based on a few lines of DirtyBot by DirtyFinger --This script displays a message on main chat every hour --The script also display Date and Time in main chat --The script need a file call it Message.txt place in the following folder --PtokaX\scripts\Files\Messages.txt --> Enjoy BotName = "interpol" TimeSpanInMinutes = 15 --Set the time for display the file here. 60 = 1 hour function Main() SetTimer(TimeSpanInMinutes*60000) StartTimer() end function OnTimer() local message = "" while 1 do local line = read() if line == nil then break else message = message..line.."\r\n" end end readfrom("music.txt") while 1 do line = read() if line == nil then break end SendToAll("",line) end readfrom() end --End code