Hey,
I need help with my script.
I have a variable which is 1, but when it reaches another variable that variable should be changed from 1 to 2 -> +1.
How to change something in my script so that "line" goes from 1 to 2.
Heres the file; http://www7.zippyshare.com/v/21837967/file.html -> Sorry board uploading doesnt work for me.
Greetings
Add +1 to a variable
Re: Add +1 to a variable
To do that you could use the Code action and write:
Or:
Code: Select all
line = line + 1
Code: Select all
line++
"My software never has bugs. It just develops random features."