oosyrag's Forum Posts

  • Actually I can begin to envision a MMO along the lines of Realm of the Mad God being done in Construct now with the multiplayer plugin. All the functionality should be there. It would still be a massive undertaking though.

  • The browser object has a close action.

    https://www.scirra.com/manual/110/browser

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You need to make a counter. The simplest way to do this would be with an instance variable on your object. It starts at 0. Add a condition so that your "jump" control only works when CounterVariable<4. Whenever you jump, add one to CounterVariable. After you reach 4, you will no longer be able to jump. Then add an event to reset CounterVariable to 0, such as when you land.

  • The logic would be to actually have the world/background doing the moving. Create the next section of the background off screen and have it move in view. When the last section of the world leaves the visible screen, destroy it.

    Check out the Vertical Space Shooter Template that comes with Construct, it might give you some ideas. Instead of enemies/bullets spawning and being destroyed, it would be your world/background sprites.

  • I got another one week time to complete my project. I implemented swipe function but now i m struck.

    http://bit.ly/1R2TLDx

    the above link is the capx file.i have spawned four tiles using a single sprite and in each tile i displayed animation frame (0,3,6,9).

    i have totally 11 frames in tht sprite. when i tap the first tile it should change to next frame,on next tap on t1(tile 1) it should change to next frame but it shouldn't exceed frame 3...after frame it should start from frame 1...like that for tile 2 frames (should b 3,4,5) ;tile 3=(f 6,7,8);t4=(f 9,10,11)......how to do this ?

    i made a pseudo code but it not working..

    PSEUDO CODE

    on tap gesture on block |

    while(x<4) | block.color=block.color+1 //color is instance variable

    if(x>3) | block.color=block.color-3

    | x=0

    someone tell me how to make this pseudo code work

    and i have another doubt i will post it once i got this cleared ,at the same time i ll try to implement tht myself.

    Ok you have a few issues here. First you don't need a "While" condition- that will make the event run over and over again until the other conditions are false.

    Second you don't want the x>3 as a sub event of x<4 - the sub event will only run if the parent event does - basically if x is 4, the parent event won't run, and the sub event won't either.

    From there you also have a couple more problems. One is that your x global variable will cycle 0-1-2-3-4-1-2-3-4-1... ect, but this global variable will be shared for all your blocks and not each one individually.

    The other problem is that Block.color as an instance variable, and doesn't actually change the color of the block or do anything at all by itself. You want Block - Set animation frame to Block.AnimationFrame+1.

    Put those two together and you might realize your animation frame will keep going up no matter what your x variable is, so you'll need to rethink through your logic a bit. You probably don't need the x variable at all. I suggest having an instance variable for your block with the starting frame number.

    Block.AnimationFrame < Block.OriginalFrame+4 | Block - Set animation frame to Block.AnimationFrame+1
    Block.AnimationFrame = Block.OriginalFrame+4 | Block - Set animation frame to Block.OriginalFrame[/code:11biidh9]
  • That sort of game actually shares a lot more in common with the top down mechanics than platformer mechanics. You'll be using 8 direction movement, with some limitations on where on the screen you can go. I believe the top down shooter tutorial also has examples for endless enemy spawning.

  • Not a question, but I came across this and liked it, so I thought I'd share.

    Different types of lerp motions and a visualization of the math needed to create them -

    http://i.giphy.com/3ornjK3itVx9NZ3WUM.gif

  • From the other thread -

    Conditions

    Array - For Each Element

    SubEvent Conditions

    System - While

    System - Compare two values - IndexOf(Array.At.CurX) != LastIndexOf(Array.At.CurX)

    Action

    Array - Delete LastIndexOf(Self.At.CurX)

    This is for a 1d array, but it will still work if you add an additional sub event to check that the second value also matches in both.

  • Yes that sounds like you'll want to use the physics behavior. I'm not too familiar with it myself, but the idea should be similar.

  • Conditions

    Array - For Each Element

    SubEvent Conditions

    System - While

    System - Compare two values - IndexOf(Array.At.CurX) != LastIndexOf(Array.At.CurX)

    Action

    Array - Delete LastIndexOf(Self.At.CurX)

    Edit: Changed Self/Array in the expression, since you can't use self in a system condition, formatting, sub event for two the two loops. Yikes made a lot of mistakes actually, glad you understood

  • I would actually recommend creating your poll on Google Docs and just making a link to it from your game, if it is not integral to your game.

  • What is a click and play?

  • Just change the blend mode so that your source is completely blocked instead of atop for the silhouette.

    https://www.scirra.com/manual/146/effects

    I think the one you want is Destination Over, but I'm not 100% sure. Quick experimentation will help you find the correct effect.