Hi, I want to make a quick time event. From frame 172–192, if you press F, it should jump to frame 209. If you don’t press F, it should automatically go to frame 193 (death). How can I set this up in Wick Editor? I’m having trouble setting this up!
If (isKeyDown(“f”)) {
gotoAndStop(193)
}
Or instead of gotoAndStop you can do gotoAndPlay
Also you have to indent the gotoAndStop, this just uses spaces. Also if your making a game on wick I recommend learning the basics of JavaScript and to learn the wick editor built in functions go to the learn part of the wick editor site.