alejovilla227's Forum Posts

  • Thanks for all your comments!...

    I've already fixed the bug and put the instructions to the game...

    I'm working on the difficulty for the levels now <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

    I hope you enjoy this new version!

    http://bit.ly/juegoelpaso

    THANK YOU VERY MUCH

  • Great BH!... I replaced animations to frames, and it's working good!

    Thank you very much.

    I appreciate if you could play the game I'm developing to know what do you think ?...

    you can play it in: http://bit.ly/juegoelpaso

    THANK YOU VERY MUCH! <img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile">

  • These are my new conditions...

  • Sooo you don't need to repeat the Mouse and Touch events. Just have it once, and then as a subevent:

    ----------------------------------------

    Instruccio...: Is animation "a" playing -> Instrucci...: Set animation to "b" (play from current frame)

    Else

    Instruccio...: Is animation "b" playing -> Instrucci...: Set animation to "c" (play from current frame)

    Else

    ...

    -----------------------------------------

    That's ONE step better but you can still do better. (hint: try naming your animations with digits 1, 2, 3 instead of letters..)

    Edit: I just saw BH's post, I'm sure whatever it is will do the job

    Hello Codah,

    OK I try to change the name of the animations but if I type 1 it changes to the letter (I guess numbers aren't valid names).

    Then I put elses as you recommended but still the same... I click the sprite and it goes to the last animation immediately.

    I'm reading the BH's post too trying to solve and understand this problem...

    thank you very much both!

  • I change all for these conditions... but if I click the btnAdelante button I immediately see the Menu Layer (which is supposed to be at the four clic I made)

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Yeah!, you're right!. Thank you very much, but still I have a problem...

    it seems if I click once all the actions are executed, so I only see the final action result (I click the btnAdelante and then I see the last animation, as if the three actions were performed at one click instead of three clicks...)

    Why this could be happening ?...

  • I'm sorry, I made a mistake. I correct it but still there's an error I don't understand.

    The action i conditions 1,2 work goog, but 3,4 doesn't work (the animation doesn't change).

  • Well... I made what the attached image shows, but it doesn't work well...

    I don't understand well. The first action works perfect, but the second one is not working...).

  • That works for logic but it won't work in this case because of the triggers. You can't do an expression like the one you're after involving triggers, with subevents. Just have separate events calling the same Function.

    edit: e.g.

    --------------

    Mouse: On Left button Clicked onbtnAdelante -> Function("func")

    --------------

    Touch: Is touching btnAdelante

    System: NroInstruccion = "a" -> Function("func")

    --------------

    Also your first example

    ((x = true OR y = true) AND z = true)

    is different to your second example, which translates to

    (x = true) OR (y = true and z = true)

    You could do the first but not the second.

    BTW you can also use the System: Compare expression like

    System: ((x = 1) | (y = 1 & z = 1)) = 1

    if your expression involves variables and not triggers.

    tl;dr If your first logic example is what you're after, subevents will work, otherwise they won't

    Great!, thank you very much for your clarification!...

  • use subevents to separate the ANDs and ORs

    if x = true

    OR

    y = true

    (subevent)--z = true | then your action

    and the touch thing, yeah, just look at all the choices that come up when you choose touch..

    there's tap, there's touch start, there's on object touched, etc... (the ones with green arrows are triggers, like the mouse click)

    Excellent!, thank you very much!, very useful... thanks for sharing your knowledge!.

  • Hello,

    I'm developing a game, and I need to do some contion like this:

    if ((x = true OR y = true) AND z = true) then make this...

    How can I do this in a block of conditions. I tried, but if I convert the block to OR, then all condition is OR. I tried

    As the image I attached. I need conditions like this:

    (Mouse - On left button Clicked on btnAdelante

    OR

    Is touching btnAdelante)

    AND (Variable NroInstruccion = "a").

    Also, I'd like to know if it's possible a condition with the touch as the click on the mouse (I mean, not "is touching", just "touched" as a tap with the finger).

    Thank you very much!

  • Thank you very much for all your comments!... you're right there is a bug after the first game over... I'm working on it.

    I'm thinking about some raising difficulty while you're playing. It's supposed to be a casual game (all public: for kids, teenagers or adults).

    Really thanks to you for testing it!

  • You right!... thank you very much. The goal is to fit one of the shape on the right with the shape of the graves that are passing by...

  • Hello all, you can see the game I'm developing in:

    http://bit.ly/juegoelpaso

    What do you think ?... I would like to read your suggestions, opinions, comments...

    I hope you really like it.

    Thank you very much.

  • Thanks!, I solved the problem. It was not really a problem, I was using a height 1px more larger than original image, and the stain I saw was just the beginning of the image . I set up the same size of the original image and it was solved!

    Thank you very much for your willing to help!.