How does the c-script language work? If one function has a while(1) loop,and another function which aslo has a while(1) loop is included in the first loop,can the sentences behind the second function in the first function loop executived?
function1()
{
...
while(1)
{
...
function2();
...
wait(1);
}
}
function2()
{
...
while(1)
{
...
wait(1);
}
}