lionz's Forum Posts

  • Does the bomb also change to OnGround while falling ?

  • how much will you pay me?

  • It fixes the weapon and sprite problems. If you want it to do anything specifically then please add the relevant information.

  • Object is visible on screen could work, good luck! Also watch out for future performance issues with everything on one screen/layout.

  • it does, because the logic set up resets charge_lvl to 0 when C is released.

  • I would keep the default stats in the placeholder layout (if they are kinda important to the gameplay) and then set any stats on start of the other layouts. As far as I can tell if you update stats or add behaviours to a copied version it will update it for all instances.

  • <img src="https://dl.dropboxusercontent.com/u/49548363/flipped.jpg" border="0" />

  • You could add the FADE behaviour to the text object and fade it in ?

  • Is each room a different layout? You can use groups to disable grouped logic by room if you want. If it's all on one screen then just have everything disabled and then enable it when the proper thing is triggered.

  • mindfaQ

    Yep. Because he's already made logic to reset after melee has completed and on release of C, putting it into the sub event works. However it will instantly increase to 1 so he will need to adjust melee to charge_lvl > 1 probs.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Move to sub event and problem solved :

    <img src="https://dl.dropboxusercontent.com/u/49548363/charge.jpg" border="0" />

  • Before I read through the logic there please give the timers tags so instead of Timer A "", give it a name like Timer A "AWESOMETIMER" and see if it still breaks.

  • When a mile is travelled (however you are calculating that already)

    • Add $1.18 to variable 'Dollars'

    To print in a text box use SetText > "Total Money = "&Dollars

  • The logic seems a bit complicated with the grid snapping (unless it's really needed?) I would just snap the object in place when overlapping the slot and is 'InDrop'. If you are allowing the objects to be placed and snapped to any slot, even incorrect ones then you will need to make some logic to determine if the slot is full, basically a boolean for empty/full. If you're not allowing objects to be incorrectly placed then have the object return to origin position when 'InDrop' and not overlapping the correct slot.

    Also it looks like event 26 is a bit screwed and causing bugs? You have blue and green touch but then orange match. Anyway, if you need any more help I am here : D

  • ^ Yes. Did you want to display nothing at all or an idle animation or some kind ?