Skip to content

Commit

Permalink
Commented out MSG commands due to Home not having MSG.exe
Browse files Browse the repository at this point in the history
Signed-off-by: Michael J. Kidd <linuxkidd@gmail.com>
  • Loading branch information
linuxkidd committed Mar 19, 2024
1 parent bb301f7 commit 4ff8263
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ <h3 class="headerBlock">Generated Sequence</h3>
output.push(' '.repeat(indent)+"GOSUB waitForBailysOneStart");
output.push(' '.repeat(indent)+'TARGETNAME "BailysBeadsPreEclipse"');
output.push(' '.repeat(indent)+"PLAY SOUND Alert");
output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 Remove the Solar Filter!" WAIT False')
// output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 Remove the Solar Filter!" WAIT False')
output.push(' '.repeat(indent)+'SHOW NOTIFICATION "Remove the Solar Filter!" COLOUR Green DURATION '+(totalityDuration+bailysInterval).toString());
preOutput.push(" # Collect 'bailysCollection' every "+document.getElementById("bailysDelay").value+" seconds, until "+document.getElementById('full_begins').value);
addCollection("bailysCollection",document.getElementById('full_begins').value,document.getElementById("bailysDelay").value);
Expand All @@ -685,7 +685,7 @@ <h3 class="headerBlock">Generated Sequence</h3>
output.push(' '.repeat(indent)+"GOSUB waitForTotalityStart");
if(partialInterval==0 && partialCount==0 && bailysInterval==0) {
output.push(' '.repeat(indent)+"PLAY SOUND Alert");
output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 Remove the Solar Filter!" WAIT False')
// output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 Remove the Solar Filter!" WAIT False')
output.push(' '.repeat(indent)+'SHOW NOTIFICATION "Remove the Solar Filter!" COLOUR Green DURATION '+totalityDuration.toString());
}
output.push(' '.repeat(indent)+'TARGETNAME "FullEclipse"');
Expand All @@ -712,7 +712,7 @@ <h3 class="headerBlock">Generated Sequence</h3>
output.push(' '.repeat(indent)+"IF EARLIER THAN LOCALTIME "+secondsToTime(timeToSeconds(document.getElementById('full_ends').value) + bailysInterval));
indent+=4;
output.push(' '.repeat(indent)+"PLAY SOUND Error");
output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 URGENT! ---- Apply the Solar Filter! ---- URGENT!" WAIT False')
// output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 URGENT! ---- Apply the Solar Filter! ---- URGENT!" WAIT False')
output.push(' '.repeat(indent)+'SHOW NOTIFICATION "URGENT! Apply the Solar Filter! URGNET!" COLOUR Red DURATION 120');
indent-=4;
output.push(' '.repeat(indent)+"END IF");
Expand Down Expand Up @@ -751,7 +751,7 @@ <h3 class="headerBlock">Generated Sequence</h3>
}
}
output.push(' '.repeat(indent)+"PLAY SOUND Alert");
output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 Solar Eclipse Collection is Complete!" WAIT False')
// output.push(' '.repeat(indent)+'RUN C:\\Windows\\System32\\msg.exe WITH PARAMS "* /time:30 Solar Eclipse Collection is Complete!" WAIT False')
output.push(' '.repeat(indent)+'SHOW NOTIFICATION "Solar Eclipse Collection is complete!" COLOUR Green DURATION 120');

output.push(` END UNLOCK`);
Expand Down

0 comments on commit 4ff8263

Please sign in to comment.