INK (color),(background color)
Usually I just put 0 for the background color. To make this command easier to use, you should probably use the
RGB command. Instead of writing numbers that can often be several digits long, the RGB command will generate those color numbers for you. All you have to specify is how much red, green, and blue you want in your color, 0 being none of the color and 255 being the most of the color.
RGB( amount of red , amount of green , amount of blue)
Random color list:
For example, this would be red:
RGB(255,0,0)
and this would be purple:
RGB(255,0,255)
and this would be blue
RGB(0,0,255)
and this green:
RGB(0,255,0)
and this dark green:
RGB(0,155,0)
and this would be white:
RGB(255,255,255)
and this would be a shade of gray
RGB(100,100,100)
and this would be black:
RGB(0,0,0)
or, just 0 for short.
INK and PRINT example:
ink rgb(0,255,0),0
print "This is written in green!"
wait key
<---Spell casting battle game!