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.
Error Details:
Share Link
Current questions and answers regarding the map editor.
Regarding the function. For it to work correctly, the variable `i` must be initialized at the beginning; otherwise, it doesn't make sense. And in general, I suspect that it should have been `I=I+1`, not `I=i+1`.
`I` and `i` are different variables.
So, it should be something like this:
```
I=*some value*
function day ()
I=I+1;
end;
```
Ah... damn. I understand. It's just that in programming, case usually doesn't matter. I'll keep that in mind.