Anyone can create a blend with this script.
import Blender,datetime
#Write date and time the variable
data_recorded = str(datetime.now)
Creating or opening the file
f = file(‘C:\date_recorded.txt’,‘W’) #Open for writing
Write to file
f.write(date_recorded)
f.close() #Close file
while True:
line = f.readline()
if len(line) == 0:
break
print line,
If I remember correctly used to record names and hours.
I wanted him to record many names as in the example below:
Name :************
Password :*************
Hours :***********
And if one of the data were equal, activates an actuator
Please help me, this is very important!