Hello!i got a newbie question...
i got the following code:
///////////////////////////////
#include <acknex.h>
#include <default.c>

///////////////////////////////

var a;

PANEL* pDisplay =
{
digits (10, 10, 5, *, 1, a);
flags = VISIBLE;
}

function main()
{
video_mode=7;
screen_color.blue = 150;
while(-1)
{
a = random(13);
wait(-1);
}
}


And i want to tell the engine to show me a string "word" if a = 1 and if a > 1 string is removed or hided

Last edited by Ted22; 01/20/10 14:22.