Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Schedule Timer - Possibly working overboard on doing this?

Asked by
Nickoakz 231 Moderation Voter
9 years ago

I'm trying to generate a bell system relying on a table.. I feel like there's an easier method of checking what time its on, and using it to check what period its on. So far, here is my results. Although it's going great and barely working, Is there a better way to prevent un-necessary server load? I'm all in trying my best to keep the server working on important tasks like keeping players lag free..

01PSchedules={
02    {"TESTBLOCK",{
03    --  name            time start  time end
04        {"Period 1",    10,41,      10,43},
05        {"Period 2",    10,45,      10,46},
06        {"Period 3",    10,47,      10,49},
07        {"Period 4",    10,50,      10,51}
08    }}
09}
10require game.ServerScriptStorage.GetTime; --returns a function that gives back my current time in this format (return hour,min,sec,amORpm)
11function StartBell(schedu)
12    local bellloop=true
13    local schn=tonumber(schedu)
14    if schn~=nil then
15        local hours,mins,secs,pm=GetTime()
View all 96 lines...

Am I going overboard on how to check for this information, or is their an easier way?

0
Yeah, I'd say you went WAY OVERBOARD, but it is some interesting code. Is GetTime telling you a true time of the server, or a ficticious time within the game? JasonTheOwner 391 — 9y
0
GetTime() is using os.time() that works on all game servers in one time zone. Nickoakz 231 — 9y

Answer this question