Copy Link
Add to Bookmark
Report

Doom Editing Digest Vol. 01 Nr. 445

eZine's profile picture
Published in 
Doom editing
 · 24 Apr 2024

From:      owner-doom-editing-digest 
To: doom-editing-digest@nvg.unit.no
Subject: doom-editing-digest V1 #445
Reply-To: doom-editing
Errors-To: owner-doom-editing-digest
Precedence: bulk


doom-editing-digest Sunday, 15 October 1995 Volume 01 : Number 445

Hexen Sounds
RE: DOOM editing, or Hexen editing
'other' posts...
WEEKLY REMINDER : Beginner's Questions
tcl
Re: 'other' posts...

----------------------------------------------------------------------

From: Josh LaGrew <lagrewj@sunny.health.state.mn.us>
Date: Sat, 14 Oct 95 08:56:57 CDT
Subject: Hexen Sounds

Hi,
I have a Sound Machine 16(jazz mulitmedia) sound card. I cannot hear the d
digital sound effects in Hexen,but I can hear the sound fine. If anyone
else has had this problem and fixed it could you e-mail me privately.
Thanks

P.S. I have a 486dx/2 66 with 16 megs of ram and am running WIN 95.


------------------------------

From: d.moeller@rendsburg.netsurf.de (Denis)
Date: Sat, 14 Oct 1995 14:36:22 +0100
Subject: RE: DOOM editing, or Hexen editing

>When I first found out about this group, all I got was DOOM-editing stuff.
Now, all I'm getting is 'Hexen-Editing', and I was not informed about the
changein editing formats.
>
>Does anyone else have this feeling.
>
>I agree 100%! This is _DOOM_ Editing, people!
Nononononono, I'm fine with the Heretic/Hexen talking. It's basicaly Doom,
so - what do you want?

cya
Denis
[] Denis Moeller, author of NWT v1.3 and TiC's WAD Reviews. []
[] Just play our Doom (2) Add-Ons: Sudtic, Teutic, Obtic. Thanks. []
[]------------ E-Mail: d.moeller@rendsburg.netsurf.de ------------[]


------------------------------

From: "Gregg J. Anderson" <gander@krypton.mankato.msus.edu>
Date: Sat, 14 Oct 1995 12:48:07 -0500 (CDT)
Subject: 'other' posts...

I am starting to wonder if this list has been listed in some book,
magazine, CD-ROM, or something like that. We seem to have been getting an
awful lot of strange posts lately...

=Gregg=

_____________________________________________________________________________
Gregg J. Anderson =o= gander@krypton.mankato.msus.edu
Mankato State University =o= gander@vax1.mankato.msus.edu
Mankato, MN USA =o= Flames: Barney@purple.dino.CIA.gov
- -----------------------------------------------------------------------------
GCS/MU/O d? H S g=(?) p? au-->+ a- wH V- C++>++++ UU>Lu(u-) P+ L 3 E N++
K++ W--- M-- V-@ -po+ Y+ ++@ !5 jx R G? tv- b+(b) D++>+++ B++ e+>e- u++(u)
h+@ F? r* n-- y+>++
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


------------------------------

From: John Wakelin <johnw@datametrics.com>
Date: Sat, 14 Oct 95 15:03:50 -0500
Subject: WEEKLY REMINDER : Beginner's Questions

This message is being posted at the request of the list's caretakers.

====================================================================

FROM: the list caretaker; *** A REMINDER ***

The DOOM-editing list is not a list aimed at newcomers to DOOM-editing. Its
purpose is to provide discussions on *advanced* DOOM editing techniques.
Many of its members are not tolerant of repeated "beginners" questions.
Sorry--that's just the way they are ;) There is much that beginners can
learn from the list, however, and we would like the list to be of use to as
many subscribers as possible.

In the past, there has been much moaning about new subscribers asking what
old-hands feel to be "typical newbie questions", usually posted in
ignorance of the fact that the topic has been discussed to death
previously. This leaves newcomers in a quandary: to post or not to post?

Well, help is at hand. The "Beginners Questions Service" can act as a
buffer between you and the higher echelons of the DOOM-editing elite,
conceited lot that they are. It works like this: if you have a question but
don't know whether it's advanced or not, and would like to avoid any
potential embarrassment from asking the question in front of the whole
list, you are encouraged to mail it in the first instance to:

John Wakelin : johnw@datametrics.com

Your question will either be answered or, if deemed appropriate for the
list, forwarded to it. This service is offered as a potential red-face
saving and list-annoyance abatement service: there is absolutely no
requirement on anyone to make use of this service, but doing so may get you
an answer quicker than sending to the list, and can potentially save you
from finding yourself in the middle of a flaming. But then, as a DOOMster,
you can take a toasting, right?

**NOTE: If your questions are prefixed with the code WQ: in the subject
field (e.g. Subject: WQ: Sprites), they will be processed quicker because
they will be brought to light sooner!**


Remember also that if you want any general info about this list, you should
send mail to the list-server, thus:

To: majordomo@nvg.unit.no
Subject:
Body: info doom-editing
====================================================================

ADDENDUM - This list looks very unfavorably upon chain-letters (No
matter what the cause). The caretakers have indicated that persons
posting these items to this list are subject to immediate
unsubscription with no warning. CONSIDER THIS YOUR WARNING.

=====================================================================
This reminder will be posted here weekly, with the subject title:

WEEKLY REMINDER : Beginner's Questions


------------------------------

From: davidm@rd.qms.com
Date: Sat, 14 Oct 95 18:02:42 CST
Subject: tcl

#!/rd/tools/bin/wish -f

listbox .list -yscroll ".scroll set"
pack .list -side
left
scrollbar .scroll -command ".list yview"
pack .scroll -side right -fill
y

if {$argc > 0} {
set dir [lindex $argv 0]
} else {
set dir .
}
cd
$dir
foreach i [lsort [glob * .*]]
.list insert end $i
}
bind .list
<Double-ButtonPress-1> {
set dir "."
browse $dir [selection
get]
}
bind all <Control-c> {destroy .}
proc browse {dir file} {
set file
$dir/$file
if [file isdirectory $file] {
exec browse $file &

} else {
if [file isfile $file] {
exec
xedit $file &
} else {
error "can't browse
$file"

}
}
}


hi dave

#!/rd/tools/bin/wish -f

listbox .list -yscroll ".scroll set
pack .list -side left
scrollbar .scroll -command "
.list yview"
pack .scroll -side right -fill y

if {$argc > 0} {
set dir [lindex $argv 0]
} else {
set dir .
}
cd $dir
foreach i [lsort [glob * .*]] {
.list insert end $i
}
bind .list <Double-ButtonPress-1> {
set dir "
."
browse $dir [selection get]
}
bind all <Control-c> {destroy .}
proc browse {dir file} {
set file $dir/$file
if [file isdirectory $file] {
exec browse $file &
} else {
if [file isfile $file] {
exec xedit $file &
} else {
error "
can't browse $file
}
}
}

------------------------------

From: Ty Halderman <thldrmn@neosoft.com>
Date: Sat, 14 Oct 1995 18:29:48 -0500
Subject: Re: 'other' posts...

At 12:48 PM 10/14/95 -0500, you wrote:
>
>I am starting to wonder if this list has been listed in some book,
>magazine, CD-ROM, or something like that. We seem to have been getting an
>awful lot of strange posts lately...

Funny you should mention that. I just was perusing my copy of Sams
Publishing's "Tricks of the DOOM Programming Gurus" and sure enough on page
828 under mailing lists is:

DOOM EDITING
(nvg.unit.no)
Maintained by Steve Benner (S. Benner@Lancaster.ac.uk).
Advanced DOOM editing list. Topics of discussion focus mainly on
design issues. Heavy traffic.

I'm sure there are other listings as well; this one just happened to jump
out at me. It doesn't explain the BBS-ish "Hi there" stuff of late, though.
No offense to BBS's :)


=-Ty Halderman (thldrmn@neosoft.com)-=
=- Keeper of Things Miscellaneous -=


------------------------------

End of doom-editing-digest V1 #445
**********************************

← previous
next →
loading
sending ...
New to Neperos ? Sign Up for free
download Neperos App from Google Play
install Neperos as PWA

Let's discover also

Recent Articles

Recent Comments

Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT