29.12.2010, 11:23
The errors are telling you the exact problems:
1. The variable "lights" is already created somewhere, most likely as a global variable. You can change the name of that one to something else
2. The variable "Doors" is not being used. I'm assuming because whatever action you created it for is already being done by the other variable you created, "doors". Since it is unused, you can delete it ("Doors" variable).
1. The variable "lights" is already created somewhere, most likely as a global variable. You can change the name of that one to something else
2. The variable "Doors" is not being used. I'm assuming because whatever action you created it for is already being done by the other variable you created, "doors". Since it is unused, you can delete it ("Doors" variable).