Search found 2711 matches

by tofro
Fri Sep 23, 2011 4:43 pm
Forum: Help for New Users
Topic: Quick and Dirty Routines for Newbies
Replies: 3
Views: 5329

Re: Quick and Dirty Routines for Newbies

Hi, your "S" Procedure is fine for anyone not using SMSQ/E. Some other interesting thing is the following: If you work with SMSQ/E you can as well simply use "SAVE" or "SAVE_O" (Without arguments). The interpreter remembers where it got the current program from and save...
by tofro
Sun Jul 31, 2011 3:17 pm
Forum: Help for New Users
Topic: Syntax Error scr_ command
Replies: 4
Views: 5146

Re: Syntax Error scr_ command

Thor,
and if you're in need of a manual, the keywords and concepts sections for QPC2 that you can find on Marcel's site (http://www.kilgus.net/qpc/QPC_Keywords.pdf) are, in most cases, also applicable to a standard QL.

Tobias
by tofro
Sun Jul 31, 2011 12:21 pm
Forum: QL Emulation
Topic: Java Emulator
Replies: 22
Views: 20893

Re: Java Emulator

I have extensive Java experience and /some/ QL emulation experience - If you need help for a specific problem, please go ahead and contact me - However, I'm lacking another important factor, which is time - So I can't promise immediate help in each and every case.

Cheers
tofro
by tofro
Thu Jul 28, 2011 7:31 pm
Forum: Help for New Users
Topic: Syntax Error scr_ command
Replies: 4
Views: 5146

Re: Syntax Error scr_ command

Hi, try something like: DEFine FUNCtion OpenChannel(x, y, w, h) LOCal c$, i c$="scr_" & w & "x" & h & "a" & x & "x" & y i = FOPEN (c$) RETurn i END DEFine This should work. The "SCR" syntax is scr_<width>x<height>a<xpos>x<...
by tofro
Thu Jul 21, 2011 8:41 pm
Forum: QL Emulation
Topic: Linux emulator uQLx "on a stick"
Replies: 11
Views: 11707

Re: Linux emulator uQLx "on a stick"

Gents, well: Been there, tried it. Failed. Current uQLX doesn't seem to run (yes, it does build) on ARM Linux. (I have a Genesi Arm Smartbook, a fine (and particularily affordable) piece of ARM hardware, that I intend to use as portable QL replacement. I got uQLX to come up with an initial screen, b...
by tofro
Tue May 24, 2011 12:29 pm
Forum: Software & Programming
Topic: Roguelike games on the QL?
Replies: 9
Views: 7110

Re: Roguelike games on the QL?

Did the QL ever have any ports of roguelike games such as nethack, angband or omega? The machine has loads of great text adventures but short on RPG's. These games would be perfect for the QL. Actually Rogue (which is basically a clone of nethack ) for the QL does exist (or used to) - Have a look o...
by tofro
Sun May 08, 2011 11:29 pm
Forum: Help for New Users
Topic: Newbie.. on Sinclair QL...
Replies: 4
Views: 5475

Re: Newbie.. on Sinclair QL...

RWAP wrote: Qascade runs under QPAC2,
Even better: It runs perfectly well without QPAC2.
It does need QPTR, however.

Easy to become confused with all those Qs ;)


Cheers
tofro
by tofro
Sun May 08, 2011 2:13 pm
Forum: Help for New Users
Topic: Newbie.. on Sinclair QL...
Replies: 4
Views: 5475

Re: Newbie.. on Sinclair QL...

Well, in short: QPAC2 is a must in a QL environment and you did right to go that way. It is, however, admittedly bad documented with regards to allowing a novice user to get into grips with the software. QPAC2 doesn't do /anything/ once you LRESPRed it - You must bind the functions to Hotkeys in ord...
by tofro
Tue May 03, 2011 6:45 am
Forum: Software & Programming
Topic: How to know the device of the last file loaded?
Replies: 9
Views: 8925

Re: How to know the device of the last file loaded?

Then you might want to have a look into the HOME_DIR, etc. extensions. Those are part of SMSQ/E, but should also be available as a separate toolkit.
HOME_DIR in a BASIC program evaluates to my knowledge to the drive and directory this parogram was loaded from.

Cheers,
tofro
by tofro
Sat Apr 30, 2011 9:06 pm
Forum: Software & Programming
Topic: How to know the device of the last file loaded?
Replies: 9
Views: 8925

Re: How to know the device of the last file loaded?

Something you can do in any case if you want to know the device you've BOOTed from: Make a list of all valid BOOT devices (like mdv1_, flp1_, win1_, rom1_, [are there more? I can't think of any, currently. I also think there's no device type that could actually BOOT from any but the first device]) I...