• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How do i create daily announcements?

Magictibiaman

New Member
Joined
May 25, 2009
Messages
371
Reaction score
0
how do i set announcements
so every day at 4:00 pm for example it sends
a message say "Hi, players" (for example)
 
Lol. You are making for each question a thread? Did you many anything by yourself? Just script an easy broadcaster or use Search Function-.-
 
Lol I'm not looking for fights. You are kinda unpolite lol.. I told you, make a broadcaster or use search function but since you think i dont want to help you, here is a script:

HTML:
broadcastDelay = 30 * 60 * 1000 -- in miliseconds  
storageValue = 700800  
if (getGlobalStorageValue(storageValue) == LUA_ERROR) then  
    function save(broadcastDelay)  
        doBroadcastMessage("Waz up menz?????")
        print(">>>>..::MESSAGE BROADCASTED::..<<<<")  
        addEvent(save, broadcastDelay, broadcastDelay)  
    end  
    addEvent(save, broadcastDelay, broadcastDelay)  
    setGlobalStorageValue(storageValue, TRUE)  
end

Give me rep plax?++
 
Back
Top