Good Morning,
First off, hello Scirra community! With my learning of Construct 2, I've made heavy use of Google with Construct 2 in the field and also the forums. It has helped me immensely in deciphering the logic needed to create. I've done, what I feel, a thorough search of the forums/tutorials and haven't been able to find a straight enough answer for the basics of these two problems I'm having.
First:
I'm trying to add all values in the (x,1) area of the array.. All values in the x width of the y=1 heighth. I want to get the sum of them to set the value of a specific variable.
I've seen examples some where multiple actions were done containing this, but I'm unfamiliar with it and couldn't break it out.
_________
Second:
Another thing I'm trying to accomplish is a command that pulls a random number. The next time the random is run, it excludes any and all numbers previously ran by it.
Let's say I have this:
On Left Click on Object - set Array.At(CurrentAnimation.AnimationFrame, random(0,53))
Let's say that the random(0,53) gave us an number of 42.
Then, the next time any of that object type/family is clicked, How do I make the random(0,53) make an exception of '43' and any other numbers if it were clicked again?
_________
Please let me know if this vague and I need to do a better job at explaining.