1
The Axe Parser Project / Drawing a picture
« on: July 24, 2014, 07:13:00 pm »
I have been working at figuring out and researching how to draw a picture larger than 8x8 in axe, for example this one:
which by the way is 20x20. What I've been doing is this:
Spoiler For Spoiler:
Code: [Select]
:[(picture)]->Pic1
:Pt-On(1,1,Pic1)
:0->K
:While K=0
:getKey->K
:End
:Return
And if it wasn't clear, (picture) is to be replaced with the actual picture. So what have I been doing wrong? -Lennyitb