16.12.2018, 09:34
Basically it just means that there are two variable names that are conflicting in the script at the same time. They have the same name.
Do you have a global variable in your script anywhere named 'i'? Your solutions are to either remove the conflicting variable and place it somewhere more appropriate, or simply just rename it to something else that doesn't exist somewhere else.
Do you have a global variable in your script anywhere named 'i'? Your solutions are to either remove the conflicting variable and place it somewhere more appropriate, or simply just rename it to something else that doesn't exist somewhere else.