Search for "work": 132 matches

3d math by Lithium of VLA
/code/3d/docs/3d_math.zip
10 Jan 1997 (catalog date)
11,835 bytes
Download FTP scene.org
Rating:
Explanations of some 3d math concepts - I remember not getting the 3d rotations working correctly when I first started programming, but I'm not sure if that's my fault or the fault of the doc. Most of the docs are some simple linear algebra. They spell out the equations in the end for those who can't completely understand them.

Panard-Vision 3D Engine by Olivier Brunet
/code/3d/systems/pvsdk95d.zip
17 Jan 1999 (catalog date)
915,862 bytes
Download FTP scene.org
I couldn't get it to work unfortunately, but it seems pretty good.

Raw GFX Lib by Ghyll of TGA
/code/3d/systems/tgarx2b1.zip
02 Jul 1997 (catalog date)
34,488 bytes
Download FTP scene.org
Rating:
An elementary graphics system. The functions are very base and it's a good idea for anyone coding graphics engines either to understand how those functions work or to be given higher level functions to work with.

Phong Explanation by TimJ of Vertigo
/code/3d/trifill/phong/vgophong.zip
17 Jan 1999 (catalog date)
6,709 bytes
Download FTP scene.org
Rating:
Good tutorial about how the phong lightning algorithm works and how it can be implemented

Mod Play by ? of VLA
/code/audio/players/modplay.zip
11 Jan 1997 (catalog date)
41,424 bytes
Download FTP scene.org
Rating:
Broken mod player - Doesn't say who wrote it in the archive, but says to greet VLA if you use it. Doesn't work right.

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!

Timeless source by Tran
/code/demosrc/demos/timesrc.zip
10 Jan 1997 (catalog date)
356,568 bytes
Download FTP scene.org
Rating:
Source for Tran's timeless demos - Curiously better than Tran's other source releases. If you intend to figure out how it works, I suggest you start at line 127 of v.asm. Few comments, but excellent source.

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.

lens source by Jeff Lawson
/code/effects/lens/lenssrc.zip
10 Jan 1997 (catalog date)
40,603 bytes
Download FTP scene.org
Rating:
Some source for the lens effect - includes /code/effect/lens/lens.lzh as it's description of how it works.

Crossfade by Esak
/code/effects/pallette/crosfade.zip
21 Sep 1997 (catalog date)
55,071 bytes
Download FTP scene.org
Rating:
Includes a good explanation of how it works.

Animation Construction Kit 3D (source) by Lary Myers
/code/effects/worlds/acksrc.zip
25 Aug 1997 (catalog date)
146,731 bytes
Download FTP scene.org
Rating:
A Wolfenstein-like 3d world engine by Lary Myers, including all sources and a good explanation of how it works. To make it run you also have to download ackkit.zip which contains all the data.

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.

Introduction To Keyboard Handlers by Alioth, Don Williamson of O.M.D
/code/hardware/keyboard/keyb.zip
24 Apr 1998 (catalog date)
18,117 bytes
Download FTP scene.org
How to construct a keyboard handler from scratch and why what you do actually works. :)

Flat Real Mode Interface by Juanito
/code/hardware/memory/frmi_150.exe
10 Jan 1997 (catalog date)
38,210 bytes
Download FTP scene.org
Rating:
An interface for flat real mode from BC - Has some docs on xms and comments explaining how the interface works itself. I didn't test to see if it works. Doesn't work in v86 mode, meaning most programs made with this will require a reboot.

Virtual Memory Management by Flux
/code/hardware/memory/fxvmm210.zip
10 Jan 1997 (catalog date)
112,232 bytes
Download FTP scene.org
Rating:
A virtual memory management interface for BC - Once again, I didn't test this. This system is much more complete than the above and certainly much more useful. From the code, I'd say I'd like to work with this guy. :)

Real Memory by Chatter
/code/hardware/memory/realmem.zip
10 Jan 1997 (catalog date)
10,850 bytes
Download FTP scene.org
Rating:
Supposedly gets you past the 64k barrier in real mode - I have no clue what compiler this is supposed to compile for. It uses opcodes not allowed in BC's inline assembler, watcom doesn't use that kind of inline assembler (and doesn't need this extender anyway), and this is pointless for djgpp which only compiles 32bit pmode apps. I have neither TC (but considering that's a sub-set of BC I can assume it won't work) nor Quick C (but that's so old, it's inline assembler's probably incomplete too).

EOS
/code/hardware/pmode/e_os303.zip
10 Jul 1997 (catalog date)
1,227,935 bytes
Download FTP scene.org
Rating:
Eclipse Operating System. A clumsy pmode system, but has many ready to use libs. The makefiles don't work with wmake which they really should.

Kernel 1.30b
/code/hardware/pmode/krnl130b.zip
26 Jun 1997 (catalog date)
314,227 bytes
Download FTP scene.org
Rating:
A Pmode kernel program with some extra libraries. Has a sound library and many other extras to make up for the fact that it's rather new and things such as midas, GUSPlay, or whatnot won't work with it. It's picky about assembling (tasm32+wlink only). No real documentation to help you get started.

PMODE/W by Tran, Daredevil
/code/hardware/pmode/pmw133.zip
10 Jan 1997 (catalog date)
143,190 bytes
Download FTP scene.org
Rating:
A DOS extender for pmode C programming - Works with the Watcom C compiler as a replacement for their protected mode system. Has it's tradeoffs with their (Watcom's) system.

Xi Development System by Fysx
/code/hardware/pmode/xids0815.zip
19 Jan 1998 (catalog date)
43,131 bytes
Download FTP scene.org
Rating:
Xi Development System, a pmode extender. Uses tlink in the end, but works from watcom and tasm. Possibly a contender if you're writing a 64k intro and need a pmode extender. I'm unsure of it's stability, but it's small.

Asychronous communitcations code by Lord Logics
/code/hardware/serial/ll_comm.zip
10 Jan 1997 (catalog date)
56,754 bytes
Download FTP scene.org
Rating:
Source for "asynchronous" comm connections - A library meant for opening COM lines and other serial line connections. It's supposedly asynchronous (but maybe in a later version for this only supports one). Not too demo scene relevant, but it could make for great modem-modem networking in a game.

XMode Library
/code/library/xlib61.zip
01 Dec 1997 (catalog date)
786,630 bytes
Download FTP scene.org
Rating:
A very good graphics library that contains everything you need when working in XMode.

C Tutorial Part 3 by Desolation of VLA
/code/tutors/c/ctut3vla.zip
18 Jan 1998 (catalog date)
3,771 bytes
Download FTP scene.org
Rating:
This one explains how arrays work in C.

Tutorial #11 by Denthor of Asphyxia
/code/tutors/denthor/tut11.zip
11 Jan 1997 (catalog date)
15,291 bytes
Download FTP scene.org
Rating:
Asphyxia VGA demo trainer:Cross fading - Only works on pictures with limited colors.

Polyfiller Tutorial by Natan Whitaker
/code/tutors/graphics/poly_tut.zip
17 Jan 1999 (catalog date)
134,279 bytes
Download FTP scene.org
Rating:
The example executable included doesn't seem to work, but the textfile might be useful for beginners who want to write their own polyfiller routines.

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.

Flat Square Root by Noble Roman
/code/tutors/math/sqrt.zip
18 Jan 1998 (catalog date)
1,569 bytes
Download FTP scene.org
Rating:
Only explains how to do it, not why it works, so it is not great for people with hardly any math knowledge.

Mode 13h Explanation by Vulture of Outlaw Triad
/code/tutors/video/basicdoc.zip
18 Jan 1998 (catalog date)
4,494 bytes
Download FTP scene.org
Rating:
Only explains how to get into mode 13h and how its memory model works. Not very useful.

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

Bin to Obj by Mr Baggins of Extravaganza
/code/utils/compiler/binobj32.zip
12 Aug 1997 (catalog date)
31,779 bytes
Download FTP scene.org
Rating:
A bin 2 obj util. Actually produces obj files, but only works with Watcom C. (By extension, you should be able to get it to work with pmode and TASM.)

Bitmap Dumper by Jare of Iguana
/code/utils/graphics/bgif.zip
26 Feb 1998 (catalog date)
29,815 bytes
Download FTP scene.org
Rating:
Dumps a pcx,lbm or gif file into a raw binary bitmap file and a palette file. Doesn't seem to work correctly with resulotions larger then 320x200.

Byteraper 2000 v4.0b by Litening
/code/utils/graphics/byterape.zip
26 Feb 1998 (catalog date)
165,061 bytes
Download FTP scene.org
Rating:
A utility to rip graphics and mods out of demos. Doesn't work when compression is used, and it also doesn't support modern module formats.

Graphical File Viewer v2.01 by Jare of Iguana
/code/utils/graphics/gfv20.zip
26 Feb 1998 (catalog date)
12,669 bytes
Download FTP scene.org
Rating:
Very simple graphics ripper, doesn't work with compressed files.

Tiny PCX by Sugar Less
/code/utils/graphics/tinypcx.zip
19 Jan 1998 (catalog date)
1,165 bytes
Download FTP scene.org
Rating:
164 byte pcx loader. Only works on 320x200x256 images (because of video mode and failing to check the image's actual size) and doesn't explain the pcx file format (which is more or less trivial)

Text Mode FLI/FLC Player
/code/video/txtfli.zip
06 Oct 1996 (catalog date)
99,695 bytes
Download FTP scene.org
Rating:
Buggy mode set, only worked in a dos box from win '95. Had information about the text mode demo compo and was rather impressive for what it did. Otherwise, tight code for what it does, sparce, useless comments.

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)

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,

HiTech's Work by HiTech
/demos/1994/h/ht2work.zip
29 Jun 1996 (catalog date)
14,972 bytes
Download FTP scene.org
Rating:

Man at Work by Chopati
/demos/1995/m/man_at.zip
30 Jun 1996 (catalog date)
534,171 bytes
Download FTP scene.org
Rating:
Released at event TP95 in the demo division and ranked ??

Opera by Jolly Workers
/demos/1995/o/opera.zip
24 May 1997 (catalog date)
963,802 bytes
Download FTP scene.org
Rating:
Released at event ASM95 in the demo division and ranked XX

Proton by Artwork
/demos/1996/a/atw_prot.zip
14 Sep 1996 (catalog date)
1,373,024 bytes
Download FTP scene.org
Rating:
Released at event ASM96 in the demo division and ranked 08

Patchwork by Intra
/demos/1996/p/patchwrk.zip
04 Dec 1996 (catalog date)
1,271,701 bytes
Download FTP scene.org
Rating:
Released at event NAID96 in the demo division and ranked ??

Astral Blur by The Black Lotus
/demos/1998/a/astral32.exe
01 Mar 1998 (catalog date)
4,881,920 bytes
Download FTP scene.org
Rating:
Released at event TG97 in the demo division and ranked 03
Win95, If this does not work, try astral32.zip with ixalance.zip

Fireworks by Picard of Hydrogen
/demos/1998/h/h2_firew.zip
21 Aug 1998 (catalog date)
5,626 bytes
Download FTP scene.org
Rating:
Released at event SCE98 in the in1k division and ranked 01

Jizz by The Black Lotus
/demos/1998/j/jizz32.exe
03 Mar 1998 (catalog date)
257,024 bytes
Download FTP scene.org
Rating:
Released at event WIR97 in the in64 division and ranked 01
Win95, If this does not work, try jizz32.zip with ixalance.zip

Stash by The Black Lotus
/demos/1998/s/stash32.exe
01 Mar 1998 (catalog date)
286,208 bytes
Download FTP scene.org
Rating:
Released at event TP97 in the in64 division and ranked 01
Win95, If this does not work, try stash32.zip with ixalance.zip

Smoke by Live
/graphics/disks/1997/smoke.zip
05 Apr 1997 (catalog date)
615,768 bytes
Download FTP scene.org
Rating:
Artwork by Ukko and Haplo (8 pictures each), music by Shad.

Sadpo at work by Fritz S of Krewel Krew
/graphics/images/1996/s/sadpo.zip
06 May 1998 (catalog date)
6,923 bytes
Download FTP scene.org
Rating:
Released at event WIR96 in the grfx division and ranked 29
320x200x256

Bohme 29 by Nero of Artwork
/graphics/images/1997/m/mek-176.zip
18 May 1998 (catalog date)
31,753 bytes
Download FTP scene.org
Rating:
Released at event MEK97 in the grfx division and ranked 08
320x256x128

Orion System by 3D Addict of Visual Impact Works
/graphics/images/1997/o/orion.zip
13 Oct 1997 (catalog date)
103,564 bytes
Download FTP scene.org
Rating:

Outpost by 3D Addict of Visual Impact Works
/graphics/images/1997/o/outpost.zip
13 Oct 1997 (catalog date)
258,371 bytes
Download FTP scene.org
Rating:

Milk and Honey by Fiver2, Apu Nahasa of Feb, Artwork
/graphics/images/1997/p/pixel_43.zip
16 Jun 1998 (catalog date)
527,899 bytes
Download FTP scene.org
Rating:
Released at event TP97 in the grfx division and ranked 05
736x512x256

Into the Dark by Fastjack of Shadowland Network
/graphics/images/1998/i/itdark.zip
28 May 1998 (catalog date)
888,711 bytes
Download FTP scene.org
Rating:
Released at event MEK98 in the grfx division and ranked 17
640x480x16m

Infinity 2 by Infinity Network
/mags/1996/infy2.zip
01 Oct 1996 (catalog date)
1,330,823 bytes
Download FTP scene.org
Rating:

The Clockwork Melon by Quantum Porcupine
/music/contests/mc4/veteran/m4v-cloc.zip
10 Nov 1996 (catalog date)
463,374 bytes
Download FTP scene.org
Released at event MC4 in the mmul division and ranked XX

Never Work by DaM
/music/contests/mc6/intermed/m6i-nwrk.zip
28 Mar 1999 (catalog date)
516,896 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Bunny Tell by Workbench
/music/contests/mc6/veteran/m6v-btel.zip
28 Mar 1999 (catalog date)
288,714 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

TV Under Cover by Flatrich of Flatdisk Softworks
/music/disks/1994/5_tvmods.zip
12 Aug 1997 (catalog date)
563,902 bytes
Download FTP scene.org
Rating:

Rat Race Suite by FLAtRich of fLAtDiSk SoftWorks
/music/disks/1995/rat_race.zip
11 Aug 1997 (catalog date)
1,032,320 bytes
Download FTP scene.org
Rating:

Back To Basics by Labworks
/music/disks/1996/b2b.zip
29 Sep 1996 (catalog date)
2,689,213 bytes
Download FTP scene.org
Rating:

Blueshift by Beek of Grey
/music/disks/1996/g_bshift.zip
27 Jan 1997 (catalog date)
1,341,192 bytes
Download FTP scene.org
Rating:
Old school style tracking dude. Works well. No interface.

The Truth Of Sequence by VeritaS of DreamWorks Design
/music/disks/1997/v_ttoseq.zip
29 Dec 1997 (catalog date)
4,420,930 bytes
Download FTP scene.org

Network Dreams by Makke of The Einstein Crew
/music/disks/1998/netdream.zip
19 Mar 1998 (catalog date)
639,281 bytes
Download FTP scene.org
Rating:

Gasworks Park E.p. by Hepkatt of The Temple of Waffular Synthesis
/music/disks/1998/tws_gw.zip
03 May 1998 (catalog date)
841,265 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

Mod4win 2.30b Full Version
/music/programs/players/m4w230bf.zip
14 May 1998 (catalog date)
1,231,435 bytes
Download FTP scene.org
This is Mod4Win 2.30b full version with the updated Player32.dll file. I just took the update and compressed it and tested it out, it worked fine. If there are any problems with the install, let me know and I'll test it out.

Universal Module Player V5.99 Rev. D by Terry Chatman aka void of i.TECH
/music/programs/players/ump599d.zip
11 Jul 1997 (catalog date)
100,166 bytes
Download FTP scene.org
Some consider this THE module player. Supports XM, S3M, MOD, STM, 669, MTM, SB, SBPro, SB16, PAS, PAS plus, PAS16, GUS. Has very nice graphical views and TONS of new features. DOS although works under Win95.

Nut Chords 1.1 by Nutcase of Kinetic PC
/music/programs/unusual/nutcho11.zip
05 May 1997 (catalog date)
79,630 bytes
Download FTP scene.org
Excellent chord-finder for musicians and composers. This chord-finder can find all variations of any chords in any tuning possible. You can add more weird chords if you want. Program is based on logics and can really show all variations where to pick up a chord with guitar. Program works on PC/DOS/VGA machines. Featuring: fretboard and keyboard view, mouse and shortkey controls, searching for chords, pick up chords and keys from lists, converting chords between piano and guitar. Perfect tool for all serious composers, trackers as well. TRY IT, it's good. Thanks.

Vibe Control Center V1.01 by Logos of Charlie Brown Records
/music/programs/unusual/vibe101.zip
06 Jun 1997 (catalog date)
618,214 bytes
Download FTP scene.org
Vibe Control Center is a program which enlightens the work of the (music-)group manager. VCC has a powerful (paradox-based) database in which all the group- data can be entered. With this information VCC can easily print fancy text-files in the format you have designed with the powerful (html-alike) text-structuring language. VCC can also pack your releases or disks with the push of a button, WITH the info-files that carry the latest of your group its information. No more endlessly preparing an info-file for a musicdisk or release, just push that button. By downloading Vibe, you have earned a good night sleep, Logos

Wav Reverberator V1.4 by PiCoder of Seaber Designs
/music/programs/unusual/wavrev14.zip
18 Jun 1998 (catalog date)
109,599 bytes
Download FTP scene.org
Here it is. Works great, many parameters, clipping control, crisp sound, 225 types of reverbs possible, not counting endless amount of equalization values. FLOATING-point calculations extensively used. Works with stereo and mono 16 bit WAV files of any sample frequency. C++ non-compilable sources included.

Wav Reverberator V1.5 by PiCoder of Seaber Designs
/music/programs/unusual/wavrev15.zip
21 Jun 1998 (catalog date)
162,311 bytes
Download FTP scene.org
Here it is. Works great, many parameters, clipping control, crisp sound, 225 types of reverbs possible, not counting endless amount of equalization values. FLOATING-point calculations extensively used. Works with stereo and mono 16 bit WAV files of any sample frequency. C++ non-compilable sources included.

Castman's 35 Looped Drums by castman of CyberImage
/music/samples/cm-drums.zip
07 Dec 1997 (catalog date)
1,027,066 bytes
Download FTP scene.org
These are 35 looped drum samples, mostly in .snd format. Samples work for Impule Tracker, or Scream Tracker.

Contract On America by Mob of Proletariat of fLAtDiSk SoftWorks
/music/songs/1995/a/americon.zip
01 Sep 1997 (catalog date)
211,860 bytes
Download FTP scene.org
Rating:
(MOD)

The Works by Logos
/music/songs/1995/c/cb-works.zip
21 Sep 1996 (catalog date)
195,439 bytes
Download FTP scene.org
Rating:
(XM)

Dezis Dilemma by Mob of Proletariat of fLAtDiSk SoftWorks
/music/songs/1995/d/dezis_d.zip
01 Sep 1997 (catalog date)
296,904 bytes
Download FTP scene.org
Rating:
(S3M)

Morphic Resonance by Labworks
/music/songs/1995/l/lws20.zip
21 Sep 1996 (catalog date)
280,529 bytes
Download FTP scene.org
Rating:
(XM)

Linear Signal Device by Labworks
/music/songs/1995/l/lws23.zip
21 Sep 1996 (catalog date)
736,247 bytes
Download FTP scene.org
Rating:
(XM)

Network by Skaven of Future Crew
/music/songs/1995/n/network.zip
01 Oct 1997 (catalog date)
106,576 bytes
Download FTP scene.org
Rating:
(S3M)

TV Network by Cash
/music/songs/1995/t/tvnet.zip
16 Sep 1996 (catalog date)
593,235 bytes
Download FTP scene.org
Rating:
Released at event TP95 in the m4ch division and ranked XX
(MOD)

Alien Autopsy by Waxworks
/music/songs/1995/w/wws01.zip
21 Sep 1996 (catalog date)
269,117 bytes
Download FTP scene.org
Rating:
(XM)

Fuck'n Work by Szudi
/music/songs/1996/a/abc_fwrk.zip
19 Nov 1996 (catalog date)
147,314 bytes
Download FTP scene.org
Rating:
(MOD)

Clockwork by Benzel, Nuclear Hazard of Lithium
/music/songs/1996/c/clkwork.zip
13 Apr 1997 (catalog date)
277,973 bytes
Download FTP scene.org
(IT)

Dead Birds In The Hand by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1996/d/d_birds.zip
11 Aug 1997 (catalog date)
285,231 bytes
Download FTP scene.org
(IT)

Fifty Reasons by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1996/f/fifty.zip
04 Aug 1997 (catalog date)
254,412 bytes
Download FTP scene.org
(IT)

Got Any Rope by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1996/g/got_rope.zip
24 Aug 1997 (catalog date)
286,472 bytes
Download FTP scene.org
(IT)

A Workout For Beats by Maelcum
/music/songs/1996/k/k_beats.zip
22 Sep 1996 (catalog date)
100,671 bytes
Download FTP scene.org
Rating:
(MTM)

Planet 303 by Labworks
/music/songs/1996/l/lws34.zip
17 Nov 1996 (catalog date)
616,666 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)

Brown Dwarf by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1997/b/b_dwarf.zip
04 Aug 1997 (catalog date)
255,156 bytes
Download FTP scene.org
(IT)

Dark Park - Strings Mix by inverse of Clockwork
/music/songs/1997/i/inv-dark.zip
12 Aug 1997 (catalog date)
107,504 bytes
Download FTP scene.org
(IT)

Clockwork Trip by Placid of Kosmic
/music/songs/1997/k/k_trip.zip
13 Apr 1997 (catalog date)
365,553 bytes
Download FTP scene.org
(IT)

Level 5 by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1997/l/level_5.zip
04 Aug 1997 (catalog date)
431,635 bytes
Download FTP scene.org
(IT)

Hysterics by Mob of Proletariat of fLAtDiSk SoftWorks
/music/songs/1997/m/mop_hyst.zip
04 Aug 1997 (catalog date)
522,534 bytes
Download FTP scene.org
(IT)

S E C R E T 6 7 by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1997/s/secret67.zip
04 Aug 1997 (catalog date)
172,860 bytes
Download FTP scene.org
(IT)

Aekas Song by VeritaS of DreamWorks Design
/music/songs/1997/v/v_aekasn.zip
05 Jan 1998 (catalog date)
274,315 bytes
Download FTP scene.org
(XM)

Crystal Echos by Workbench of Calodox
/music/songs/1997/w/wb_cecho.zip
03 Dec 1997 (catalog date)
370,954 bytes
Download FTP scene.org
Released at event WIR97 in the mmul division and ranked 07
(XM)

aerobicworkout'79 by aurini of suolahappo
/music/songs/1998/a/aerobicw.zip
13 Dec 1998 (catalog date)
728,815 bytes
Download FTP scene.org
Released at event ASM98 in the mmul division and ranked XX

Heavens Damnation by Kasumi-Chan of DreamWorks Design
/music/songs/1998/k/k_hdamnt.zip
16 Jan 1998 (catalog date)
596,225 bytes
Download FTP scene.org
(XM)

Clock by Workbench of Level-D, EPZ
/music/songs/1998/l/lvd-clck.zip
10 Dec 1998 (catalog date)
342,944 bytes
Download FTP scene.org
Released at event AMB98 in the mmul division and ranked 13

Well Wicked Work by i.G.O.r of Roofless
/music/songs/1998/r/roof-009.zip
20 Feb 1998 (catalog date)
672,463 bytes
Download FTP scene.org
(XM)

Twilight Time by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1998/t/twilight.zip
06 Apr 1998 (catalog date)
673,576 bytes
Download FTP scene.org
(IT)

Cruel Angel Thesis by VeritaS of DreamWorks Design
/music/songs/1998/v/v_angelt.zip
22 Jan 1998 (catalog date)
635,801 bytes
Download FTP scene.org
(XM)

Final Fantasy Iii Opening Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_ff3opt.zip
25 Feb 1998 (catalog date)
175,426 bytes
Download FTP scene.org
(XM)

Cid's Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_ff7ct.zip
25 Feb 1998 (catalog date)
209,556 bytes
Download FTP scene.org
(XM)

Final Fantasy 7 Main Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_ff7mth.zip
04 Mar 1998 (catalog date)
178,212 bytes
Download FTP scene.org
(XM)

Tifa's Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_ff7tt.zip
04 Mar 1998 (catalog date)
178,316 bytes
Download FTP scene.org
(XM)

Yuffie's Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_ff7yt.zip
13 Feb 1998 (catalog date)
207,985 bytes
Download FTP scene.org
(XM)

Mash's Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_fstars.zip
12 Mar 1998 (catalog date)
622,808 bytes
Download FTP scene.org
(XM)

Love Song by VeritaS of DreamWorks Design
/music/songs/1998/v/v_hnoken.zip
05 Jan 1998 (catalog date)
358,860 bytes
Download FTP scene.org
(XM)

Ken's Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_kenthm.zip
21 Mar 1998 (catalog date)
455,549 bytes
Download FTP scene.org
(XM)

Misatos Bgm Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_mbgmtm.zip
26 Jan 1998 (catalog date)
193,014 bytes
Download FTP scene.org
(XM)

Magic Knight Rayearth Opening Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_mkraye.zip
26 Jan 1998 (catalog date)
122,931 bytes
Download FTP scene.org
(XM)

Someday Somebody by VeritaS of DreamWorks Design
/music/songs/1998/v/v_sdysby.zip
22 Jan 1998 (catalog date)
398,030 bytes
Download FTP scene.org
(XM)

Just Be Conscious by VeritaS of DreamWorks Design
/music/songs/1998/v/v_slyjbc.zip
12 Mar 1998 (catalog date)
625,632 bytes
Download FTP scene.org
(XM)

Stars Ending Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_smsedt.zip
21 Mar 1998 (catalog date)
572,698 bytes
Download FTP scene.org
(XM)

Midsummers Eve by VeritaS of DreamWorks Design
/music/songs/1998/v/v_tmmeve.zip
15 Jan 1998 (catalog date)
487,013 bytes
Download FTP scene.org
(XM)

Vampire Princess Miyu Ending Theme by VeritaS of DreamWorks Design
/music/songs/1998/v/v_vpmiyu.zip
13 Feb 1998 (catalog date)
203,554 bytes
Download FTP scene.org
(XM)

Worker Be by Traxx of Hoax Arts
/music/songs/1998/w/workerbe.zip
04 Mar 1998 (catalog date)
881,672 bytes
Download FTP scene.org
(XM)

Zombies On Broadway by FLAtRich of fLAtDiSk SoftWorks
/music/songs/1998/z/zombies.zip
06 Apr 1998 (catalog date)
824,055 bytes
Download FTP scene.org
(IT)

Blue Clouds by Workbench of Level-D
/music/songs/1998/w/wb_bc8.zip
04 Jul 2003 (catalog date)
475,325 bytes
Download FTP scene.org
Rating:
Released at event TO98 in the mmul division and ranked 08
(IT)

Clockwork by MrJ of Phoenix
/music/songs/1998/c/clockwrk.zip
04 Jul 2003 (catalog date)
229,027 bytes
Download FTP scene.org
Rating:
Released at event TG98 in the mfst division and ranked 06
(XM)

Acid Research Vol. 1 by Labworks
/tla/disks/1996/a/arv1.zip
11 Aug 1996 (catalog date)
2,519,153 bytes
Download FTP
Rating:

Hypnotic Beats by Labworks
/tla/disks/1996/h/hbv1.zip
29 Sep 1996 (catalog date)
4,190,534 bytes
Download FTP
Rating:

Sector 303 by Labworks
/tla/disks/1996/u/us303.zip
29 Sep 1996 (catalog date)
2,990,850 bytes
Download FTP
Rating:

Work It Till You Sweat by Vicious
/tla/songs/1995/s3m/v/v-sweat.zip
20 Sep 1996 (catalog date)
130,443 bytes
Download FTP
Rating:

Teck No Logie by Labworks
/tla/songs/1995/xm/l/lws21.zip
21 Sep 1996 (catalog date)
386,036 bytes
Download FTP
Rating:

Teck No Logie Remix by Labworks
/tla/songs/1995/xm/l/lws22.zip
21 Sep 1996 (catalog date)
367,337 bytes
Download FTP
Rating:

Hell's Work Song by Coiled
/tla/songs/1996/it/c/c_hellwk.zip
22 Sep 1996 (catalog date)
284,903 bytes
Download FTP
Rating:

Watchwork Addict by Coiled
/tla/songs/1996/it/c/c_watch.zip
22 Sep 1996 (catalog date)
271,677 bytes
Download FTP
Rating:

The Works by H.P. Lovecraft
/tla/songs/1996/it/h/h_works.zip
22 Sep 1996 (catalog date)
279,998 bytes
Download FTP
Rating:

Fast At Work by Karl Herrebout
/tla/songs/1996/s3m/f/fastwrk.zip
22 Sep 1996 (catalog date)
92,257 bytes
Download FTP
Rating:

Acid Science by Labworks
/tla/songs/1996/xm/l/lws28.zip
22 Sep 1996 (catalog date)
356,734 bytes
Download FTP
Rating: