Search found 4 matches

by MickJW
Sun 20 Jan 2013, 11:56
Forum: Beginners Help ( Start Here)
Topic: Newbies - Puppy needs YOUR help too!
Replies: 1113
Views: 658427

Hi all, Just installed my first linux distro ever. I selected Wary Puppy 5.4 and was surprised how easy it was to get up and going. The only problem i had was i got this "Out of Range" error on my monitor (ACER 27 inch LCD) after the second boot. Finally figured out how to run Xorg and got...
by MickJW
Sun 20 Jan 2013, 11:07
Forum: Programming
Topic: Text adventure writing...
Replies: 16
Views: 9656

Hi all, Mis spelling is not a bug. LOL. You can look over the QB64 wiki for references and explanations of all the QBasic commands. Here a link ti the wiki. Keep in mind the new QB64 commands ALWAYS have an underscore while the older original commands dont! http://qb64.net/wiki/index.php?title=Main_...
by MickJW
Sat 19 Jan 2013, 16:45
Forum: Programming
Topic: Text adventure writing...
Replies: 16
Views: 9656

Hi all, Here is a simple parser i composed in QB64 and tested in QB45. REM Simple parser DEFINT A-Z CONST True = -1, False = 0 DIM AllWord$(1 TO 10) SCREEN 12 DO GOSUB GetUserInput GOSUB PreParse SLEEP 1 IF NumberOfWords% > 1 THEN GOSUB ParseSentance ELSE PRINT Sentance$ END IF LOOP UNTIL Done% = 1 ...
by MickJW
Sat 19 Jan 2013, 14:32
Forum: Programming
Topic: Text adventure writing...
Replies: 16
Views: 9656

Hi all, starhawk im a member of the QB64.net project that just started to use puppy linux. While researching linux stuff i came across your post. I dont know if you are aware but QB64 has a Win,Linux and a Mac SDL version that is almost 100% QBasic compatible. If you were to post on the QB64.net web...