home *** CD-ROM | disk | FTP | other *** search
- procedure breakout;
- begin
- textcolor (7);
- textbackground (0);
- updateuserstats;
- writeln (' [ Break ]');
- ensureclosed;
- window (1,1,80,25);
- gotoxy (1,25);
- clreol;
- if not carrier then dontanswer;
- halt(4)
- end;
-
- var gotoforumterm:boolean;
- begin
- textmode (BW80);
- readconfig;
- if length(overlaypath)>0 then ovrpath (overlaypath);
-
- init;
- fromdoor:=false;
- if not carrier then titlepage;
- repeat
- gotoforumterm:=false;
- begin
- waitcall;
- gotoforumterm:=not (online or local);
- if gotoforumterm then halt (7) else getlogin
- end;
- if not gotoforumterm then begin
- votingbooth (true);
- mainmenu;
- fromdoor:=false;
- if not disconnected then disconnect;
- ensureclosed;
- clrscr;
- init
- end
- until not gotoforumterm;
- dontanswer;
- halt(2)
- end.