Re: I have LW wavs
- Posted by Alan Tu <ATU5713 at COMPUSERVE.COM> Sep 22, 1998
- 529 views
>I don't want to bloat EUPHOR20.ZIP with a bunch of .WAV >files. Should have considered that. Of course, this is why I don't have Robert Craig's job. --Alan P.S. I might have a "better" QBasic phaser sound. Yes, this is unedited= code. Sorry, I have some news editing to do. Following is QBasic code. = Sounds kind of cool, actually very cool. I got some other suggestions fo= r LW too. Look for them tomorrow. begin phaser.bas 0 CLS 5 WHILE x < 10 10 FOR I =3D 1 TO 9'phaser sounds 20 RII! =3D I / (90) 30 FOR J =3D 1000 TO 2700 STEP 200: SOUND J, RII!: NEXT J 40 NEXT I 50 x =3D x + 1 60 WEND end phaser.bas =