Search for "FeR": 143 matches

3D Coding tutorial by Ica of Hubris
/code/3d/docs/3dica221.zip
30 Jun 1998 (catalog date)
422,704 bytes
Download FTP scene.org
Rating:
This tutorial is very easy to understand and describes everything you need to know like the mathematical basics, the different kind of polyfillers, shading methods, camera movement, sorting and backface culling and much much more. A must-have for every 3d coder! Text

3D Shadow Tutorial by Fuzzel of Haujobb
/code/3d/docs/shadows.zip
17 Jan 1999 (catalog date)
121,258 bytes
Download FTP scene.org
Rating:
Explains how to do shadows in 3d using a zbuffer algorithm.

Polyfiller Tutorial by Karma of TFL-TDV
/code/3d/docs/ttka3ddo.zip
18 Jan 1998 (catalog date)
15,613 bytes
Download FTP scene.org
Rating:
A good explanation of different types of polyfillers.

Simple 3D Engine by Zjack of DCC
/code/3d/systems/toruskit.zip
17 Jan 1999 (catalog date)
104,753 bytes
Download FTP scene.org
Rating:
An outdated 3d engine in assembler using different tricks that used to be populair a few years ago, like a 50hz mode and a weird vga resolution.

F. mod docs by Firelight
/code/audio/docs/fmoddoc.zip
10 Jan 1997 (catalog date)
83,795 bytes
Download FTP scene.org
Rating:
Firelight's mod format description - The perfect text file for someone who is writing a mod player especially first timers. Assumes knowledge of programming and doesn't cover details of sound card specific issues, like setting up a DMA transfer or initializing the sound card.

GDM module player by Raphius of Anubis
/code/audio/players/gdmkit10.zip
30 Jun 1998 (catalog date)
183,070 bytes
Download FTP scene.org
Rating:
GUS and Soundblaster sound totaly different with this player. Pascal

Indoor Music System by Pascal of Cubic Team
/code/audio/players/ims06.zip
17 Jan 1999 (catalog date)
314,727 bytes
Download FTP scene.org
Rating:
This is the player used by the wellknown Cubic Player. Supports a lot of different soundcards and a lot of different file formats including .IT files.

MIDAS by Alfred, Guru of Sahara Surfers
/code/audio/players/mds10b1.zip
01 Jul 1997 (catalog date)
1,410,314 bytes
Download FTP scene.org
Rating:
A music system for Watcom coders. Supports most file formats, SB, GUS, other soundcards.

MIDAS by Alfred, Guru of Sahara Surfers
/code/audio/players/midas061.zip
01 Jul 1997 (catalog date)
1,490,716 bytes
Download FTP scene.org
Rating:
A music system for Watcom coders. Supports most file formats, SB, GUS, other soundcards.

Midas v1.11 by Sahara Surfers
/code/audio/players/midas111.zip
17 Jan 1999 (catalog date)
1,981,785 bytes
Download FTP scene.org
Rating:
This version fixes some bugs in the 1.1 version, which was really necessary because some demos who used that version really sounded bad on a gus, so make sure you use this version, and not an older one!

MikMod 0.30 by MikMak
/code/audio/players/mikdx030.zip
01 Jul 1997 (catalog date)
282,898 bytes
Download FTP scene.org
Rating:
A mod player for use with Direct Sound. Judging by MikIT, the player is nice. I prefer MikIT to mod4win. Give this a shot if you're doing windows sound coding.

Sound Deluxe System 5.04 by Maple Leaf
/code/audio/players/sds504.zip
17 Jan 1999 (catalog date)
603,983 bytes
Download FTP scene.org
Rating:
This player supports a lot of different module formats, but the GUS support seems to have a bug because I hear nothing, while it works great on my Soundblaster Pro. It supports a lot of different languages, including Turbo Basic!

Data (de)compressing Library by Markus Oberhumer
/code/compress/lzo100.zip
17 Jan 1999 (catalog date)
375,931 bytes
Download FTP scene.org
Rating:
Favours speed over compression ratio which makes it very suitable for realtime (de)compression. Supports a lot of different operating systems and even the Atari ST TOS.

Chaos source by Mrock of Hellcore
/code/demosrc/intros/chaossrc.zip
19 Jan 1998 (catalog date)
30,532 bytes
Download FTP scene.org
Rating:
Source for a tunnel effect with an adlib player. Different from chaos4k1.zip. Fairly nice code, some useful comments... very average.

DOS Utilities by Sam of TFL-TDV
/code/dos/collstuf.zip
26 Feb 1998 (catalog date)
34,149 bytes
Download FTP scene.org
Rating:
Contains some simple dos utilities coded in different languages.

128 byte fire by Gaffer of Prometheus
/code/effects/fire/flame128.zip
30 Jun 1998 (catalog date)
2,363 bytes
Download FTP scene.org
Rating:
Assembler

small flame by Gaffer of PRoMETHEUS
/code/effects/fire/flame160.zip
18 Mar 1997 (catalog date)
2,964 bytes
Download FTP scene.org
Rating:
Source for a small fire routine. Doesn't actually work on my computer. To answer a question proposed by the author about size optimization, inc al is bigger than inc ax because intel doesn't have an inc /r8 instruction. inc ax is of the form inc /r16 which compiles to db 40+rw, where rw = 0 for ax, 1 for cx, 2 for dx, 3 for bx, ... inc al is of the form inc r/m8 and compiles to db FE /1 where /1 = c0 for al, c4 for ah, c1 for bl..., 05 for a memory reference.... See an intel document for more details.

184 Byte Fire Routine by Gaffer of Prometheus
/code/effects/fire/flame184.zip
05 Oct 1996 (catalog date)
2,669 bytes
Download FTP scene.org
Rating:
tight code

Circle Interference by Keith of Pixel Magic
/code/effects/interfer/ks_cwarp.zip
21 Sep 1997 (catalog date)
38,975 bytes
Download FTP scene.org
Rating:

Circle Interference by Kaos of Black Magic
/code/effects/interfer/techfun.zip
21 Sep 1997 (catalog date)
32,451 bytes
Download FTP scene.org
Rating:

OTM Voxel by Voltaire of OTM
/code/effects/land/otmvoxel.zip
10 Jan 1997 (catalog date)
187,665 bytes
Download FTP scene.org
Rating:
Tries to explain what voxels really are - Most people will ignore the difference anyway. :( And this example leaves much to be desired.

bglass by Konrad Olejnik of K!O
/code/effects/lens/bglass.zip
19 Jan 1998 (catalog date)
50,803 bytes
Download FTP scene.org
Rating:
Bumped glass routine. For TMT pascal. You might call this a bump map type effect. The difference I'm going to call is that bump map routines alter light intensity while lens routines change your position in a texture map. Interesting way to get the timer! :) For C users, that would be int *time = 0x046C. See a BIOS data reference for further details.

Raster Routines by Krazy One of Chaos
/code/effects/raster/rastdemo.zip
29 May 1997 (catalog date)
196,623 bytes
Download FTP scene.org
Rating:
3 different raster effects, made for a never finished demo.

Sprite Editor by Nosferatu of TechnoCap
/code/effects/sprites/edispr20.zip
26 Jun 1997 (catalog date)
66,923 bytes
Download FTP scene.org
Rating:
This editor has no mouse support, and hardly contains any editing tools. It only supports the french language.

Zed3D v0.95 - 3D Graphics Reference by Zed
/code/effects/various/zed3d095.zip
07 Oct 1996 (catalog date)
702,570 bytes
Download FTP scene.org
Rating:
Phong, Gouraud, Textures, etc.

Wormhole by Lucifer of Lucifer
/code/effects/wormhole/1luc_wrm.zip
10 Jan 1997 (catalog date)
10,614 bytes
Download FTP scene.org
Rating:
Qbasic sources for a wormhole - QBasic?!? Nifty! :)

File Formats by Max Maischein
/code/formats/ffmts002.zip
18 Jan 1998 (catalog date)
102,097 bytes
Download FTP scene.org
Rating:
A description of over 100 different file formats.

Intel docs by ?
/code/hardware/cpu/intel.doc
10 Jan 1997 (catalog date)
114,654 bytes
Download FTP scene.org
Rating:
A complete listing of the 80x86 opcodes - Great reference for those learning assembler and those needing to double check opcodes. Dubious clock listings (none for pentium.)

Keyboard handler by Patch
/code/hardware/keyboard/kbdhand9.zip
10 Jan 1997 (catalog date)
26,409 bytes
Download FTP scene.org
Rating:
Source for making a keyboard handler (int 9) and reading the keyboard from the handler - Doesn't tell you much, but is a good demonstration. I'd suggest for those needing to write a keyboard handler is to get a hardware reference for the keyboard and see what other options are available and how the code works.

Obbuf v3.2 by Ondrej Blazek
/code/hardware/keyboard/obbuf.zip
26 Feb 1998 (catalog date)
12,658 bytes
Download FTP scene.org
Rating:
Fills the keyboard buffer with specific keystrokes before running a program. Very useful if you often use the same functions of a program when you start it.

MOD v1.0 by Dake of Devotion
/code/hardware/video/dk-mod10.zip
26 Jan 1998 (catalog date)
5,010 bytes
Download FTP scene.org
Rating:
Source to change to different text modes. More complex than necessary. Good commenting.

Mode Switching Routines by Jeff Morgan
/code/hardware/video/modsrc21.zip
17 Jan 1999 (catalog date)
18,402 bytes
Download FTP scene.org
Rating:
These routines set different vga video modes without using the bios routines.

Prometheus Truecolor System by Gaffer of Xtatic
/code/hardware/video/ptc071.zip
17 Jan 1999 (catalog date)
1,750,391 bytes
Download FTP scene.org
Rating:
This is a hardware independent library for dos and windows for accessing the videocard.

VGA Info by Andrew Scott
/code/hardware/video/vga-info.zip
10 Jan 1997 (catalog date)
139,440 bytes
Download FTP scene.org
Rating:
A VGA reference manual - Poor layout. I found it difficult to find things. Not as if the VGA card has changed, but the information seems outdated.

VidTimer by Zax
/code/hardware/video/vtime110.zip
10 Jan 1997 (catalog date)
179,797 bytes
Download FTP scene.org
Rating:
A utility to give you bliting times from your video card - Same as vblitz13.zip, just a different version.

Tweak VGA Library by Type One of TFL-TDV
/code/library/flamoot.zip
01 Dec 1997 (catalog date)
14,836 bytes
Download FTP scene.org
Rating:
Supports a lot of different tweaked vga modes.

Multipage VGA Library by Lin Ke-Fong
/code/library/mpvga10.zip
01 Dec 1997 (catalog date)
84,061 bytes
Download FTP scene.org
Rating:
VGA library by Lin Ke-Fong. Very good tweaked vga library. It automaticaly detects the vga card to offer as much functionality as possible instead of using the standard vga settings only like most libraries do.

Tale Graphics Driver by Tale Software
/code/library/tlp4v11c.zip
01 Dec 1997 (catalog date)
388,738 bytes
Download FTP scene.org
Rating:
Graphics library with a lot of different functions and tools.

X-Sharp 3D Animation Package v22
/code/library/xsharp22.zip
01 Dec 1997 (catalog date)
115,072 bytes
Download FTP scene.org
Rating:
Contains a lot of different routines for X-Mode, including polyfillers.

Peroxide Trainer Part 4 by Telemachos of Peroxide
/code/tutors/graphics/pxdtut4.zip
17 Jan 1999 (catalog date)
27,821 bytes
Download FTP scene.org
Rating:
This tutorial explains how to code different kind of polyfillers including gouraudshaded, texturemapped and environmapped polygons.

N-Buffering Doc by Type One of Pulpe
/code/tutors/graphics/t1nbuf11.zip
17 Jan 1999 (catalog date)
10,550 bytes
Download FTP scene.org
Rating:
This doc explains everything you want to know about single, double, tripple and N buffering.

Serie De Tutoriales Fac 7 by FAC of Delabu Alama
/code/tutors/graphics/tut7.zip
25 Apr 1998 (catalog date)
92,107 bytes
Download FTP scene.org
Basic demo coding tutorials in Spanish. In Turbo Pascal + inline asm. Seventh tutorial: Basic effects (plasma, fire, interference).

Bezier and Spline by plash of Azure
/code/tutors/math/azr_bcrv.zip
19 Jan 1998 (catalog date)
96,843 bytes
Download FTP scene.org
Rating:
Examples of Bezier patches and B-spline curves. Read a reference on bezier or spline modelling first. The math is not easy nor is it explained by the author. Good reference if you are having troubles getting your own routines to work.

N-Buffering Doc by Type One of TFL-TDV
/code/tutors/video/t1-nbuf.zip
02 Jul 1997 (catalog date)
15,924 bytes
Download FTP scene.org
Rating:
A doc for video buffering. Explains the draw backs of using only one video buffer and how to use 2 or more buffers effectively.

Bin to H by Lev Iserovich
/code/utils/compiler/bin2h.zip
12 Aug 1997 (catalog date)
11,097 bytes
Download FTP scene.org
Rating:
A bin 2 h/obj. Actually produces obj files, but only works with Turbo C with a little tweaking for Borland C. (same company yes, slightly different compilers.) (By extension, you should be able to get it to work with TASM.)

Raster View by TBD of FeR
/code/utils/graphics/fer_rv.zip
02 Jul 1997 (catalog date)
394,681 bytes
Download FTP scene.org
Rating:
A viewer for tga, pcx, lbm, and bmp files. Includes a 320x600x8 tweak mode that can be added to Allegro, which is probably the best thing in it.

Windows Tutorial by Denthor of Asphyxia
/code/windows/wintut1.zip
19 Jan 1998 (catalog date)
15,071 bytes
Download FTP scene.org
Rating:
Windows Tutorial 1. Denthor's back with some tutorials on windows graphics program. I (and he) recommend that you still get another reference (like a *gasp* book) if you know absolutely nothing about programming windows and intend to get serious about it. The tut has just enough info to grasp how windows works, the mindset needed for coding, and some basic messages windows can throw at you. Good for the ultra-beginner with windows. (Oh, the example here is a star field)

Big Bigger Biggest by Infernals
/demos/1992/bigbig.zip
29 Jun 1996 (catalog date)
185,828 bytes
Download FTP scene.org
Rating:

Live by The Sahara Surfers
/demos/1994/s/s2live_f.zip
29 Jun 1996 (catalog date)
74,112 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the in64 division and ranked 10

Balanse by Infernal
/demos/1995/b/balanse.zip
29 Jun 1996 (catalog date)
434,369 bytes
Download FTP scene.org
Rating:

Inferno by Lord Matrix
/demos/1996/i/inferno_.zip
30 Jun 1996 (catalog date)
16,401 bytes
Download FTP scene.org
Rating:

The Difference by N-Factor
/demos/1996/n/nf_tdiff.zip
31 Aug 1996 (catalog date)
78,784 bytes
Download FTP scene.org
Rating:
Released at event SE96 in the in64 division and ranked 01

Nosferatu by Nephilims
/demos/1996/n/nosf.zip
02 Oct 1996 (catalog date)
1,562,633 bytes
Download FTP scene.org
Rating:
Released at event ENL96 in the demo division and ranked 01

Book of Shadows by Nosferatu
/demos/1996/n/nsf-bos.zip
30 Jun 1996 (catalog date)
525,594 bytes
Download FTP scene.org
Rating:

Pyro by Gaffer
/demos/1996/p/pyro.zip
30 Jun 1996 (catalog date)
5,066 bytes
Download FTP scene.org
Rating:
Released at event OZ96 in the in4k division and ranked 03

United Nations demo by Kristofer Tingdahl
/demos/1996/u/undemo.zip
03 Jul 1996 (catalog date)
9,532 bytes
Download FTP scene.org
Rating:

Ancient Plate by Norferin
/demos/1997/a/ancient.zip
26 Aug 1997 (catalog date)
2,350,400 bytes
Download FTP scene.org
Rating:
Released at event IO97 in the demo division and ranked 02

Guffer by Calodox
/demos/1997/c/cdx-guff.zip
19 Oct 1997 (catalog date)
25,939 bytes
Download FTP scene.org
Rating:

Trip Into Your Mind by Norferin
/demos/1997/n/nfn_trip.zip
24 Oct 1997 (catalog date)
1,428,217 bytes
Download FTP scene.org
Rating:
Released at event GRV97 in the demo division and ranked 06
P5,VESA,GUS/SB,8MB

The Gaffer Experience by Jestyr, Black Fox
/demos/1998/g/gafexp.zip
15 Aug 1998 (catalog date)
184,498 bytes
Download FTP scene.org
Rating:
Released at event COV98 in the infs division and ranked ??
,,GUS/SB,

Claudia by Void
/graphics/images/1997/c/claudia.zip
02 Jun 1997 (catalog date)
48,291 bytes
Download FTP scene.org
Rating:
Released at event SNY97 in the grfx division and ranked 02
640x480x16, Claudia Schiffer

The mirror of my soul by Inferno of Astral, Cls
/graphics/images/1998/a/ast-mir.zip
14 Sep 1998 (catalog date)
485,682 bytes
Download FTP scene.org
Rating:
Released at event SCE98 in the grfx division and ranked 12
640x480x16m

Drop it by Headroom of 3Difference
/graphics/images/1998/d/drop_it_.zip
04 Nov 1998 (catalog date)
191,943 bytes
Download FTP scene.org
Rating:
Released at event SE98 in the grtc division and ranked 09
1024x768x16m

Inferno by Griffin of 303
/graphics/images/1998/i/inferno.zip
14 Sep 1998 (catalog date)
24,812 bytes
Download FTP scene.org
Rating:
Released at event SCE98 in the grfx division and ranked 12
640x480x256

Wicked by Inferno of Astral, Cls
/graphics/images/1998/w/wicked.zip
18 May 1998 (catalog date)
527,551 bytes
Download FTP scene.org
Released at event C98 in the grfx division and ranked 01
640x480x16m

Inferno by Rush
/music/contests/mc2/rookie/r-infern.zip
09 Nov 1996 (catalog date)
165,738 bytes
Download FTP scene.org
Released at event MC2 in the mmul division and ranked R28

Polar Seas by Kleitus of Inferno Productions, F.s.o.a.
/music/contests/mc5/intermed/m5i-pola.zip
29 Aug 1997 (catalog date)
217,256 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Purgatory by Lucifer
/music/contests/mc5/rookie/m5r-pty.zip
29 Aug 1997 (catalog date)
819,147 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

A Different Sky by Liam The Lemming of Kosmic, Three Brits, Twain
/music/contests/mc5/veteran/m5v-dsky.zip
29 Aug 1997 (catalog date)
551,615 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Need To Suffer by It-Alien
/music/contests/mc5/veteran/m5v-need.zip
29 Aug 1997 (catalog date)
459,523 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Words Of No Difference by Loonie of Pooh, Groove
/music/contests/mc5/veteran/m5v-wond.zip
29 Aug 1997 (catalog date)
644,336 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked V03

A Different World by nuclear
/music/contests/mc6/intermed/m6i-dwor.zip
28 Mar 1999 (catalog date)
349,836 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Imagine by Lucifer
/music/contests/mc6/intermed/m6i-imgn.zip
28 Mar 1999 (catalog date)
588,359 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Ice Age by Lifer
/music/contests/mc6/rookie/m6r-iage.zip
28 Mar 1999 (catalog date)
261,351 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Inferno by Pentagon
/music/disks/1993/inferno.zip
11 Jun 1998 (catalog date)
925,535 bytes
Download FTP scene.org
Rating:
music by Silent Mode - ,,GUS/SB/PAS,

2nd Difference by Orange
/music/disks/1994/2nd_diff.zip
18 Jun 1998 (catalog date)
2,365,756 bytes
Download FTP scene.org
Rating:
music by Cybelius - ,,GUS,

Difference by Sonic
/music/disks/1994/differen.zip
11 Jun 1998 (catalog date)
1,019,101 bytes
Download FTP scene.org
Rating:
music by Cybelius - ,,GUS/SB/PAS,

Arabic by MaX, Bass, GOnDaR, Ferda of MovSD
/music/disks/1997/arabic.zip
17 Jun 1997 (catalog date)
2,949,226 bytes
Download FTP scene.org

Infernal Lore by Betrayer, Bmt, Cyber C, DimTim, FrizzleFried, Galahad, Leprosy of R.E.D.
/music/disks/1997/red-lore.zip
14 Jul 1997 (catalog date)
5,158,354 bytes
Download FTP scene.org

Different Colours by Dustbin of CBR
/music/disks/1998/cb-md5dc.zip
29 Jan 1998 (catalog date)
3,540,966 bytes
Download FTP scene.org

Different Dreams by Bedrael of Elemental Forces
/music/disks/1998/ddreams.zip
20 Aug 1998 (catalog date)
2,125,535 bytes
Download FTP scene.org

Different Inspiration by VeritaS of DreamWorks Design
/music/disks/1998/v_dinspi.zip
05 Jan 1998 (catalog date)
3,009,605 bytes
Download FTP scene.org

Awave V4.2 by F.M.J.
/music/programs/convert/awave42.zip
25 Aug 1997 (catalog date)
450,107 bytes
Download FTP scene.org
Audio & instrument file format converter, editor & player. - Convert among - 100 audio file formats - Read the instrument formats of most commercial synthesizers and soundcards - Make high quality conversions between the bank and instrument formats of different synthesizers. - Use it as a 'generic' instrument editor for your wavetable sound card. For some cards this is the *only* one available. - Use it as an audio player - Use it as a simple audio editor.

Master Mixer v5.1
/music/programs/mixers/mm5_1.zip
21 Jan 1997 (catalog date)
90,960 bytes
Download FTP scene.org
Full range SB mixer (All functions) Undocumented controls enabled! Automatic "clicks" removal. Can save 6 different mixing configs. Can replace ALL SB drivers at BOOT. Boots your PC (DOS) in a second. Unlimited number of Special Effects. User definable Chorus/Reverb+editor. [v5.1:Fix OPL3, AWE32, PC Spk level.] Does DSP Reset, EMU Reset. Win95 Ok! Can enable/disable any function. Command-line "QuickLoading" (tm) Sets your mixer in 1/4th a second!

Midas Player For Win '95,nt V1.0 by Bartman of Abyss
/music/programs/players/midas95.zip
25 Apr 1997 (catalog date)
77,778 bytes
Download FTP scene.org
SUMMARY: Midas'95 is a module player based on the Midas Sound System (by Sahara Surfers), it plays protracker MOD, screamtracker S3M and fasttracker2 XM modules and runs under Windows 95 and Windows NT 3.51+ (4.0 compatibility assured). FEATURES: Simple but nice user interface. Test it out. It's totally free.

The Pulse 0.90 by Ladislav Lostak of Unreal
/music/programs/players/pulse090.zip
20 Sep 1998 (catalog date)
1,009,064 bytes
Download FTP scene.org
New Czech player of all types of mods, mp3 and wav for Win95/98/NT. The newest beta version brings completely rebuilt system based on "components" (allows to add new features, e.g. new format loader, just by adding the dll library to the directory), new design structure (non-rectangle windows, animated buttons, ...} that allows to change design on-fly while playing, and WinAMP skins support with non-observed differences, 12-parameter Reverb editor with presets saving, simple playlist editor, pop-up menu on right-click, external tools for associating extensions and Systray, several new (and splendid) designs, nice splash-screen on start, sid format support (Commodore 64), full-customizable taskbar using "Captions", and lots of more features which are to be improved in upcoming versions. Supports 669, far, fnk, it, m15, mdl, med, mod, mtm, mp1/2/3, nst, raw, s3m, sid/dat, stm, ult, wav, wow and xm.

Visual Orangator V1.0 by Agent Orange, Tangerine of T-Rex
/music/programs/samplers/trx-vor.zip
26 Feb 1998 (catalog date)
200,533 bytes
Download FTP scene.org
Visual Orangator is continuation of Orangator but the main difference is that it is modular.

Sweeped Analog Pack 1 by DotH of MultiDimensional
/music/samples/anpck1.zip
18 Jan 1998 (catalog date)
1,810,112 bytes
Download FTP scene.org
Samples for quality tracking rendered in various synth emulators. This range of samples is different from other sample packs in that it has only 2 sample types but they are included in the pack as sweeped progressively samples. This will help trackers create more realistic analog sounding sweeps. There are 2 diferent rages of samples, "distorted" (14 samples) and "psychoactive pulse" (16 samples). All samples are 16 bit at 44.1Khz WAV.

Sweeped Analog Pack 2 by DotH of MultiDimensional
/music/samples/anpk2.zip
18 Jan 1998 (catalog date)
1,743,715 bytes
Download FTP scene.org
Samples for quality tracking rendered in various synth emulators. This range of samples is different from other sample packs in that it has only 2 sample types but they are included in the pack as sweeped progressively samples. This will help trackers create more realistic analog sounding sweeps. There are 2 diferent rages of samples, "Filtered saw bass" (11 samples) and "bright resonance bass" (15 samples). All samples are 16 bit at 44.1Khz WAV.

Samples from TB Proteus 1/XR by Sam Eassa
/music/samples/proteus3.zip
10 Sep 1996 (catalog date)
746,435 bytes
Download FTP scene.org
This is the third of a series of samples extracted from the Turtle Beach Multisound Proteus 1/XR synthesizer. Whereas the first and second collections (proteus1.zip and proteus2.zip) were a collection of melodic as well as percussion samples at 22kHz/16 bits, this one is percussion only at 44.1kHz/16 bits. Based on some good feedback (thanks Jester :-) I kept all samples very basic (no combos or riffs) for maximum usefulness. The quality is also better due to the fact that the sampling was done locally on the multisound as opposed to using a seperate PC. This has yielded some very quiet and crisp samples compared to the first sets of samples. Although the samples are in .wav format, they can be ported to .smp or almost any other using a program such as Goldwave. All samples are 44.1kHz, 16 bit and were created by playing different percussion notes on the multisound, and capturing them live to RAM and then to disk. Post editing was done to optimize gain and remove the dead space.

Samples from TB Proteus 1/XR by Sam Eassa
/music/samples/proteus4.zip
11 Sep 1996 (catalog date)
1,495,900 bytes
Download FTP scene.org
This is the fourth and probably last in a series of samples extracted from the Turtle Beach Multisound Proteus 1/XR synthesizer. In this collection, I've tried to sample unique sounds native only to the proteus synthesizer and that cannot be found in the General MIDI set. I'm hoping to provide the means for the many composers out there to make some truly unique sounding mods. I kept all samples very basic (no combos or riffs) for maximum usefulness. The quality is also better due to the fact that the sampling was done locally on the multisound as opposed to using a seperate PC as was done on the first two Proteus packs. This has yielded some very quiet and crisp samples. Although the samples are in .wav format, they can be ported to .smp or almost any other using a program such as Goldwave. All samples are 44.1kHz, 16 bit mono and were created by playing different notes on the multisound, and capturing them live to disk using the Multisound's own digital audio sampler. Post editing was done to optimize gain and remove the dead space as well as to keep the samples reasonable small.

Digo Piano by PiCoder of Seaber Designs
/music/samples/sed-dgpn.zip
18 Feb 1998 (catalog date)
3,748,061 bytes
Download FTP scene.org
This package contains samples of original Digo Piano. 44.1kHz, 16 Bit samples fit 6 octaves. This instrument sounds great and almost like rhodes and electric piano, but slightly different

Interference II by Virgill
/music/songs/1994/interf2.zip
15 Sep 1996 (catalog date)
172,325 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the m4ch division and ranked XX
(MOD)

Tropical Sunset by Nosferatu
/music/songs/1994/sunset.zip
23 Sep 1996 (catalog date)
243,390 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the mmul division
(MTM)

Wralix by Lucifer
/music/songs/1994/wralix.zip
24 Jan 1997 (catalog date)
305,450 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the m4ch division and ranked XX
(MOD)

Emotional Suffering by Liam The Lemming
/music/songs/1995/e/emotion.zip
17 Sep 1996 (catalog date)
105,273 bytes
Download FTP scene.org
Rating:
(S3M)

Happy Reefer by Vic
/music/songs/1995/h/happy.zip
23 Sep 1996 (catalog date)
48,453 bytes
Download FTP scene.org
Rating:
(PTM)

Inferno by Soundwave
/music/songs/1995/i/inferno.zip
16 Sep 1996 (catalog date)
502,158 bytes
Download FTP scene.org
Rating:
(MTM)

Inferno Dance by Lizardking
/music/songs/1995/l/lk_infer.zip
21 Sep 1996 (catalog date)
417,593 bytes
Download FTP scene.org
Rating:
(XM)

Recollapse by Infern
/music/songs/1995/r/recolaps.zip
18 Mar 1997 (catalog date)
99,647 bytes
Download FTP scene.org
Rating:
Released at event DS95 in the mmul division and ranked 07
(MOD)

File Transfer by Dynamite of The Lost Patrol
/music/songs/1996/d/dn-trans.zip
31 Aug 1997 (catalog date)
304,454 bytes
Download FTP scene.org
(S3M)

Inferiority Complex by Elwood
/music/songs/1996/e/elw-icom.zip
22 Sep 1996 (catalog date)
230,692 bytes
Download FTP scene.org
Rating:
(XM)

Boesendorfer P.S.S. by GBlues
/music/songs/1996/g/g_boes.zip
23 Jul 1996 (catalog date)
74,007 bytes
Download FTP scene.org
Rating:
(XM)

Transfer by Hunz
/music/songs/1996/h/hnz-tran.zip
22 Sep 1996 (catalog date)
117,929 bytes
Download FTP scene.org
Rating:
(MOD)

Fern Pollen by Supernao, Yolk
/music/songs/1996/m/m_fern.zip
01 Jul 1996 (catalog date)
303,402 bytes
Download FTP scene.org
Rating:
(MOD)

Daveangelesque by Jimmy Redfern
/music/songs/1996/n/no-davea.zip
23 Jul 1996 (catalog date)
472,882 bytes
Download FTP scene.org
Rating:
(XM)

Jungle Dawn by Jimmy Redfern
/music/songs/1996/n/no-jdawn.zip
23 Jul 1996 (catalog date)
79,493 bytes
Download FTP scene.org
Rating:
(XM)

Xavier by Jimmy Redfern of NOISE
/music/songs/1996/n/no-xavie.zip
04 Aug 1996 (catalog date)
300,437 bytes
Download FTP scene.org
Rating:
(XM)

It Makes Me Happy by Ploffer
/music/songs/1996/p/ploff-01.zip
22 Sep 1996 (catalog date)
374,414 bytes
Download FTP scene.org
Rating:
(XM)

Scorpionella by Ploffer
/music/songs/1996/p/ploff-02.zip
22 Sep 1996 (catalog date)
328,829 bytes
Download FTP scene.org
Rating:
(XM)

The Zone by Ploffer
/music/songs/1996/p/ploff-03.zip
22 Sep 1996 (catalog date)
189,158 bytes
Download FTP scene.org
Rating:
(XM)

Impossible Love by Red Mad Man of FeR, UcC
/music/songs/1996/r/red_impl.zip
08 Apr 1997 (catalog date)
327,048 bytes
Download FTP scene.org
(XM)

Mechanical Suffering by oscillate of 7YNIVf
/music/songs/1997/0-9/7_mech.zip
07 Jul 1997 (catalog date)
366,566 bytes
Download FTP scene.org
(IT)

Inferno by X - Rabbit
/music/songs/1997/i/infern97.zip
03 Dec 1997 (catalog date)
481,914 bytes
Download FTP scene.org
Released at event RTL97 in the mmul division and ranked XX
(IT)

Life by Brain Rain
/music/songs/1997/l/lifer97.zip
09 Feb 1999 (catalog date)
137,675 bytes
Download FTP scene.org
Released at event RAGE97 in the m4ch division and ranked ??

Different States Of Mind by Dan of NWP
/music/songs/1997/n/nwp_dsom.zip
26 Feb 1998 (catalog date)
247,747 bytes
Download FTP scene.org
(XM)

Aim To Please .maxi Club Edit. by Ploffer
/music/songs/1997/p/ploff_ai.zip
29 Aug 1997 (catalog date)
447,846 bytes
Download FTP scene.org
(XM)

Phunka Chapter 2 .victory Mix. by Ploffer
/music/songs/1997/p/ploff_p2.zip
29 Aug 1997 (catalog date)
366,565 bytes
Download FTP scene.org
(XM)

Phunka by Ploffer
/music/songs/1997/p/ploff_ph.zip
20 Apr 1997 (catalog date)
366,754 bytes
Download FTP scene.org
(XM)

To My Love .euromania Mix. by Ploffer
/music/songs/1997/p/ploff_to.zip
16 Sep 1997 (catalog date)
451,058 bytes
Download FTP scene.org
(XM)

Visions by Ploffer
/music/songs/1997/p/ploff_vi.zip
11 Feb 1997 (catalog date)
396,207 bytes
Download FTP scene.org
Rating:
(XM) very good fast dance tune

Pozitron Rumba by Ferda of MovSD
/music/songs/1997/p/pozitron.zip
02 Dec 1997 (catalog date)
103,950 bytes
Download FTP scene.org
(XM)

Prepid Ahlo Erchetua by Ferda of MovSD
/music/songs/1997/p/prepid.zip
04 Nov 1997 (catalog date)
247,840 bytes
Download FTP scene.org
(XM)

Flying On The Clouds Rmx by iNFERNAL RAVER, WaRLoCK of RaveLand
/music/songs/1997/r/rl-cloud.zip
12 Oct 1997 (catalog date)
266,093 bytes
Download FTP scene.org
Rating:
(XM)

Different Feelings by Xenon
/music/songs/1997/x/xe_feel.zip
17 May 1997 (catalog date)
289,304 bytes
Download FTP scene.org
(XM)

Abducted by Allodox of Nosferatu
/music/songs/1998/a/abducted.zip
10 Dec 1998 (catalog date)
316,451 bytes
Download FTP scene.org
Released at event AMB98 in the mhse division and ranked XX

Geza Ferjhez Megy by Illegal of Contract
/music/songs/1998/c/cnt-geza.zip
02 Jan 1999 (catalog date)
209,247 bytes
Download FTP scene.org
Released at event FLAG98 in the mmul division and ranked 02

Commercial Offers by Urge of Danger High Voltage Records
/music/songs/1998/d/dhv_com.zip
10 Jun 1998 (catalog date)
393,172 bytes
Download FTP scene.org
(XM)

Infernalis by tb of Mah Music
/music/songs/1998/m/mah042.zip
12 Sep 1998 (catalog date)
300,918 bytes
Download FTP scene.org
(XM)

Nosferatu B by jesterhed of rapture
/music/songs/1998/r/r_nosfb8.zip
27 Feb 1998 (catalog date)
907,467 bytes
Download FTP scene.org
(XM)

Ms Strakosferic by Pinky of Pipin Worx
/music/songs/1998/s/strk.zip
30 Aug 1998 (catalog date)
542,825 bytes
Download FTP scene.org
(XM)

The Underground Conference/Party 4 Report by Purge
/party/reports/1995/uc95_p4.zip
03 Oct 1996 (catalog date)
2,277,259 bytes
Download FTP scene.org
Rating:

The Girl Fromage by Caramel of Inferiors
/music/songs/1998/g/girl.zip
04 Jul 2003 (catalog date)
456,991 bytes
Download FTP scene.org
Rating:
Released at event TG98 in the m4ch division and ranked 01
(MOD)

Who Was in My Room (Original by Butthole Surfers) by Plastique
/tla/songs/1994/s3m/pl_who.zip
16 Sep 1996 (catalog date)
166,472 bytes
Download FTP
Rating:

Pumping Potential by Scoffer
/tla/songs/1995/s3m/p/pumppot.zip
19 Sep 1996 (catalog date)
332,057 bytes
Download FTP
Rating:

Realisation by Scoffer
/tla/songs/1995/s3m/r/real.zip
20 Sep 1996 (catalog date)
95,739 bytes
Download FTP
Rating:

Remix by Scoffer
/tla/songs/1995/s3m/r/remix.arj
20 Sep 1996 (catalog date)
181,143 bytes
Download FTP
Rating:

Catch That Wave by Lord Jon Ray
/tla/songs/1995/s3m/s/surfer.zip
20 Sep 1996 (catalog date)
159,955 bytes
Download FTP
Rating:

Special Offer by Sonic
/tla/songs/1995/xm/o/offer2.zip
21 Sep 1996 (catalog date)
136,131 bytes
Download FTP
Rating:
Released at event TP95 in the mmul division and ranked XX

Lucifer's Realm by Subliminal
/tla/songs/1996/it/a/a_lrlm.zip
22 Sep 1996 (catalog date)
269,737 bytes
Download FTP
Rating:

Sufferings by Hunz
/tla/songs/1996/mod/h/hnz-sfrn.zip
22 Sep 1996 (catalog date)
138,971 bytes
Download FTP
Rating:

Flying Insect Never Prefer Subway by Clad
/tla/songs/1996/xm/c/c-insect.zip
01 Jul 1996 (catalog date)
161,118 bytes
Download FTP
Rating:

Whalesong by Jimmy Redfern of NOISE
/tla/songs/1996/xm/n/no-whale.zip
11 Aug 1996 (catalog date)
274,115 bytes
Download FTP
Rating: