lionz's Forum Posts

  • Right-click just below the event, where the condition goes, and choose Make 'Or' block.

    For XOR you can use sub events i.e.

    when A = true

    • if B = true > do nothing
    • else if B = false > run event

    when B = true

    • if A = true > do nothing
    • else if A = false > run event
  • Nice

  • Enable a layer which has a list of items that can be selected and then add in some buttons for buy/sell and some logic for currency and adding to the item to the character's inventory. Check le tutorials.

  • Slick

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Or you're famous!

  • Import 9999 frames : D

    EDIT: I don't think you can import more than 3000 frames. My C2 crashes. So I guess that's your max friend count : P

  • From my experience the Avatar sprite will always use the same image unless you change to another anim. If Avatar is a Family it may act differently but I haven't messed around too much with Families. Perhaps someone can prove me wrong but I don't think you can have multiple instances of Avatar with different default images.

  • It is that easy? If the player has 8-direction and you give him ScrollTo behaviour, the viewport will follow the player when he reaches the edge of the screen.

  • I think what you might be able to do is set up animations for Avatar, and load individual animations(still images)

  • As far as I know, all instances of a sprite must have the same image. If you edit the image for one instance, it will change it for all.

  • Just give the player the ScrollTo behaviour.

  • As I said, and the guy above has also said, you don't need to use both and if you want jumping I would use platform. If for some reason you want to stick with bullet then you'll need to use something like 'move at angle 270' to simulate jumping but I'm not sure why you would opt for that with the platform behaviour available.

  • Use set position to another object > Object/Image point

  • No problem, good luck! :)

  • I'm not sure how your game is meant to work really but I would stick with platform only and use simulate control to push left/right instead of using bullet set angle 0/180. That way you can at least have the nice jumping. Also disable the pressing of left/right.