I have a hotspot and I need to execute all actions at the same time (one click) if the condition is true. This is my code:
Code: Select all
hotspot (1770, 995, 112, 58):
if rtenka > 1:
action [SetVariable("rtenka", 1), SetVariable("extrapoints",extrapoints + 1)]
if makeup > 1:
action [SetVariable("makeup", 1), SetVariable("extrapoints",extrapoints + 1)]
if choker > 1:
action [SetVariable("choker", 1), SetVariable("extrapoints",extrapoints + 1)]
if nehty > 1:
action [SetVariable("nehty", 1), SetVariable("extrapoints",extrapoints + 1)]
if naramek > 1:
action [SetVariable("naramek", 1), SetVariable("extrapoints",extrapoints + 1)]How to do it to execute all action at the same time??
Thank you


