Hello, the code is located on the SchoolFreeware website. Go to Tutorials --> Qbasic/QB64 Tutorials and download the code from Tutorial 33. Check that code with what you typed.
(This code gives me an error on line 11 and 14, and I dont know why.) (HELP) DIM a AS STRING INPUT "Do you want to hear an ambulance? (y/n)", a IF a = "n" THEN PRINT "Ok :(" END IF IF a = "y" THEN PRINT "If you want to stop listening to the ambulance, press any key" Redo: FOR z = 1 TO 100 STEP 3 SOUND z, 2 NEXT FOR z = 100 TO 1 STEP -3 SOUND z, 2 NEXT ELSE END IF GOTO Redo
You have to write "NEXT Z". . I'm sure you have already figured it out, but I wrote this in case you haven't. Just to clarify, I do not grantee this will work.
Is there any way to stop the delay whenever you press a key?
Can you please make the camera follow the object..
Any particular reason for using AZSD instead of the more traditional ASWD?
no there is no specific reason
Can we make an combination of circles and line and then move that combination
which extension to put to save it?
Can we move two object toghter
Please help circle is not moving
Hello, the code is located on the SchoolFreeware website. Go to Tutorials --> Qbasic/QB64 Tutorials and download the code from Tutorial 33. Check that code with what you typed.
Thanks it is moving now👍👍
Does anyone know how to move a sprite made with the data function
Is there a way to make the screen follow the object? So I move around a big room but only see a small bit of the room surrounding the object I move.
Custerd Smasher qbasic says it doesent support fullscreen and makes me close it
It does, you just need to type in _fullscreen at the beginning of the program.
can a mouse be emulated?
no, remember that qbasic was used on dos. back then you did not have mouses.
MrOldCrow The mouse driver can be imported in Qb64 but not in DOSBOX or QB1.1
+Marko Ivanović qb 4.5 ? is it possible there ?
MrOldCrow yes mouse support is hard but do-able
I LOVE YOUUUUU, THANKS VERY MUCHHHHH, I WAS FINDING ITS TUTORIAL.
Thank you so much
(This code gives me an error on line 11 and 14, and I dont know why.)
(HELP)
DIM a AS STRING
INPUT "Do you want to hear an ambulance? (y/n)", a
IF a = "n" THEN
PRINT "Ok :("
END IF
IF a = "y" THEN
PRINT "If you want to stop listening to the ambulance, press any key"
Redo:
FOR z = 1 TO 100 STEP 3
SOUND z, 2
NEXT
FOR z = 100 TO 1 STEP -3
SOUND z, 2
NEXT
ELSE
END IF
GOTO Redo
Try Next z
and on line 12 Make it For i
and then on line 14 make it Next i
You have to write "NEXT Z". . I'm sure you have already figured it out, but I wrote this in case you haven't. Just to clarify, I do not grantee this will work.
ITS SO SO GOOD