home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Hack-Phreak Scene Programs
/
cleanhpvac.zip
/
cleanhpvac
/
TELIX.ZIP
/
TELIX351.DAT
/
OPUS.SLT
< prev
next >
Wrap
Text File
|
1996-05-01
|
1KB
|
46 lines
////////////////////////////// OPUS.SLT ////////////////////////////////////
// This is a sample script for logging on to an OPUS based system.
str user_name[] = "John Smith;y";
// Put your name in the above line. The script will get the proper password
// from the dialing directory (Telix puts that password in the script system
// variable called _entry_pass).
// Before using this script for the first time, or when you make a change,
// type 'cs opus' at the DOS prompt to compile the script for use by Telix.
//////////////////////////////////////////////////////////////////////////////
main()
{
alarm (1);
if (not _entry_pass) // no pass, so didn't recog. board
{
prints ("Sorry, I don't know the password for this BBS!");
return;
}
if (not waitfor (" name:", 180)) // if no prompt for name
{
prints ("Log-on failed!");
return; // ...abort
}
cputs (user_name); // send name
cputs ("^M");
if (not waitfor ("Password:", 20)) // if no prompt for password
{
prints ("Log-on failed!");
return; // ...abort
}
cputs (_entry_pass); // send pass
cputs ("^M");
}