Lunarbeam
|
Ok, I've tried all of those, but it still doesnt work. Btw, it also says "0 total VC lines compiled" at the end, which concerns me...
Posted on 2000-12-17 20:26:02
|
Lunarbeam
|
I downloaded the official V2 instead of the V2k+j stuff and the vcc.exe that came with it worked for some reason.
Anyway, I've got a basic script; is it valid?
This is test.vc:
event //0 autorun
{
PaletteMorph(0,0,0,0,63);
Render();
ShowPage();
HookRetrace(DrawCursor);
}
This is system.vc:
void DrawCursor()
{
ReadMouse();
CircleFill(mx, my, 10, 255);
Line(0, 0, screenx, screeny, 63);
}
Unfortunately, I run it and all I get is a black screen! Why? Also, how do colors work?
Posted on 2000-12-17 22:15:48
|