Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Requesting Help with Setting Up Doors

118 views
Skip to first unread message

buck...@gamebanshee.com

unread,
Sep 13, 2013, 12:14:07 AM9/13/13
to
Hey guys,

I'm tinkering with a new BBS in my spare time for the sake of nostalgia, and am having difficulty setting up Arrowbridge I and II, Assassin (it loads on the BBS side but the terminal console just hangs), and Exitilus. Is anyone willing to share the Synchronet and door settings they used to get these games working?

Any help would be greatly appreciated!

Nightfox

unread,
Sep 13, 2013, 2:07:49 AM9/13/13
to bucksatan
To: bucksatan
Re: Requesting Help with Setting Up Doors
By: bucksatan to alt.bbs.synchronet on Thu Sep 12 2013 21:14:07

bu> I'm tinkering with a new BBS in my spare time for the sake of nostalgia,
bu> an= d am having difficulty setting up Arrowbridge I and II, Assassin (it
bu> loads = on the BBS side but the terminal console just hangs), and
bu> Exitilus. Is any= one willing to share the Synchronet and door settings
bu> they used to get thes= e games working?

Arrowbridge 1:
+[�][?]----------------------------------------------------+
� Arrowbridge 1 �
�----------------------------------------------------------�
� �Name Arrowbridge 1 �
� �Internal Code ABRIDGE1 �
� �Start-up Directory \BBS\DOORS\ABRIDGE1 �
� �Command Line ABRIDGE1.BAT %# �
� �Clean-up Command Line �
� �Execution Cost None �
� �Access Requirements �
� �Execution Requirements �
� �Multiple Concurrent Users Yes �
� �Intercept I/O No �
� �Native Executable No �
� �Use Shell to Execute Yes �
� �Modify User Data No �
� �Execute on Event No �
� �Pause After Execution No �
� �BBS Drop File Type GAP DOOR.SYS �
� �Place Drop File In Node Directory �
+----------------------------------------------------------+
And my ABRIDGE1.BAT file:
@echo off
D:
cd \BBS\DOORS\ABRIDGE1
ABRIDGE.EXE /NODE%1 /PD:\BBS\sbbs\node%1


Arrowbridge 2:
+[�][?]----------------------------------------------------+
� Arrowbridge 2 �
�----------------------------------------------------------�
� �Name Arrowbridge 2 �
� �Internal Code ABRIDGE2 �
� �Start-up Directory \BBS\DOORS\ABRIDGE2 �
� �Command Line ABRIDGE2.BAT %# �
� �Clean-up Command Line �
� �Execution Cost None �
� �Access Requirements �
� �Execution Requirements �
� �Multiple Concurrent Users Yes �
� �Intercept I/O No �
� �Native Executable No �
� �Use Shell to Execute Yes �
� �Modify User Data No �
� �Execute on Event No �
� �Pause After Execution No �
� �BBS Drop File Type GAP DOOR.SYS �
� �Place Drop File In Node Directory �
+----------------------------------------------------------+
And my ABRIDGE2.BAT file:
@echo off
D:
cd \BBS\DOORS\ABRIDGE2
AB2.EXE /NODE%1 /PD:\BBS\sbbs\node%1

Exitilus:
+[�][?]----------------------------------------------------+
� Exitilus �
�----------------------------------------------------------�
� �Name Exitilus �
� �Internal Code EXITILUS �
� �Start-up Directory \BBS\DOORS\EXITILUS �
� �Command Line ex.bat %# �
� �Clean-up Command Line �
� �Execution Cost None �
� �Access Requirements �
� �Execution Requirements �
� �Multiple Concurrent Users Yes �
� �Intercept I/O No �
� �Native Executable No �
� �Use Shell to Execute Yes �
� �Modify User Data No �
� �Execute on Event No �
� �Pause After Execution No �
� �BBS Drop File Type GAP DOOR.SYS �
� �Place Drop File In Node Directory �
+----------------------------------------------------------+
And my ex.bat:
@echo off
D:
cd \BBS\DOORS\EXITILUS
EXITILUS.EXE %1

Nightfox

---
� Synchronet � Digital Distortion BBS - digitaldistortionbbs.com
--- Synchronet 3.16a-Win32 NewsLink 1.101
* Vertrauen - Riverside County, California - telnet://vert.synchro.net

Digital Man

unread,
Sep 13, 2013, 1:48:43 AM9/13/13
to Nightfox
To: Nightfox
Re: Requesting Help with Setting Up Doors
By: Nightfox to bucksatan on Thu Sep 12 2013 10:07 pm

> And my ABRIDGE1.BAT file:
> @echo off
> D:
> cd \BBS\DOORS\ABRIDGE1
> ABRIDGE.EXE /NODE%1 /PD:\BBS\sbbs\node%1

> And my ABRIDGE2.BAT file:
> @echo off
> D:
> cd \BBS\DOORS\ABRIDGE2
> AB2.EXE /NODE%1 /PD:\BBS\sbbs\node%1

> And my ex.bat:
> @echo off
> D:
> cd \BBS\DOORS\EXITILUS
> EXITILUS.EXE %1

You know these batch files don't actually accomplish anything, right? :-) The
changing of drive/directory is already done by Synchronet (with the startup dir
option) and the command-line can just be typed in SCFG - no batch file needed.

digital man

Synchronet "Real Fact" #76:
Rob Swindell still has dozens of BBS-related magazines in his possession.
Weather station currently offline (out for repair)

Nightfox

unread,
Sep 13, 2013, 11:27:48 AM9/13/13
to
To: Digital Man
Re: Requesting Help with Setting Up Doors
By: Digital Man to Nightfox on Thu Sep 12 2013 22:48:43

DM> You know these batch files don't actually accomplish anything, right? :-)
DM> The changing of drive/directory is already done by Synchronet (with the
DM> startup dir option) and the command-line can just be typed in SCFG - no
DM> batch file needed.

Ah, makes sense.. Old habits, I guess. :) One reason I like using a batch
file, though, is that if there's anything wrong with the door, I can put a
"pause" command in my batch file so I can see the output in the console before
it closes. Also, if I'm calling the .exe directly in my configuration and want
to change it, I need to wait for all users to log off before the change goes
into effect.

Nightfox

---
� Synchronet � Digital Distortion BBS - digitaldistortionbbs.com

Digital Man

unread,
Sep 13, 2013, 8:39:09 PM9/13/13
to Nightfox
To: Nightfox
Re: Requesting Help with Setting Up Doors
By: Nightfox to Digital Man on Fri Sep 13 2013 07:27 am

> Re: Requesting Help with Setting Up Doors
> By: Digital Man to Nightfox on Thu Sep 12 2013 22:48:43
>
> DM> You know these batch files don't actually accomplish anything, right?
> DM> :-) The changing of drive/directory is already done by Synchronet
> DM> (with the startup dir option) and the command-line can just be typed
> DM> in SCFG - no batch file needed.
>
> Ah, makes sense.. Old habits, I guess. :) One reason I like using a
> batch file, though, is that if there's anything wrong with the door, I can
> put a "pause" command in my batch file so I can see the output in the
> console before it closes. Also, if I'm calling the .exe directly in my
> configuration and want to change it, I need to wait for all users to log
> off before the change goes into effect.

Yeah, it doesn't hurt anything. But for new sysops, unnecessary batch files are
an extra item to mess-up so I try to avoid using them in my examples.

digital man

Synchronet "Real Fact" #61:
Name of Synchronet PCMS compiler/language "Baja" was coined by Michael Swindell.
Weather station currently offline (out for repair)

buck...@gamebanshee.com

unread,
Sep 24, 2013, 1:13:13 AM9/24/13
to
Thanks Nightfox! While I'm definitely far closer than I was, I cannot get Arrowbridge to run because it's looking for a KINGRULE.ABR file that is not in my path. The file is not in the original archive and running ABTOOLS SETUP does not generate this file. Any idea how to obtain it?

Also, I'm having some problems getting Dungeon Master and The Pit to run, too. Any chance you know what the door settings should be for those?

Thanks again!
0 new messages