FindSprite

by Mikhail Lavrov (Sir Robin) of United-TI
http://mpl.unitedti.org/  (My TI Blog)
http://www.unitedti.org/  (the United-TI home page)

How to use - this program is meant to help you create "Text-sprites". Draw a 6x6 sprite in the upper left corner of the screen. Then run the program, and it will tell you the 6-character string to use for the sprite, or that no such sprite exists.

I used this program extensively for my Donut Quest game, and for the levels I am currently making for it!

Example: suppose you draw this brick wall:


 
 

 
 

Then you run the program, and it will display, "XYXXJX".

Now, what do you do with this? Well, this means that you can display the sprite with the following commands:

"XYXXJX  "
For(I,0,7
Text(R,C+I,sub(Ans,I+1,1
End

(this will display the sprite at (R,C))