
  _________._____._____._____._____._____._____._____._____._____
  )        )  _. )  ___)     )  )  )  ___)  _. )  _. )     )  ___)
 /  /  /  /  /  /__   >  /  /  /  /  ___/  / </  /  /  /  /  ___/
(__(__(__(__(__(_____(__   /_____(_____(__(__(__(__(_____(_____(bd
                              (__( www.masqueradebbs.com     

Masquerade Last Callers v1.1
Author : Blakdeth 
Email  : blakdeth(at)masqueradebbs(dot)com
Support: http://www.masqueradebbs.com

Installation

1. Copy lastcaller.ans and lastcallers.asc to \sbbs\text\menu
2. Copt lastcaller.js and date.js to \sbbs\exec
3. Create a new External Program via 
	SCFG -> External Programs -> Online Programs -> 
	Main -> Available Online Programs...

Use the following parameters:

Online Program Name : Last Callers

Internal Code              LASTCALL
Start-up Directory
Command Line               ?lastcallers
Clean-up Command Line
Execution Cost             None
Access Requirements
Execution Requirements
Multiple Concurrent Users  Yes
Intercept Standard I/O     No
Native (32-bit) Executable No
Use Shell to Execute       No
Modify User Data           No
Execute on Event           No
Pause After Execution      Yes
BBS Drop File Type         None
Place Drop File In         Node Directory
Time Options...

You don't have to place this in "Main". It can go in any External 
Program sub-menu.

Now you can call LASTCALL from your Baja command shell with the 
following command:

cmdkey L
exec_xtrn "LASTCALL"
end_cmd

4. (Optional) To include the Masquerade Last Callers module instead
of the deafult last callers during logon... 
	- Edit LOGON.JS
	- Comment out the following code:

/* 
console.aborted=false;
console.clear();
logonlst=system.data_dir + "logon.lst"
if(file_size(logonlst)<1)
printf("\1n\1g\1hYou are the first caller of the day!\r\n");
else {
printf("\1n\1g\1hLast few callers:\1n\r\n");
console.printtail(logonlst,P_NOATCODES,4);
}
console.crlf();
*/

	- Replace the commented code with:

// Masquerade Last Callers
load("lastcallers.js");

That should do it.

History:

Version 1.1
	- Includes date.js which was left out of the previous release.