Hundreds of features to explore
Games made in Construct
Your questions answered
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
What we believe
We are in this together
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
Hi everyone,
I want to launch a bullet at some markers by repeatedly calling this function.
Shouldnt this build a self-reducing list of markers, of which the first one is being shot at?
The setting or picking by boolean doesnt seem to work
You are testing the boolean against the "false" string litteral, which can never be true. Replace "false" by 0 and it should work as expected.
Develop games in your browser. Powerful, performant & highly capable.
Magistross Good call, thanks!
I found that I also needed to reduce the list to only the first pick manually, cos I was making a list and disabled all entries in the first call.
Used an additional 'Pick instance 0'.
Working now, cheers!