Is it possible to return from a function inside a map script back to the previous function?
Like this (in the system.vc):
void SomeFunction()
{
int result = map("somemap.map");
}
And in the starting function of the map script:
void start()
{
int SomeInt = DoSomeStuff();
return SomeInt;
}
Right now, if I just use "return;" verge hangs only around. It dosen't looks like it is returning to the original function.