Schedule Timer - Possibly working overboard on doing this?
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..
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 } |
10 | require game.ServerScriptStorage.GetTime; |
11 | function StartBell(schedu) |
13 | local schn = tonumber (schedu) |
15 | local hours,mins,secs,pm = GetTime() |
17 | local isonperiod = false |
18 | for a = 1 ,#PSchedules [ schn ] [ 2 ] do |
19 | print (hours,PSchedules [ schn ] [ 2 ] [ a ] [ 2 ] ) |
20 | if hours> = PSchedules [ schn ] [ 2 ] [ a ] [ 2 ] then |
21 | if mins> = PSchedules [ schn ] [ 2 ] [ a ] [ 3 ] then |
22 | print ( "passd " ..schn,a) |
27 | if hours < = PSchedules [ schn ] [ 2 ] [ checkloop ] [ 4 ] then |
28 | if mins < PSchedules [ schn ] [ 2 ] [ checkloop ] [ 5 ] then |
33 | hours,mins,secs,pm = GetTime() |
36 | if hours < = PSchedules [ schn ] [ 2 ] [ checkloop ] [ 4 ] then |
37 | if mins < PSchedules [ schn ] [ 2 ] [ checkloop ] [ 5 ] then |
38 | if hours > PSchedules [ schn ] [ 2 ] [ checkloop ] [ 2 ] then |
39 | if mins > = PSchedules [ schn ] [ 2 ] [ checkloop ] [ 3 ] then |
45 | if isonperiod = = true then |
46 | print ( "Is On Period.." ) |
48 | if hours < PSchedules [ schn ] [ 2 ] [ checkloop ] [ 4 ] then |
49 | remainmins = PSchedules [ schn ] [ 2 ] [ checkloop ] [ 4 ] -hours |
50 | remainmins = remainmins* 60 |
51 | print ( "Added " ..remainmins ".. to remaining time.." ) |
53 | if PSchedules [ schn ] [ 2 ] [ checkloop ] [ 5 ] > mins then |
54 | remainmins = remainmins+PSchedules [ schn ] [ 2 ] [ checkloop ] [ 5 ] -mins |
56 | print ( "Remaining Time set to " ..remainmins) |
58 | print ( "Is Not On Period.." ) |
59 | if PSchedules [ schn ] [ 2 ] [ checkloop ] = = nil then |
61 | print ( "The bell could NOT find the next loop and died.." ) |
63 | if PSchedules [ schn ] [ 2 ] [ checkloop ] [ 2 ] = = hours then |
64 | if PSchedules [ schn ] [ 2 ] [ checkloop ] [ 3 ] <mins then |
66 | print ( "Added to next wait loop" ) |
69 | if PSchedules [ schn ] [ 2 ] [ checkloop ] [ 2 ] = = hours then |
70 | print ( "Waiting Till Next Period.." ) |
72 | if hours < PSchedules [ schn ] [ 2 ] [ checkloop ] [ 2 ] then |
73 | remainmins = PSchedules [ schn ] [ 2 ] [ checkloop ] [ 2 ] -hours |
74 | remainmins = remainmins* 60 |
76 | if PSchedules [ schn ] [ 2 ] [ checkloop ] [ 5 ] > mins then |
77 | remainmins = remainmins+PSchedules [ schn ] [ 2 ] [ checkloop ] [ 3 ] -mins |
82 | print ( "CurrentTime: " ..hours.. ":" ..mins) |
83 | print ( "NextPeriodBeforeTime: " ..PSchedules [ schn ] [ 2 ] [ checkloop ] [ 2 ] .. ":" ..PSchedules [ schn ] [ 2 ] [ checkloop ] [ 3 ] ) |
84 | print ( "NextPeriodAfterTime: " ..PSchedules [ schn ] [ 2 ] [ checkloop ] [ 4 ] .. ":" ..PSchedules [ schn ] [ 2 ] [ checkloop ] [ 5 ] ) |
85 | print ( "RemainingMinutes: " ..remainmins) |
86 | print ( "CurrentSchedule: " ..PSchedules [ schn ] [ 1 ] ) |
87 | print ( "CurrentPeriod: " ..PSchedules [ schn ] [ 2 ] [ checkloop ] [ 1 ] ) |
88 | print ( "Is it that period?: " ..(isonperiod and "true" or "false" )) |
89 | print ( "----------------------------------" ) |
93 | print ( "TheBellDied.." ) |
Am I going overboard on how to check for this information, or is their an easier way?