I made this this texture generator in about 2 minutes, you need the zip to be unzipped and then ut in the same dir as the dba/dbpro
`Texture Generator
load image "red.bmp",1
load image "wood.bmp",2
load image "blue.bmp",3
load image "fire.bmp",4
load image "shadow.bmp",5
load image "rain.bmp",6
load image "brick.bmp",7
load image "chains.bmp",8
load image "curl.bmp",9
load image "green.bmp",10
load image "gold.bmp",11
load image "stars.bmp",12
load image "purple.bmp",13
make object cube 1,1
move object down 1,0.5
backdrop on:color backdrop rgb(0,0,0)
do
YROTATE OBJECT 1,OBJECT ANGLE Y(1)+0.5
print "Press 1 for red"
print "Press 2 for wood"
print "Press 3 for blue"
print "Press 4 for fire"
print "Press 5 for shadow"
print "Press 6 for rain"
print "Press 7 for brick"
print "Press 8 for chains"
print "Press 9 for curl"
print "Press a for green"
print "Press b for gold"
print "Press c for stars"
print "Press d for purple"
if inkey$()="1" then texture object 1,1
if inkey$()="2" then texture object 1,2
if inkey$()="3" then texture object 1,3
if inkey$()="4" then texture object 1,4
if inkey$()="5" then texture object 1,5
if inkey$()="6" then texture object 1,6
if inkey$()="7" then texture object 1,7
if inkey$()="8" then texture object 1,8
if inkey$()="9" then texture object 1,9
if inkey$()="a" then texture object 1,10
if inkey$()="b" then texture object 1,11
if inkey$()="c" then texture object 1,12
if inkey$()="d" then texture object 1,13
loop
Hope you like