Connection ErrorBad RequestThis page went staleSession ExpiredSign in requiredForbiddenNot FoundToo Many RequestsServer ErrorBad GatewayService UnavailableGateway TimeoutHTTP Version Not Supported
Session Expired
Your session has expired. Please log in to continue.
Sign in required
You need an account to do that. Sign in or create one — it only takes a minute.
This page went stale
Your security token was rejected, usually because the page sat open too long or you signed in elsewhere. Nothing was saved. Reload the page and try again.
Request Failed
We encountered an issue while processing your request.
Please check your internet connection and try again.
function foo()
while 1 do
-- insert code here
sleep(10);
end
end
startThread(foo)
How can I make it so that one function is triggered the first time a region is visited, and another function is triggered the second time?
region_visit_counter = 0;
function foo()
region_visit_counter = region_visit_counter + 1;
if (region_visit_counter == 1) then
-- first visit, call the appropriate function
else
-- all subsequent visits, call a different function
end
end