lionz's Forum Posts

  • You said you were willing to do some simple UI. Not sure if you can get more simple than a box being made visible.

  • It doesn't work if you stop all sounds and music before the initial save takes place?

  • NECROKRIEG

    I have created the following functionality. Hopefully this is helpful, I thought this would work better than choosing a random empty slot. If you definitely want it to choose the nearest empty slot then I can help set up some logic but it's late now : P

    • On drop, card goes to a slot if overlapping

       - if slot is full then card will go to original starting position

       - if slot is empty then card will be placed in slot

    capx

  • I don't like this logic being triggered by animation frame. If the player moves the character or in future you allow the player to do different things that cut the throw anim out halfway through all the logic is gonna mess up. I would set up some functions for throwing the bomb then detecting if it hits the floor and destroying it. You have a load of different logic hooked up to when animation frame = 2 as well which could be causing conflicts. I would definitely avoid using the anim frame stuff to trigger this fairly simple logic.

  • Change OnLanded to on collision with the floor object and see if it's still broken.

  • 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 ?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • 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.