Search for "Sti": 360 matches(displaying first 250)

Gouraud shader source by Jedi of Sector One
/code/3d/trifill/gouraud/ggouro2.zip
10 Jan 1997 (catalog date)
66,612 bytes
Download FTP scene.org
Rating:
Source for a gouraud filler, requires GEMA to compile - Needs GEMA. No useful comments. For TASM and MASM users, remember that GEMA's nmenonics are operation source, destination.

Amnesia Vector source by Tran of Renaissance
/code/demosrc/demos/as.zip
10 Jan 1997 (catalog date)
7,047 bytes
Download FTP scene.org
Rating:
The sources for the temple vector part of Amnesia - Sparce comments. Tight code, but probably only understandable by those who have written atleast a simple vector system and familiar with pmode. Certainly good code, but I question its usefulness to those who read it.

Sine Generator by Claim of Mindstream
/code/editors/sg_v07.zip
26 Feb 1998 (catalog date)
30,188 bytes
Download FTP scene.org
Rating:
Generates an assembler listing of a sine lookup table.

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.

Linefire by Kable
/code/effects/fire/linefire.zip
26 Jun 1997 (catalog date)
26,759 bytes
Download FTP scene.org
Rating:
Mystify your fire. I half expected to hear the FM sounds from Amnesia to kick in. It's only one line with a *much* longer (and blured) tail, but still. Uses a Bresenham's line routine.

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.

Source for Tunnel Effect by PlastiikkiPaketti of Skraappa Skruuppi
/code/effects/tunnel/araidsrc.zip
06 Oct 1996 (catalog date)
28,319 bytes
Download FTP scene.org
Rating:
used in Stars/Nooon and Paimen/Coma, Doesn't explain the algorithm, not very optimized, low resolution

LZO Data Compression Library v0.20 by Markus Oberhumer
/code/fileutil/lzo020.zip
06 Oct 1996 (catalog date)
184,964 bytes
Download FTP scene.org
Rating:
over conscious about compression ratios and statistics and has many long files about its stats in the /doc directory, but no description about the API. You have to figure out how to use it yourself from the two short examples that come with it. Otherwise, it's fairly complete and you can decide which compression routines you'd like to link yourself (assuming you can figure out that much).

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.)

Joystick axis reading code by Peter Wan
/code/hardware/joystick/joysdk11.zip
10 Jan 1997 (catalog date)
35,092 bytes
Download FTP scene.org
Rating:
Source to read joystick positions for the Gravis Game Pad - *This* is how source should be written, especially for an SDK. If only we were all this diligent.

Flat Maquina by Morbid Iadalboath of MUTANTE
/code/hardware/pmode/fm32_v2.zip
02 Jul 1997 (catalog date)
6,647 bytes
Download FTP scene.org
Rating:
A Pascal TPU for getting flat mode memory. People really should be moving away from dealing with segmented memory. Get this if you're still using Pascal or something similar.

PCX to Cpp converstion utility by Tumblin of Bodies In Motion
/code/images/pcx2csrc.zip
15 Apr 1997 (catalog date)
21,714 bytes
Download FTP scene.org
For use with XLIB.

Television Viewer by Bullhead of Plastic Surgery
/code/images/ps_tvv.zip
17 Jan 1999 (catalog date)
99,252 bytes
Download FTP scene.org
Rating:
Displays a bmp,pcx,tga or lbm picture on the screen using a fake hicolor mode.

The Mag by Spellcaster
/code/mags/mag11.zip
01 Jul 1997 (catalog date)
95,422 bytes
Download FTP scene.org
Rating:
A serial coding magazine. Sorting, matrix algebra, geometric transformations, more complex 3d, still adding to that game. (This magazine has come a long way since issue one and is entirely progressive.)

SWAG by SourceWare Archival Group
/code/tutors/swag/swag.zip
18 Mar 1997 (catalog date)
4,975,456 bytes
Download FTP scene.org
Rating:
Programing sources and information for PASCAL programmers - A veritable must for PASCAL programmers, especially those still on the lower end of the learning curve.

VGA Programming Course by T.C.P. of Diabolic Force
/code/tutors/video/tcp_vgak.zip
17 Jan 1999 (catalog date)
87,740 bytes
Download FTP scene.org
Rating:
Doesn't add anything new to existing courses.

Basic To Assembly Translator by Kevin Diggins
/code/utils/compiler/basm10.zip
26 Feb 1998 (catalog date)
297,077 bytes
Download FTP scene.org
Rating:
Creates an assembly listing out of a basic listing.

Netwide Assembler by Simon Tatham, Julian Hall
/code/utils/compiler/nasm094.zip
02 Jul 1997 (catalog date)
320,576 bytes
Download FTP scene.org
Rating:
A freeware assembler with good support. People have been switching from TASM to this assembler, especially linux and 68K coders. It is still being supported by the makers so it understands newer op codes, like mmx instructions, so you don't need to get intel's 'macros' for new opcodes.

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)

24 Hour Break by Digitize Design Group
/demos/1993/0-9/24h_brk.zip
29 Jun 1996 (catalog date)
90,627 bytes
Download FTP scene.org
Rating:
Fast circle-effect, sine scroller (coded in interesting way) - not a great job for asm-intro-compo (of course some music) btw: at the end they are talking about many bugs: here is one: press (& hold) left shift during sine-scroller. Letters D and G will be moved 'a little' :-)

Mystic by TSI
/demos/1993/m/myst_tsi.zip
29 Jun 1996 (catalog date)
286,605 bytes
Download FTP scene.org
Rating:

Mystic by Energy Lash
/demos/1993/m/mystic.zip
29 Jun 1996 (catalog date)
21,827 bytes
Download FTP scene.org
Rating:

Privtro by Irresistible Works
/demos/1993/p/privtro.zip
29 May 1998 (catalog date)
126,253 bytes
Download FTP scene.org
Rating:
Released at event ASM93 in the in64 division and ranked 11
,,SB,

1st Infection by N-Factor
/demos/1994/0-9/1infect.zip
29 Jun 1996 (catalog date)
788,796 bytes
Download FTP scene.org
Rating:
Released at event WIR94 in the demo division and ranked ??
N-Factor's first production, released at Wired'94 - a good "first-time" production for a new group. Lots of vector objects, some unlimited bobs, and textured planes - a top and bottom of the screen - but they are doing many things with this simple transform table: like really interesting flight of space ship over you (like in 2nd Reality), but textured (looks much-much better).

42 by Halcyon
/demos/1994/0-9/42.zip
29 Jun 1996 (catalog date)
67,994 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the in64 division and ranked XX
Good beginning on this demo. Blue fire effect, going into zooming routines to delay dots, to 3-d fire. There are other interesting effects. To get past some parts of the demo the user must press Escape. The music is also a little repetitve at times... Without a GUS I couldn't get the entire demo.

Assembler Instinct by Gollum
/demos/1994/a/asminst.zip
29 Jun 1996 (catalog date)
695,570 bytes
Download FTP scene.org
Rating:
Released at event TP93 in the demo division and ranked 07

The Byron Question by DDD
/demos/1994/b/byron.zip
29 Jun 1996 (catalog date)
266,952 bytes
Download FTP scene.org
Rating:

Hmmmm by Joystick of Improvers
/demos/1994/h/hmmmm.zip
29 Jun 1996 (catalog date)
2,924 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the in4k division and ranked XX

Holistic by Cascada
/demos/1994/h/holistic.zip
29 Jun 1996 (catalog date)
1,068,408 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the demo division and ranked 02

Basic Instinct by B-Ware
/demos/1994/i/instinct.zip
14 Jan 1997 (catalog date)
677,278 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the demo division and ranked XX

Rivers of Suggestion
/demos/1994/r/riversos.zip
29 Jun 1996 (catalog date)
625,110 bytes
Download FTP scene.org
Rating:

SC94Xmas by Spontaneous Combustion
/demos/1994/s/sc94xmas.zip
29 Jun 1996 (catalog date)
310,188 bytes
Download FTP scene.org
Rating:

Second Christianity by INF
/demos/1995/0-9/2ndchrst.zip
03 May 1998 (catalog date)
554,023 bytes
Download FTP scene.org
Rating:
386,,GUS,

Bestial Chaos by ???
/demos/1995/c/chaos95r.zip
29 Jun 1996 (catalog date)
2,409 bytes
Download FTP scene.org
Rating:
Released at event ASM95 in the in4k division and ranked XX

Stickman's World by Coma
/demos/1995/c/cma_stik.zip
29 Jun 1996 (catalog date)
50,134 bytes
Download FTP scene.org
Rating:
Released at event ASM95 in the in64 division and ranked 02

Divine by Fatal Justice
/demos/1995/d/divine.zip
29 Jun 1996 (catalog date)
70,505 bytes
Download FTP scene.org
Rating:
Released at event BIZ95 in the in64 division and ranked ??

Elastic by Scoop
/demos/1995/e/elastic.zip
24 May 1998 (catalog date)
42,719 bytes
Download FTP scene.org
Rating:
Released at event TG95 in the in64 division and ranked 07
,,SB,

Conviction by Fatal Justice
/demos/1995/f/fat_conv.zip
30 Jun 1996 (catalog date)
949,634 bytes
Download FTP scene.org
Rating:
Released at event WIR95 in the demo division and ranked 07

Greetro by Fatal Justice
/demos/1995/g/greetro_.zip
04 Oct 1996 (catalog date)
338,094 bytes
Download FTP scene.org
Rating:
Released at event MOV95 in the demo division and ranked EE

Explict Coding by Mystic Bytes
/demos/1995/m/mb_paec.zip
30 Jun 1996 (catalog date)
1,402,322 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the demo division and ranked XX

Yersinia Pestis by Tarzan Productions
/demos/1995/p/pestis.zip
30 Jun 1996 (catalog date)
417,293 bytes
Download FTP scene.org
Rating:
Released at event JUH95B in the demo division and ranked 11

Pseudotiny by Hellfire of Fatal Justice
/demos/1995/p/psdtiny.zip
30 Jun 1996 (catalog date)
8,810 bytes
Download FTP scene.org
Rating:
Released at event BIZ95 in the in4k division and ranked ??

Solstice by Valhalla
/demos/1995/s/solstice.zip
30 Jun 1996 (catalog date)
1,689,530 bytes
Download FTP scene.org
Rating:
Released at event WIR95 in the demo division and ranked 01

Blasphemy by Fatal Justice
/demos/1996/b/blasph.zip
30 Jun 1996 (catalog date)
1,895,816 bytes
Download FTP scene.org
Released at event MEK96 in the demo division and ranked 01

Velvet by Fatal Justice
/demos/1996/f/fj_velve.zip
30 Jun 1996 (catalog date)
100,633 bytes
Download FTP scene.org
Rating:

Mystic by Xenogenesis
/demos/1996/m/mystic.zip
30 Jun 1996 (catalog date)
803,134 bytes
Download FTP scene.org
Rating:
Released at event TG96 in the demo division and ranked 09

Mystical by Neurochip
/demos/1996/m/mystical.zip
14 Sep 1996 (catalog date)
2,700 bytes
Download FTP scene.org
Rating:
Released at event ASM96 in the in4k division and ranked 08

Chopsticks by Omicron
/demos/1996/o/omc_chop.zip
03 Jul 1996 (catalog date)
54,083 bytes
Download FTP scene.org
Rating:
Released at event REM96 in the in64 division and ranked 01

Digestive Flour by Proxima
/demos/1996/p/prx_flou.zip
30 Jun 1996 (catalog date)
2,687 bytes
Download FTP scene.org
Rating:
Released at event TG96 in the in4k division and ranked 02

Solstice (fix) by Valhalla
/demos/1996/s/solfix.zip
30 Jun 1996 (catalog date)
146,541 bytes
Download FTP scene.org
Rating:
Released at event WIR95 in the demo division and ranked 01

Synergistic by Mistery
/demos/1996/s/synergis.zip
30 Jun 1996 (catalog date)
70,206 bytes
Download FTP scene.org
Rating:
Released at event ABD96 in the in64 division and ranked 05

Velvet 3 by Fatal Justice
/demos/1996/v/velvet3.zip
07 Feb 1997 (catalog date)
71,553 bytes
Download FTP scene.org
Rating:
Released at event TP96 in the in64 division and ranked 13
486DX4,GUS/SB

Ballistic by Creative Illusions
/demos/1997/b/balistic.zip
17 Mar 1997 (catalog date)
524,371 bytes
Download FTP scene.org
Rating:
,,GUS/SB/PAS,

Plastik by Chrome
/demos/1997/c/chr-salp.zip
11 May 1997 (catalog date)
2,356,460 bytes
Download FTP scene.org
Rating:
Released at event SCE97 in the demo division and ranked 02
386,,GUS,8MB

How to Kill a Bamsemums by Elite Productions 3d
/demos/1997/f/fastintr.zip
07 Dec 1997 (catalog date)
783,729 bytes
Download FTP scene.org
Rating:
Released at event DST97 in the infs division and ranked 02

Lost in the Jungle by Extreme Command
/demos/1997/l/lostinth.zip
19 Dec 1997 (catalog date)
519,133 bytes
Download FTP scene.org
Rating:
Released at event DH97 in the demo division and ranked ??

Majestic by Proxium
/demos/1997/m/majestic.zip
13 Feb 1998 (catalog date)
4,249 bytes
Download FTP scene.org
Rating:
486DX,,,

Phystix by Quad, EFC
/demos/1997/p/phystix.zip
30 Aug 1997 (catalog date)
54,480 bytes
Download FTP scene.org
Rating:
Released at event WIR97 in the in64 division and ranked 04

Velvet 4 by Fatal Justice
/demos/1997/v/velvet4.zip
04 May 1997 (catalog date)
64,150 bytes
Download FTP scene.org
Rating:
Released at event MEK97 in the in64 division and ranked 03

Elastic Love by Image
/demos/1998/d/del4_fin.zip
09 Nov 1998 (catalog date)
1,957,560 bytes
Download FTP scene.org
Rating:
P166,VESA,GUS/SB,16MB

Stigma by Doomsday
/demos/1998/d/dsd_stgm.zip
02 Aug 1998 (catalog date)
2,490,493 bytes
Download FTP scene.org
Rating:
Released at event ABD98 in the demo division and ranked 01
P5,VESA,GUS/SB/PAS,16MB

The Gift of Light by Superstition
/demos/1998/g/gftlight.zip
17 Apr 1998 (catalog date)
1,872,955 bytes
Download FTP scene.org
Rating:
Released at event AMB98 in the demo division and ranked 01

Memories by Superstition
/demos/1998/m/memories.zip
23 Jun 1998 (catalog date)
3,814,957 bytes
Download FTP scene.org
Rating:
Released at event TO98 in the demo division and ranked 01
P200,VESA,,34MB

Mika by Destiny
/demos/1998/m/mika_by_.zip
22 Oct 1998 (catalog date)
2,686,458 bytes
Download FTP scene.org
Rating:
Released at event ASM98 in the demo division and ranked XX

Destination Goatland by Noice
/demos/1998/n/noc_dego.zip
05 Aug 1998 (catalog date)
2,233,410 bytes
Download FTP scene.org
Rating:
Released at event REM98 in the demo division and ranked 01
P166,VESA,GUS/SB/PAS,24MB

Plastik (final) by Purple
/demos/1998/p/plastikx.zip
06 Sep 1998 (catalog date)
2,706,400 bytes
Download FTP scene.org
Rating:
Released at event SE98 in the demo division and ranked 01
DOS/Win95

When I Was a Kid by Plastic Surgery
/demos/1998/p/ps-when.zip
22 Mar 1998 (catalog date)
2,109,097 bytes
Download FTP scene.org
Rating:
486DX,VESA,GUS/SB,8MB

Dreams of Destiny by Suburban Creations
/demos/1998/s/scdreams.zip
22 May 1998 (catalog date)
1,657,456 bytes
Download FTP scene.org
Rating:
Released at event MEK98 in the demo division and ranked 05
P5,VESA,GUS/SB/PAS,12MB

Stikkpille by Lightspeed
/demos/1998/s/stikkpil.zip
07 May 1998 (catalog date)
245,764 bytes
Download FTP scene.org
Rating:

Testing by 3G Design
/demos/1998/t/testing_.zip
18 Oct 1998 (catalog date)
50,009 bytes
Download FTP scene.org
Rating:
Released at event ASM98 in the in64 division and ranked 10
,,GUS/SB/PAS

??? by Sti
/graphics/images/1993/sti_ephr.zip
04 Jul 1996 (catalog date)
31,681 bytes
Download FTP scene.org
Rating:
Released at event TP93 in the grfx division and ranked 11

Justice by Marlon
/graphics/images/1994/j/justice.zip
04 Jul 1996 (catalog date)
38,804 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the grfx division and ranked 55

Lipstick by Motion Lotion
/graphics/images/1994/l/lipstick.zip
04 Jul 1996 (catalog date)
40,473 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the grfx division and ranked XX

Plastic Dragon by Prager
/graphics/images/1994/p/plasdrag.zip
04 Jul 1996 (catalog date)
50,305 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the grfx division and ranked XX

Surrealistic by Audio. Child
/graphics/images/1994/s/surre09.zip
04 Jul 1996 (catalog date)
131,516 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the grfx division and ranked XX

??? by ???
/graphics/images/1994/t/testi.zip
04 Jul 1996 (catalog date)
46,799 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the grfx division and ranked ??

Cute Christina by Dice
/graphics/images/1995/c/cutechri.zip
04 Jul 1996 (catalog date)
86,275 bytes
Download FTP scene.org
Rating:
Released at event TP95 in the grfx division and ranked 14

Mystical by Madman
/graphics/images/1996/m/mystic.zip
23 Nov 1996 (catalog date)
65,823 bytes
Download FTP scene.org
Rating:
Released at event SAT96B in the grtc division and ranked ??

Mystical by ???
/graphics/images/1996/m/mystical.zip
04 Sep 1996 (catalog date)
99,056 bytes
Download FTP scene.org
Rating:
Released at event ANT96 in the grfx division and ranked XX

Vanishing Point by Rendall of Astroidea, Mystic
/graphics/images/1997/a/ai_vanis.zip
16 Feb 1998 (catalog date)
214,483 bytes
Download FTP scene.org
Rating:
Released at event ASM97 in the grfx division and ranked 01
640x512x256

Leo by Tentacle of Instinct
/graphics/images/1997/l/leo.zip
17 Feb 1998 (catalog date)
100,507 bytes
Download FTP scene.org
Rating:
Released at event DST97 in the grfx division and ranked ??
640x480x256

RubbahFingaz by Psycho of Instinct
/graphics/images/1997/r/rubbah.zip
17 Feb 1998 (catalog date)
116,734 bytes
Download FTP scene.org
Rating:
Released at event DST97 in the grfx division and ranked 15
640x480x256

Horst+Harnold Beckenbauer+Compopic by Sting, MDB, Rayman of Bonzai Revival
/graphics/images/1998/a/arnold_b.zip
26 May 1998 (catalog date)
162,469 bytes
Download FTP scene.org
Released at event MEK98 in the grfx division and ranked ??

Instinct by Immortal rat of Black Rainbow
/graphics/images/1998/b/br_inst.zip
17 Mar 1998 (catalog date)
113,817 bytes
Download FTP scene.org
Rating:
Released at event FLAG98 in the grfx division and ranked 08
640x480x256

Fall thru deep by Stile9
/graphics/images/1998/f/falthr.zip
08 Oct 1998 (catalog date)
249,359 bytes
Download FTP scene.org
Rating:
Released at event TO98 in the grfx division and ranked 05
640x512x256

Flamer by Mystic X of FReQuENCY
/graphics/images/1998/f/flamer.zip
09 May 1998 (catalog date)
40,126 bytes
Download FTP scene.org
Rating:

Horst by Sting of Bonzai Revival
/graphics/images/1998/h/horst.zip
28 May 1998 (catalog date)
29,350 bytes
Download FTP scene.org
Rating:
Released at event MEK98 in the grfx division and ranked 25
640x512x128

Warp by Mystic X of FReQuENCY
/graphics/images/1998/w/warp.zip
04 Jul 1998 (catalog date)
62,501 bytes
Download FTP scene.org
Rating:

ANIM8 v1.13 Sprite Editor by Majestick
/graphics/programs/editors/anm8_113.zip
22 Sep 1996 (catalog date)
178,289 bytes
Download FTP scene.org

DemoNews 144 Supplemental by Hornet
/info/demonews/other/dn144_su.zip
18 Apr 1997 (catalog date)
13,528 bytes
Download FTP scene.org
Upload listings that wouldn't fit in DemoNews.144

DemoNews 145 Supplemental by Hornet
/info/demonews/other/dn145_su.zip
18 Apr 1997 (catalog date)
13,290 bytes
Download FTP scene.org
Upload listings that wouldn't fit in DemoNews.145

Caustic Verses 1
/mags/1996/caustic1.zip
11 Jul 1996 (catalog date)
695,764 bytes
Download FTP scene.org
Rating:

Ren and Stimpy RaveMix by Woody
/music/contests/mc2/rookie/r-revive.zip
09 Nov 1996 (catalog date)
199,391 bytes
Download FTP scene.org
Released at event MC2 in the mmul division and ranked R17

O-09746 by Castile
/music/contests/mc3/rookie/o-09746.zip
09 Nov 1996 (catalog date)
161,802 bytes
Download FTP scene.org
Released at event MC3 in the mmul division and ranked R47

O-79642 by Austin Huang
/music/contests/mc3/rookie/o-79642.zip
09 Nov 1996 (catalog date)
196,233 bytes
Download FTP scene.org
Released at event MC3 in the mmul division and ranked R50

Brittlestitch by Smeg
/music/contests/mc4/veteran/m4v-brit.zip
10 Nov 1996 (catalog date)
365,246 bytes
Download FTP scene.org
Released at event MC4 in the mmul division and ranked V25

Mystic Ruins by 4go10
/music/contests/mc4/veteran/m4v-mmrr.zip
10 Nov 1996 (catalog date)
333,232 bytes
Download FTP scene.org
Released at event MC4 in the mmul division and ranked XX

The Prostitute Principle by Husanak
/music/contests/mc5/intermed/m5i-tpp.zip
29 Aug 1997 (catalog date)
359,287 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Oceanic Mystique by Coplan of Immortal Coil
/music/contests/mc5/rookie/m5r-ocmy.zip
29 Aug 1997 (catalog date)
131,554 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

True To Nature by Vado of Gnostic Retreat
/music/contests/mc5/rookie/m5r-ttn.zip
29 Aug 1997 (catalog date)
666,582 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked R06

Clandestine Destiny by Inner Vision of Kosmic, Carcass
/music/contests/mc5/veteran/m5v-dest.zip
29 Aug 1997 (catalog date)
485,336 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

The Question (what Is Narf?) by Rimbo of Cataclysm, Analogue Music
/music/contests/mc5/veteran/m5v-narf.zip
29 Aug 1997 (catalog date)
579,885 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Matching Pair by Mystical of Purple
/music/contests/mc5/veteran/m5v-pair.zip
29 Aug 1997 (catalog date)
545,683 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Unanswered Questions by Steihl
/music/contests/mc5/veteran/m5v-unq.zip
29 Aug 1997 (catalog date)
390,192 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked XX

Blasting Lifestream by anak
/music/contests/mc6/intermed/m6i-blas.zip
28 Mar 1999 (catalog date)
6,873 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Bythelakeshewaits by Myristica
/music/contests/mc6/intermed/m6i-lake.zip
28 Mar 1999 (catalog date)
578,551 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Rovasti by calf
/music/contests/mc6/intermed/m6i-rvst.zip
28 Mar 1999 (catalog date)
240,959 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Gynaecomastica Tota by ZyZ
/music/contests/mc6/rookie/m6r-gyn.zip
28 Mar 1999 (catalog date)
325,440 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Nightmare Dreaming by Bestie
/music/contests/mc6/rookie/m6r-ndre.zip
28 Mar 1999 (catalog date)
454,652 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Head Over Eels by mystical
/music/contests/mc6/veteran/m6v-eels.zip
28 Mar 1999 (catalog date)
609,463 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Drastic Scream by Lasse Makkonen
/music/disks/1995/ds.zip
26 Jul 1996 (catalog date)
1,535,314 bytes
Download FTP scene.org
Rating:

Aquarious by Mystical of Purple
/music/disks/1995/p-aqua.zip
26 Jul 1996 (catalog date)
1,122,099 bytes
Download FTP scene.org
Rating:

Blah by Axl, Vibrance, Stinger, Necros, Human, Kamophlage, Jtown, Monaco's, Darkwolf, Nf, Porus, Sledge, Luvk, Bluenote, Cubik, Paso, Pothead, QPorcupine, Lepra, Sunday, Perisoft
/music/disks/1996/blah.zip
14 Jul 1997 (catalog date)
1,679,008 bytes
Download FTP scene.org
Rating:

Destination by Mr. Angry
/music/disks/1996/destinat.zip
19 Nov 1996 (catalog date)
606,091 bytes
Download FTP scene.org
Rating:

Blur Plastiq by Mellow-D of Five Musicians
/music/disks/1996/fm-plast.zip
21 Jan 1997 (catalog date)
2,317,199 bytes
Download FTP scene.org
Rating:

Mystique 02/1996 by Mystique
/music/disks/1996/myst0296.zip
15 Sep 1996 (catalog date)
1,239,281 bytes
Download FTP scene.org
Rating:

Mystique 03/1996 by Mystique
/music/disks/1996/myst0396.zip
15 Sep 1996 (catalog date)
1,128,093 bytes
Download FTP scene.org
Rating:

Mystique 04/1996 by Mystique
/music/disks/1996/myst0496.zip
15 Sep 1996 (catalog date)
993,745 bytes
Download FTP scene.org
Rating:

Instinct Takes Control by Primtive Instinct
/music/disks/1996/pimdsk1.zip
01 Jul 1996 (catalog date)
880,977 bytes
Download FTP scene.org
Rating:

Subsonica 1 by Mellow-D, Kxmode, Stinger, Darkwolf, GD, Hunz, Skie
/music/disks/1996/sub01.zip
22 Jan 1997 (catalog date)
2,061,362 bytes
Download FTP scene.org
Rating:
All of the tunes in here are really good... a couple even at the 4.5 star level.

Lucid Volume 3 by b0b, Keith 303, Vivid, Stinger of Ultrabeat
/music/disks/1996/u-lucid3.zip
22 Jan 1997 (catalog date)
1,833,441 bytes
Download FTP scene.org
Rating:

Bullistic by Bullman of Happy Phat Klan
/music/disks/1997/bm-blist.zip
08 Jul 1998 (catalog date)
707,966 bytes
Download FTP scene.org

Halo8 Pack 5 . Random Permutations Of Artistic Endeavour by silentkid of halo8 digital industries
/music/disks/1997/h8-05.zip
23 Nov 1997 (catalog date)
2,138,064 bytes
Download FTP scene.org

Postion Special Edition by Tekleash
/music/disks/1997/postion.zip
24 Aug 1997 (catalog date)
1,495,964 bytes
Download FTP scene.org

Bathysiderodromophobia by Maple Leaf, Xplore of Plastic Surgery
/music/disks/1997/ps-bathy.zip
12 Nov 1997 (catalog date)
3,804,087 bytes
Download FTP scene.org

Sesquipedalophobia by Maple Leaf, BullHead of Plastic Surgery
/music/disks/1997/ps_sesqp.zip
24 Apr 1997 (catalog date)
2,376,447 bytes
Download FTP scene.org

Stage Nine by Scirocco, Tito, Radix, Purple Motion, Xerxes, Basehead, Laxity, Mick Rippon, Hunz, Mystical, Nemesis, Keith303
/music/disks/1998/stage9.zip
11 Jan 1998 (catalog date)
6,969,494 bytes
Download FTP scene.org
Rating:

Ripper v5.00 by Jonas of Mistic
/music/programs/rippers/rippr500.zip
09 Sep 1996 (catalog date)
212,935 bytes
Download FTP scene.org

Metabolic Virtual File System 1.0 by Slater of Metabolic
/music/programs/unusual/mvfs.zip
12 Jun 1997 (catalog date)
36,850 bytes
Download FTP scene.org
MetaBolic Virtual File System is a set of DOS-based utilities which allow a user to create virtual links to files. This way a file can be present many times on your harddisk while using diskspace only once. The system is transparant to existing and future applications. Virtual files can be accessed just as if they were real files.

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.

Breaks Vol. I by plastiq of Anqodia
/music/samples/aq-brkv1.zip
08 Jul 1997 (catalog date)
1,892,449 bytes
Download FTP scene.org
Anqodia Sample Pack. Misc. BreakBeats Vol. I . 16bit 44kHz wavs.

Juno 60 Vol. I by plastiq of Anqodia
/music/samples/aq-j60v1.zip
08 Jul 1997 (catalog date)
7,886,574 bytes
Download FTP scene.org
Anqodia Sample Pack . Roland Juno 60 Vol. I . 16bit 44kHz wavs.

Various Guitar Pieces by poogle, djzip
/music/samples/guit_var.zip
04 Jun 1998 (catalog date)
3,135,673 bytes
Download FTP scene.org
16-bit .XI samples sampled off an electric guitar. Contains high quality bassguitars but also some famous riffs and plays. Fun but still useful in our opinion.

Roland Sound Canvas Acoustic Grand Piano Samples by Hussam Eassa
/music/samples/sc_piano.zip
10 Sep 1996 (catalog date)
1,194,036 bytes
Download FTP scene.org
WAV - 16-bit 44kh

Acoustic Drums by PiCoder of Seaber Designs
/music/samples/sed-adrm.zip
13 May 1998 (catalog date)
920,816 bytes
Download FTP scene.org
You can find here several acoustic percussion instruments like snares, bass drums and toms, all with medium reverb. 44.1 kHz, 16 bit mono WAVs. Total 15 instruments.

Cah-Caqlach by Heatbeat of CNCD
/music/songs/1993/caqlach.zip
01 Feb 1997 (catalog date)
212,791 bytes
Download FTP scene.org
Rating:
(MOD) Starts with a beautiful acoustic guitar intro, then jumps to modern jazz, then goes back to acoustic guitar, then does something else, then something else... gotta give the guy credit, at least it's varied.

Devious Disaster by Mystical
/music/songs/1994/devious.zip
15 Sep 1996 (catalog date)
84,148 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the mmul division and ranked XX
(S3M)

Power of Elks by Mr. Justice
/music/songs/1994/elkpower.zip
15 Sep 1996 (catalog date)
81,556 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the mmul division and ranked XX
(XM)

Fast Illusion by Melomanic
/music/songs/1994/fastillu.zip
15 Sep 1996 (catalog date)
158,038 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the m4ch division and ranked XX
(MOD)

Jazz Festival by Big Baer
/music/songs/1994/jazzfest.zip
15 Sep 1996 (catalog date)
109,281 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the m4ch division and ranked XX
(MOD)

Mysterious Mouse by Mystical
/music/songs/1994/mousemod.zip
15 Sep 1996 (catalog date)
25,884 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the m4ch division and ranked 14
(MOD)

What's Our Name by Heretic
/music/songs/1995/d/destiny.zip
11 Sep 1996 (catalog date)
383,613 bytes
Download FTP scene.org
Rating:
Released at event BIZ95 in the mmul division and ranked XX
(XM)

Celestial Vibes by DNA-Groove
/music/songs/1995/d/dna-cele.zip
21 Nov 1996 (catalog date)
103,576 bytes
Download FTP scene.org
Rating:
(S3M)

Destiny by DSP
/music/songs/1995/d/dsp-dest.zip
17 Sep 1996 (catalog date)
95,131 bytes
Download FTP scene.org
Rating:
(S3M)

Existing by Mick Rippon
/music/songs/1995/e/existing.zip
17 Sep 1996 (catalog date)
171,978 bytes
Download FTP scene.org
Rating:
(S3M)

Fish Power by Mystical
/music/songs/1995/f/fish2.zip
17 Sep 1996 (catalog date)
278,411 bytes
Download FTP scene.org
Rating:
Released at event SE95 in the mmul division and ranked ??
(S3M)

Interesting Stuff by Vic
/music/songs/1995/i/interest.zip
23 Sep 1996 (catalog date)
249,605 bytes
Download FTP scene.org
Rating:
(PTM)

Lille Peder Edderkop by Jazz, Mystical
/music/songs/1995/j/jazzmyst.zip
24 Sep 1996 (catalog date)
90,980 bytes
Download FTP scene.org
Rating:
Released at event SE95 in the mmul division and ranked ??
(S3M)

Blind Justice by Scirocco
/music/songs/1995/j/justice.zip
21 Sep 1996 (catalog date)
259,695 bytes
Download FTP scene.org
Rating:
(XM)

Celestial Lullabye by Basehead
/music/songs/1995/k/k-celest.zip
18 Sep 1996 (catalog date)
334,080 bytes
Download FTP scene.org
Rating:
(S3M)

Plastik Ganja by Zake
/music/songs/1995/k/k_plast.zip
18 Sep 1996 (catalog date)
187,706 bytes
Download FTP scene.org
Rating:
(S3M)

Synergistic by Khyron
/music/songs/1995/k/k_synerg.zip
21 Sep 1996 (catalog date)
420,705 bytes
Download FTP scene.org
Rating:
(XM)

Killer Instinct by Danes
/music/songs/1995/k/killer.zip
21 Sep 1996 (catalog date)
112,452 bytes
Download FTP scene.org
Rating:
(XM)

Aquarius by Mystical
/music/songs/1995/m/m-aqth.zip
18 Sep 1996 (catalog date)
80,471 bytes
Download FTP scene.org
Rating:
(S3M)

Compact Caviar by Mystical
/music/songs/1995/m/m-caviar.zip
16 Sep 1996 (catalog date)
141,037 bytes
Download FTP scene.org
Rating:
Released at event TP95 in the m4ch division and ranked 03
(MOD)

Delusive Dreams by Mystical
/music/songs/1995/m/m-delus.zip
18 Sep 1996 (catalog date)
125,970 bytes
Download FTP scene.org
Rating:
(S3M)

Electric Yuppie by Mystical
/music/songs/1995/m/m-electr.zip
16 Sep 1996 (catalog date)
84,201 bytes
Download FTP scene.org
Rating:
(MOD)

Final Encounter by Mystical
/music/songs/1995/m/m-finenc.zip
18 Sep 1996 (catalog date)
147,179 bytes
Download FTP scene.org
Rating:
(S3M)

Flying Indian by Mystical
/music/songs/1995/m/m-flying.zip
18 Sep 1996 (catalog date)
117,755 bytes
Download FTP scene.org
Rating:
(S3M)

Gotta Get it Out by Mystical
/music/songs/1995/m/m-getit.zip
18 Sep 1996 (catalog date)
176,267 bytes
Download FTP scene.org
Rating:
(S3M)

Flying Indian II by Mystical
/music/songs/1995/m/m-india2.zip
18 Sep 1996 (catalog date)
153,890 bytes
Download FTP scene.org
Rating:
(S3M)

En N0gen And Der Danser by Mystical
/music/songs/1995/m/m-n0gen.zip
18 Sep 1996 (catalog date)
103,963 bytes
Download FTP scene.org
Rating:
(S3M)

Never Mind by Mystical
/music/songs/1995/m/m-never.zip
18 Sep 1996 (catalog date)
130,054 bytes
Download FTP scene.org
Rating:
(S3M)

Power On by Mystical
/music/songs/1995/m/m-power.zip
16 Sep 1996 (catalog date)
61,798 bytes
Download FTP scene.org
Rating:
(MOD)

Skulme Planer Theme by Mystical
/music/songs/1995/m/m-skumth.zip
18 Sep 1996 (catalog date)
226,953 bytes
Download FTP scene.org
Rating:
(S3M)

Something Slightly Silly by Mystical
/music/songs/1995/m/m-slight.zip
18 Sep 1996 (catalog date)
186,125 bytes
Download FTP scene.org
Rating:
(S3M)

A Strange Vision by Mystical
/music/songs/1995/m/m-vision.zip
18 Sep 1996 (catalog date)
109,584 bytes
Download FTP scene.org
Rating:
(S3M)

In A World Of Crystals by Mystical
/music/songs/1995/m/m-world.zip
18 Sep 1996 (catalog date)
142,408 bytes
Download FTP scene.org
Rating:
(S3M)

Plasmatique by Mystical
/music/songs/1995/p/plasmat.zip
19 Sep 1996 (catalog date)
343,690 bytes
Download FTP scene.org
Rating:
Released at event TP95 in the mmul division and ranked XX
(S3M)

S-tim8 by S-Teri
/music/songs/1995/s/stim8.zip
21 Sep 1996 (catalog date)
155,903 bytes
Download FTP scene.org
Rating:
(XM)

Celestial Vision by Sybaris
/music/songs/1995/t/t-vision.zip
16 Sep 1996 (catalog date)
331,039 bytes
Download FTP scene.org
Rating:
(MTM)

Mystique Part One by TimeLord
/music/songs/1995/t/tl-myst.zip
20 Sep 1996 (catalog date)
263,822 bytes
Download FTP scene.org
Rating:
(S3M)

Mystique Part Two by TimeLord
/music/songs/1995/t/tl-myst2.zip
20 Sep 1996 (catalog date)
420,930 bytes
Download FTP scene.org
Rating:
(S3M)

Mystique Part Three by TimeLord
/music/songs/1995/t/tl-myst3.zip
20 Sep 1996 (catalog date)
494,742 bytes
Download FTP scene.org
Rating:
(S3M)

The Fantasticks : Act 1 by Arcturus
/music/songs/1996/a/aq_fant.zip
18 Mar 1997 (catalog date)
97,913 bytes
Download FTP scene.org
Rating:
(S3M)

Spontaneous Combustion by Blue Felix
/music/songs/1996/c/combustn.zip
01 Jul 1996 (catalog date)
267,485 bytes
Download FTP scene.org
Rating:
(XM)

Destiny by Dilvish
/music/songs/1996/d/destiny.zip
22 Sep 1996 (catalog date)
160,131 bytes
Download FTP scene.org
Rating:
(S3M)

Mellow Trance by Plastik
/music/songs/1996/f/fdn-melo.zip
22 Sep 1996 (catalog date)
80,652 bytes
Download FTP scene.org
Rating:
(S3M)

Questions by Dilvish
/music/songs/1996/g/gem-ques.zip
01 Oct 1996 (catalog date)
232,767 bytes
Download FTP scene.org
Rating:
(IT)

Interstice by Ghost Fellow
/music/songs/1996/g/gf_inter.zip
22 Sep 1996 (catalog date)
77,613 bytes
Download FTP scene.org
Rating:
(S3M)

Jungle Festivities by Barbatruc
/music/songs/1996/j/jungle.zip
23 Aug 1996 (catalog date)
138,109 bytes
Download FTP scene.org
Rating:
(S3M)

I Still Have A Dream by Bert
/music/songs/1996/k/k_adream.zip
22 Sep 1996 (catalog date)
475,573 bytes
Download FTP scene.org
Rating:
(XM)

Hard Times by Stinger
/music/songs/1996/k/k_hard.zip
26 Jan 1997 (catalog date)
246,514 bytes
Download FTP scene.org
Rating:
(XM)

Haunting Memories by Stinger of Kosmic
/music/songs/1996/k/k_mem.zip
23 Aug 1996 (catalog date)
246,571 bytes
Download FTP scene.org
Rating:
(XM)

Self-Inflicted Euphoria by Stinger
/music/songs/1996/k/k_self.zip
16 Nov 1996 (catalog date)
138,962 bytes
Download FTP scene.org
Rating:
(XM)

Stingray by Hollywood
/music/songs/1996/k/k_sting.zip
22 Sep 1996 (catalog date)
255,903 bytes
Download FTP scene.org
Rating:
(MOD)

Den Onde Corporation by Mystical
/music/songs/1996/m/m-denond.zip
11 Aug 1996 (catalog date)
603,595 bytes
Download FTP scene.org
Rating:
(IT)

Grydemix by Mystical
/music/songs/1996/m/m-gryde.zip
08 Oct 1996 (catalog date)
206,023 bytes
Download FTP scene.org
Rating:
(S3M)

Hopla Paa Bakken by Mystical of Purple
/music/songs/1996/m/m-hopla.zip
20 Apr 1997 (catalog date)
130,100 bytes
Download FTP scene.org
Released at event SE96 in the mfst division and ranked ??
(IT)

Midnight by Mystical
/music/songs/1996/m/m-midnig.zip
15 Mar 1997 (catalog date)
332,962 bytes
Download FTP scene.org
Released at event TP96 in the mmul division and ranked 02
(S3M)

Path to Freedom by Mystical
/music/songs/1996/m/m-path.zip
08 Oct 1996 (catalog date)
159,005 bytes
Download FTP scene.org
Rating:
(S3M)

Salsa Con Carne by Mystical
/music/songs/1996/m/m-salcon.zip
15 Mar 1997 (catalog date)
317,044 bytes
Download FTP scene.org
Released at event TP96 in the m4ch division and ranked 01
(MOD)

Stomping on Elephantus by Mystical
/music/songs/1996/m/m-stomp.zip
08 Oct 1996 (catalog date)
411,321 bytes
Download FTP scene.org
Rating:
(S3M)

Creature of the Woods by Mystical
/music/songs/1996/m/m-woods.zip
11 Aug 1996 (catalog date)
341,256 bytes
Download FTP scene.org
Rating:
(S3M)

Painting Plastics by Vim
/music/songs/1996/m/m_plas.zip
26 Jan 1997 (catalog date)
189,050 bytes
Download FTP scene.org
Rating:
(MOD)

Combustion by ANpe of Melancholy
/music/songs/1996/m/ml-comb.zip
08 Apr 1997 (catalog date)
218,263 bytes
Download FTP scene.org
(XM)

Existing (remix) by Mick Rippon
/music/songs/1996/m/mr_exist.zip
22 Sep 1996 (catalog date)
273,864 bytes
Download FTP scene.org
Rating:
(XM)

Optimized by Elastic E, Green Reaper
/music/songs/1996/o/optimizd.zip
22 Sep 1996 (catalog date)
403,265 bytes
Download FTP scene.org
Rating:
(XM)

Destiny Roll by Point Blank
/music/songs/1996/p/pb_roll.zip
22 Sep 1996 (catalog date)
367,019 bytes
Download FTP scene.org
Rating:
(XM)

Mystic Dream by Pop Faktor
/music/songs/1996/p/pf-myst.zip
01 Oct 1996 (catalog date)
346,156 bytes
Download FTP scene.org
Rating:
(IT)

Liquid Plastic by Pirat
/music/songs/1996/p/phd_lp.zip
20 Nov 1996 (catalog date)
63,397 bytes
Download FTP scene.org
Rating:
(MOD)

A Pleasant Walk In The Park by Primitive Instinct
/music/songs/1996/p/pi-wakyn.zip
22 Sep 1996 (catalog date)
38,610 bytes
Download FTP scene.org
Rating:
(XM)

Mystic Journey by Pinion
/music/songs/1996/p/pn-myst.zip
22 Sep 1996 (catalog date)
144,647 bytes
Download FTP scene.org
Rating:
(S3M)

Stigmata by Phoenix
/music/songs/1996/p/pnx-stig.zip
20 Nov 1996 (catalog date)
350,825 bytes
Download FTP scene.org
Rating:
Released at event NAID96 in the mmul division and ranked XX
(IT)

The Demo Is Still In My Mind by cyclone of questor
/music/songs/1996/q/que-tdi.zip
17 Jul 1997 (catalog date)
225,056 bytes
Download FTP scene.org
(XM)

Phonesex and Fashion by Screamager, Stinger
/music/songs/1996/s/sc-fsex.zip
17 Nov 1996 (catalog date)
311,836 bytes
Download FTP scene.org
Rating:
(XM)

Humanoideja by Stinger, Mellow-D
/music/songs/1996/s/sm-human.zip
17 Nov 1996 (catalog date)
656,915 bytes
Download FTP scene.org
Rating:
(XM)

Moonwaves by Stinger, Mellow-D
/music/songs/1996/s/sm-wave.zip
17 Nov 1996 (catalog date)
271,167 bytes
Download FTP scene.org
Rating:
(XM)

Spastics At Work by WildSide
/music/songs/1996/s/spastics.zip
19 Mar 1997 (catalog date)
99,606 bytes
Download FTP scene.org
(S3M)

Stick by X0TherMC
/music/songs/1996/s/stick.zip
19 Mar 1997 (catalog date)
181,115 bytes
Download FTP scene.org
(S3M)

Friendship by Stinger
/music/songs/1996/s/sv-frien.zip
22 Sep 1996 (catalog date)
239,476 bytes
Download FTP scene.org
Rating:
(XM)

Obsession by Stinger
/music/songs/1996/s/sv-obses.zip
22 Sep 1996 (catalog date)
216,784 bytes
Download FTP scene.org
Rating:
(XM)

Sunchaser by Stinger
/music/songs/1996/s/sv-sun.zip
22 Sep 1996 (catalog date)
265,347 bytes
Download FTP scene.org
Rating:
(XM)

Destiny Of Life by TNT of DeeLite Demo Group
/music/songs/1996/t/tdestiny.zip
06 Nov 1997 (catalog date)
104,094 bytes
Download FTP scene.org
(S3M)

Stimulation by Darkwolf of Terraformer
/music/songs/1996/t/tf-stimu.zip
09 Apr 1997 (catalog date)
567,977 bytes
Download FTP scene.org
(IT)

Twisting Brains by Hotness
/music/songs/1996/t/twisting.zip
22 Sep 1996 (catalog date)
88,914 bytes
Download FTP scene.org
Rating:
(XM)

Uniambient by Stinger
/music/songs/1996/u/uniamb.zip
25 Jan 1997 (catalog date)
282,767 bytes
Download FTP scene.org
Rating:
(XM)

With Or Without You - Remix by Luca Restifo
/music/songs/1996/w/wowdance.zip
15 Apr 1997 (catalog date)
65,378 bytes
Download FTP scene.org
(XM)

Acid Techno by Luca Restifo
/music/songs/1997/a/acidtech.zip
09 Apr 1997 (catalog date)
133,625 bytes
Download FTP scene.org
(XM)

Bond Still Rulez by Pirate Pete
/music/songs/1997/b/bond.zip
15 May 1997 (catalog date)
103,168 bytes
Download FTP scene.org
(XM)

Celestial Fantasia by BeaT of Osmosys
/music/songs/1997/c/celesfnt.zip
06 Apr 1997 (catalog date)
251,964 bytes
Download FTP scene.org
(S3M)

Above Destiny by Cyclone
/music/songs/1997/c/cyc_dest.zip
29 Jan 1998 (catalog date)
705,270 bytes
Download FTP scene.org
Released at event CRS97 in the mmul division and ranked 02
(IT)

Codeine Vs Caffeine by Balistic of DiSC
/music/songs/1997/d/dc-drugs.zip
11 Sep 1997 (catalog date)
281,292 bytes
Download FTP scene.org
(IT)

den lille pige med trommestikkerne by Ruben of Litewerx
/music/songs/1997/d/dlpmt.zip
09 Feb 1999 (catalog date)
481,138 bytes
Download FTP scene.org
Released at event SE97 in the mmul division and ranked 10

Celestial World by Convertito of Dreamers
/music/songs/1997/d/dms-cest.zip
20 Jul 1997 (catalog date)
158,338 bytes
Download FTP scene.org
(XM)

Plastic Groove by D.T.
/music/songs/1997/d/dtplst.zip
16 Oct 1997 (catalog date)
191,225 bytes
Download FTP scene.org
(IT)

Beavis And Butthead Acoustic Remix by Beek of Grey, Green Grapes, 7YNIVf, Xantis
/music/songs/1997/g/g_bbremx.zip
19 Jun 1997 (catalog date)
232,485 bytes
Download FTP scene.org
(IT)An acoustic remix of the Beavis and Butthead theme song (Original song was by Mike Judge)

Ghost Intro by Evrimsson of Skywards
/music/songs/1997/g/ghostint.zip
25 Jul 1997 (catalog date)
147,468 bytes
Download FTP scene.org
Released at event MEK97 in the mmul division and ranked XX
(XM)

Mystic Voyage by Zenga of iNTERLACED bytes
/music/songs/1997/i/ib-zmyst.zip
12 May 1998 (catalog date)
117,774 bytes
Download FTP scene.org
(XM)

Clandestine Affair by shaithis of Immortal Coil
/music/songs/1997/i/ic-clan.zip
16 Apr 1997 (catalog date)
265,247 bytes
Download FTP scene.org
(IT)

Plasticine Cities by Imaginary Unit
/music/songs/1997/i/iu-plast.zip
24 Apr 1997 (catalog date)
213,655 bytes
Download FTP scene.org
(XM)

She's On My Mind by Stinger of Kosmic
/music/songs/1997/k/k_she.zip
08 Apr 1997 (catalog date)
457,524 bytes
Download FTP scene.org
(XM)

Kesh by Luca Restifo
/music/songs/1997/k/kesh.zip
07 May 1998 (catalog date)
688,381 bytes
Download FTP scene.org
Rating:
(XM)

Lost In Wood by AMGorb of AMGorboration
/music/songs/1997/l/lostinwo.zip
11 May 1997 (catalog date)
210,912 bytes
Download FTP scene.org
(IT)

Majestic by DJ Untitled
/music/songs/1997/m/magestic.zip
15 Sep 1997 (catalog date)
88,559 bytes
Download FTP scene.org
(XM)

The Question by Monz
/music/songs/1997/m/mnz-ques.zip
08 Apr 1997 (catalog date)
46,742 bytes
Download FTP scene.org
(XM)

Condemned by Morphine of RBi, Solo, Mystic
/music/songs/1997/m/mph-cndm.zip
13 Dec 1998 (catalog date)
329,417 bytes
Download FTP scene.org
Released at event BIZ97 in the mmul division and ranked XX

panoramic viewpoints by Morphine of RBi, Solo, Mystic
/music/songs/1997/m/mph-pvpt.zip
13 Dec 1998 (catalog date)
481,968 bytes
Download FTP scene.org
Released at event BIZ97 in the mmul division and ranked 05

The Justice For All... by Mr.Sanders of HRg
/music/songs/1997/m/mrs-jstr.zip
20 Jun 1997 (catalog date)
539,461 bytes
Download FTP scene.org
(IT)

Mountain Of Fluff by Mystical of Purple
/music/songs/1997/m/mst-moun.zip
03 Jun 1998 (catalog date)
372,484 bytes
Download FTP scene.org
(IT)

Mystico by The JAW of Vovoid
/music/songs/1997/m/mystico.zip
04 Dec 1997 (catalog date)
35,809 bytes
Download FTP scene.org
(XM)

Out Of Context by cd, Stinger of NOISE
/music/songs/1997/n/no-cntex.zip
10 Nov 1997 (catalog date)
802,740 bytes
Download FTP scene.org
(IT)

Castita Perfetta by Neurotix
/music/songs/1997/n/ntx_cape.zip
16 Jun 1997 (catalog date)
308,202 bytes
Download FTP scene.org
(XM)

Hostile by congo of optix
/music/songs/1997/o/ox-hstle.zip
20 Oct 1997 (catalog date)
1,848,816 bytes
Download FTP scene.org
(IT)

Waiting for the sun by pix
/music/songs/1997/p/pix-wsun.zip
11 Feb 1997 (catalog date)
492,070 bytes
Download FTP scene.org
Rating:
(XM) interesting guitar song

Plastic Nudity by Jisemdu of Psoxima, Tpolm
/music/songs/1997/p/plasticn.zip
06 Jul 1997 (catalog date)
444,196 bytes
Download FTP scene.org
Released at event TG97 in the mmul division and ranked 01
(XM)

Pollon Rmx by Luca Restifo
/music/songs/1997/p/pollon.zip
12 Apr 1997 (catalog date)
787,201 bytes
Download FTP scene.org
(XM)

Big Slice Of Flange by Silky, Caustic, Freedom of Resonance
/music/songs/1997/r/r_bsof.zip
10 Jul 1997 (catalog date)
325,236 bytes
Download FTP scene.org
(XM)