Skip to content
Snippets Groups Projects
Commit 2128ee2f authored by nightfox's avatar nightfox
Browse files

Updated some comments

parent b0cceff9
No related branches found
No related tags found
No related merge requests found
......@@ -30,14 +30,12 @@ var subBoardNum = Number(argv[0]);
var scanMode = Number(argv[1]);
var searchText = argv[2];
/*
// Temporary - For debugging
console.print("DDScanPosts\r\n");
console.print("Sub-board #: " + subBoardNum + " (" + typeof(subBoardNum) + ")\r\n");
console.print("Scan mode: " + scanMode + " (" + typeof(scanMode) + ")\r\n");
console.print("Search text:" + searchText + ": (" + typeof(searchText) + ")\r\n");
console.print("DDScanPosts\r\n");
console.print("Scan mode: " + scanMode + " (" + typeof(scanMode) + ")\r\n");
if (scanMode == SCAN_READ)
console.print("SCAN_READ\r\n");
if ((scanMode & SCAN_CONST) == SCAN_CONST)
......@@ -56,9 +54,10 @@ console.pause();
// End Temporary
*/
// SYSOPS: Change the msgReaderPath variable if you put Digital Distortion
// Message Reader in a different path
var msgReaderPath = "../xtrn/DDMsgReader";
var msgReaderPath = "/BBS/sbbs/xtrn/DigDist/MsgReader";
// The start of the command string to use with bbs.exec()
......
......@@ -30,7 +30,7 @@ var scanMode = Number(argv[1]);
// SYSOPS: Change the msgReaderPath variable if you put Digital Distortion
// Message Reader in a different path
var msgReaderPath = "../xtrn/DDMsgReader";
var msgReaderPath = "/BBS/sbbs/xtrn/DigDist/MsgReader";
/*
// Temporary - For debugging
......@@ -55,13 +55,6 @@ console.pause();
// End Temporary
*/
// My functionality:
// TODO: Update this and make my reader integrate into this better. I'd like
// to add a command-line option to my reader to suppress the "Scan for new
// messages to you", etc. text before the prompt.
// The start of the command string to use with bbs.exec()
var rdrCmdStrStart = "?" + msgReaderPath + "/DDMsgReader.js ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment