
-----------------------------------
HaVoC
Tue Nov 18, 2003 8:22 pm

Help on a few turing tricks
-----------------------------------
Is it possible to do this?


var c : string


c:= black

drawline (x,y,x,y,c)


Where c is replaced by black so I don't have to conitinously write it in?
And How do you change the font and size of text?

-----------------------------------
AsianSensation
Tue Nov 18, 2003 8:25 pm


-----------------------------------
lol, the number "7" works for the color black

drawline (0, 0, maxx, maxy, 7)

-----------------------------------
HaVoC
Tue Nov 18, 2003 8:29 pm


-----------------------------------
I just made c an integer and made c = 7. That worked. Anyways, what about font and and size?

-----------------------------------
Thuged_Out_G
Tue Nov 18, 2003 9:06 pm


-----------------------------------
it should work using Font.Draw

if no one shows you, i will when i get a chance

-----------------------------------
HaVoC
Tue Nov 18, 2003 9:42 pm


-----------------------------------
*Waits*

-----------------------------------
AsianSensation
Tue Nov 18, 2003 10:39 pm


-----------------------------------
um........it's the same thing.

Font.Draw ("Hello", fontID, 0, 0, 7)

whenever you see the parameter that calls for a color to be inputted, all you have to do is either use 7, or type black to use that color.
