home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Hack-Phreak Scene Programs
/
cleanhpvac.zip
/
cleanhpvac
/
CON-03A.ZIP
/
PIRACY.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-11-16
|
2KB
|
66 lines
(* Conspiracy BBS Software Version 0.02α (c)1995 Grooven Designs *)
(* Coded by Paul Maggs (flick) / Grooven Designs *)
(* Conspiracy main executable file *)
{$M $4000,0,0 }
uses
dos,
crt,
funct,
login,
mmenu,
ansi_drv,
configur,
ueditor,
wfc,
oneliner,
pager,
comms;
procedure paramaters;
begin
if (paramstr(1)='/?') then begin
writeln;
writeln('*:- (conspiracy v0.2α) --------------------------------:*');
writeln('|| /? - this help screen ||');
writeln('|| /i - information on groovy(tm) v0.01α ||');
writeln('|| /CONFIG - Conspiracy Configuration ||');
writeln('|| /USER - Conspiracy User Editor ||');
writeln('|| /USERPACK - Conspiracy Userbase Packer ||');
writeln('*:-------------------------------- (grooven designs ) -:*');
writeln;
writeln(' -------* thank-you for choosing conspiracy');
halt;
end;
if (paramstr(1)='/i') then begin
writeln;
writeln('*:- (groovy(tm) v0.2α) --------------------------------:*');
writeln('|| Conspiracy is coded by Paul Maggs/Grooven Designs ||');
writeln('|| Conspiracy WHQ - Groovy(tm) - +61-3-9885-4475 ||');
writeln('*:-------------------------------- (grooven designs ) -:*');
writeln;
writeln(' -------* thank-you for choosing conspiracy');
halt;
end;
if (paramstr(1)='/CONFIG') or (paramstr(1)='/config') then begin
run_config;
end;
if (paramstr(1)='/USER') or (paramstr(1)='/user') then begin
run_usered;
halt;
end;
end;
begin
checkbreak:=false;
exec('amiga.exe','');
if paramstr(1)<>'' then paramaters;
init_user_file;
run_wfc;
end.