Search found 4 matches

by jkltech
Fri Sep 07, 2007 6:58 pm
Forum: Broken Code
Topic: Flight simulator
Replies: 0
Views: 9877

Flight simulator

The task is simple. Let's make a flight simulator.
Let's start with the controlls and the output.
I've tried to start an artificial horizon, and so far it works up to the 20-30
degree margin on the y-axis.
Here it is:
by jkltech
Tue Sep 04, 2007 2:07 am
Forum: Games
Topic: Joystick Demo (Mayhem)
Replies: 0
Views: 4547

Joystick Demo (Mayhem)

Simple joystick demo for the game MAYHEM.BAS.
Use two joysticks to control USA and USSR.
by jkltech
Tue Jul 10, 2007 1:14 pm
Forum: Internet
Topic: Re:Mixed JBWB
Replies: 0
Views: 9609

Re:Mixed JBWB

Here's one with the password box replaces characters for *s
by jkltech
Tue Jul 10, 2007 12:58 pm
Forum: Utilities
Topic: W-DOS v0.1
Replies: 2
Views: 11552

Actually, Windows has the driver capability to interface with a 'dos box', so most of this is possible. make 'batch' files for JB to run with commands such as

open "delete.bat" for output as #1
print #1, "del "; "%1"
close #1
input "Enter filename to delete: "; del$
run "delete.bat "; del$, hide ...