Jump to content

TMacho

Resident
  • Posts

    4
  • Joined

  • Last visited

Everything posted by TMacho

  1. I wanted the third test to be activated, only when the first test and second test were activated, if the first and second test were not activated, the third test would not be activated. I was wanting the message "firstclick and secoundclick are active" when i would click 3 and 5 times. Is that possible ? Sorry I'm not native English is a bit hard to explain sometimes.
  2. Hello everyone, i don't know if it is possible to active 2 conditions or if it exist other ways to do it.. I did create a example bellow: integer firstclick=0; integer secoundclick=0; default { touch_start(integer total_number) { firstclick = firstclick + 1; secoundclick = secoundclick + 1; if (firstclick == 3) { llOwnerSay("First click"); } else if (secoundclick == 5) { llOwnerSay("Secound click") } else if (firstclick + secoundclick) // this is were i don't know how to do active both clicks (conditions). { llOwnerSay( "firstclick and secoundclick are active"); } } }
×
×
  • Create New...