/*
MORE.rexx by Galt of Atlantis ©1997 Edward D. Peyton

SOME programs don't turn the more prompt back on the way they should,
and it can be aggrivating when you go to read a long message.
On the other hand, sometimes you want to capture something, without
the more prompt ON. 

Install this program, add a command to your BBSMENU, Available everywhere:

MORE  {#0Pfiles:rexx/more.rexx}
Use a Control Q Of course, and edi the path.

When you type MORE, and the more prompt is OFF, it will turn it ON.
When you type MORE, and the more prompt is ON, it will turn it OFF.
If you type MORE 30, it will make sure the more prompt is ON, and set 
your terminal prefs to 30 lines. :)
Try it, and let me know if you find it useful.

Edward D. Peyton
Atlantis BBS: (904) 479-3133 | 479-4080
WebSite: http://www.pen.net/~atlantis
email : edp@pen.net  Edward Peyton@1:3612/369.0
snailmail:
5100 N 9th Ave F-601
Pensacola, FL 32504


*/
options results
getuser 1100454;mor=result
getuser 1302307;extra=result
if mor=0 then do
setobject 1
putuser 1100454
transmit "More prompt wasn't on, but it is now!"
end
if mor=1 then do
setobject 0
putuser 1100454
transmit "More prompt was on, but ain't now!"
end
getuser 1100468;hei=result
if extra < 68 & extra > 10 then do
setobject extra
putuser 1100468
transmit 'Screen height reset toca' extra 'c6lines.'
exit
end
transmit 'Screen height set atca' hei 'c6lines.n1 Type cbMORE #c6 for the number of lines you wish to display.'
transmit 'Then make sure you have turned the more prompt back on. :)'
exit
