• 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!

Running a mod twice a day

Gsp

RP
Joined
Jan 3, 2008
Messages
250
Solutions
1
Reaction score
4
Hi guys . I have an event mod that runs once a day

from the file

PHP:
<globalevent name = "eventStart" time="15:00:00" event="script"><![CDATA........[

I want this file to run twice a day. how should I do it? should I just copy the mod file?
 
Hello.

this maybe be stupid but try make two same idk if it woks for mod

<globalevent name = "eventStart" time="12:00:00" event="script">
<globalevent name = "eventStart" time="18:00:00" event="script">

Best Regards
mlody.1039
 
thanks but didnt work.
i think i just have to make a copy of the mod file

copying didnt work
 
Last edited:
Have no ide if this will work but try
Code:
time="15:00:00;16:00:00"
Otherwise you will have to write a table using os.time() in lua.
 
Back
Top