I just wanted to know the name of the function that displays a window that you can use to actively count down in zoc... For example in the tcolonize zoc script available in Attac's downloads, there is a counter the counts down from how many turns you gave it to run... The code is compiled so I cant see the Source... Seems difficult.. would i need to make a thread to do something like that? Thanks for your help.
First, I'm not sure what you mean by "The code is compiled" There is no such thing as compiled scripts for ATTAC. Clicking on the link should bring up the source code.
Second, are you talking about when it asks "How many loops should be do?"? If so, here's what it's doing.
loops = ZocAsk("How many loops should we do?", "")
DO x = loops to 1 BY -1
/* Doing something in here. Will do this loops times */
/* x will hold the number of times left to run the loop */
END