This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

if (two conditions) then
#1
Hi,

I have made a script with two conditions that need to be fulfilled before doing something. I have tried everything bt it is not working. There are no syntax errors now and I disable/enable every time I save scripts just to be sure.

The script reads a value from a illumination sensor and status from a light object. Then it compares the two and writes to the same light object. Here it is:


Code:
illumivalue = grp.getvalue('32/1/3')
switchvalue = grp.getvalue('0/4/10')
if (illumivalue <= 5 and switchvalue == 0) then
  grp.write('0/4/10',1)
elseif (illumivalue >= 5 and switchvalue == 1)
  then grp.write('0/4/10',0)
end
Reply


Messages In This Thread
if (two conditions) then - by 02dag - 11.03.2018, 00:04
RE: if (two conditions) then - by buuuudzik - 11.03.2018, 00:21
RE: if (two conditions) then - by 02dag - 11.03.2018, 10:59
RE: if (two conditions) then - by buuuudzik - 11.03.2018, 11:06

Forum Jump: