Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ExilePrisoner

Pages: [1]
1
Programs / Re: Crossword Generator
« on: August 26, 2019, 11:48:51 pm »
I have tried both version of this program in a newly downloaded and  clean version 1.3 of QB64 and receive the following error in BOTH versions of the crossword program. I have disabled my virus checker to run the program uninterrupted (Avast).

2
QB64 Discussion / An implementation of QBASIC in Javascript
« on: February 05, 2019, 11:43:00 am »
 An implementation of QBASIC in Javascripthttp://stevehanov.ca/blog/index.php?id=92

Running QBASIC in a Browser – My Nostalgic Trip Back to the 1990s
https://spin.atomicobject.com/2018/10/20/qbasic-browser-emulator/

3
Programs / Re: Return of the Cheese Chewers
« on: September 05, 2018, 10:31:02 pm »
Incorrect number of arguements passed to function on line 120

Code: QB64: [Select]
  1. COLOR _RGB32(0, 0, 0), _RGB32(255, 255, 0, 0)

4
QB64 Discussion / Re: CLEARCOLOR not working.(figured out)
« on: September 02, 2018, 10:54:34 pm »
Gots these wokings

Code: QB64: [Select]
  1. DEFLNG A-Z
  2. TheScreen& = _NEWIMAGE(800, 600, 32)
  3.  
  4.  
  5. Layer1& = _LOADIMAGE("MyTile1.bmp", 32)
  6. Layer2& = _LOADIMAGE("MyPeasant1.bmp", 32)
  7. Layer3& = _LOADIMAGE("MyPeasant2.bmp", 32)
  8.  
  9.  
  10. SCREEN TheScreen&
  11. _PUTIMAGE , Layer1&, TheScreen&
  12.  
  13. _CLEARCOLOR _RGB32(0, 0, 0), Layer2&
  14. _PUTIMAGE , Layer2&, TheScreen&
  15.  
  16. _CLEARCOLOR _RGB32(224, 224, 224), Layer3&
  17. _PUTIMAGE , Layer3&, TheScreen&
  18.  
  19.  

This are correct nows?

5
Programs / Re: Tile\sprite Ripper
« on: August 28, 2018, 08:08:20 am »
Hello
I run this program and get output to screen so i capoture it to picture for all here to see. Good program that i dont understand much as yet.

6
Programs / Re: Chess developed from QB64 Samples
« on: August 26, 2018, 09:34:31 am »
hello
I play this game as black and when i try to castle kingside the "last move by human" show  O-O but there is no castle position. I did not move the king befoe or try to castle when in illegal position. There is problem i think in game AI. Screen picture shows the actual board position.

Pages: [1]