the_Shit_hawk's Forum Posts

  • add the dust animation to playersprite and player- on landed - play landed animation; or, create an image point at the bottom of your player sprite, and player-on landed-create new object- sprite 2, at image point 2; with sprite2 being your dust animation. if creating a new object, you can use, sprite2 - on created -set animation 1, wait x seconds, destroy (or fade, destroy)

  • every event sheet is a new file. i dont think c3 has event sheet limits but i know c2 free did. scour youtube youll find array explanations. theyre just 2d-3d variables. like rows and columns of data.

  • understandable. but thats the magic of videogames. smoke and mirrors. lots an lots and lots of smoke and mirrors. :]

  • try switching the event around. it likes to be tempermental sometimes.

    i.e.

    Box - On Collision With Ball- Destroy Ball

    may have a different outcome than

    Ball - On Collision With Box - Destroy Ball

    i believe the logic behind it is: If THIS box comes in contact with any ball, destroy all balls

    If THIS Ball Touches any box, Destroy THIS ball.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I'm trying to develop a game that starts off each stage as an autorunner and turns into a platformer for boss fights. Does anyone know if this is possible and if so how it's done?

    It's Beautifully Possible. Do you use c3 at all? maybe i have something of use...

  • thats were as in they were, not were as in we're, i didnt want to mislead you into thinking im affiliated with scirra

  • the templates were to show ways to do things with the engine, however were meant to give you a head start in to making your own game. thats what a template is. you're meant to build onto, change, and remake said templates, to create the game that you feel should exist (or just want to make). while it is insisted that you build from the ground up, if you're going to add in the same concepts anyway, theres nothing wrong with starting halfway there. just make sure if you're going to sell a game that all artwork is either original or public domain etc, or give proper accreditation royalties etc, as otherwise you can be sued for your house, car, pc, etc unless you are incorporated or LLC etc.

  • there is a function (event) called "On Animation Finished", which will trigger an action once the current animation ends. i believe that's what you're looking for.

  • > its cool, would help if it had some sort of text that told you how to move, was hitting keyboard arrows for a moment before i realized it was drag n drop/touch, could use text with a fade behavior, just have it stay on screen for a few seconds and disappear. im assuming its geared towards mobile, so i would say add a button that acts as an attack, something that will make cars swerve away from you. something as simple as push button /press spacebar, play sound moo, and have an invisible sprite around the cow/animal, and if a car is overlapping or collides with it it explodes or switches lanes, exploding would be less logical, but easier than figuring out which cars swerve left or which cars swerve right, and what happens if something is dead center. as its slightly touchy, i would space the cars out slightly more to account for lag between different systems. also if youre using touch atm, you could add mouse behavior as well, (touch doubles as mouse behavior but each has some specifics) and change the mouse cursor to show whether youre hovering or grabbing the animal, or even just set it to invisible. it allows computer players to admire the player sprite instead of an arrow with eyeballs. but overall a nice little game, good work. usually its a while before people have a character select etc.

    >

    Thanks for the awesome feedback! Really helps to have an objective eye make observations we overlook and take for granted while designing. I am going to get to work on making some clear instructions on game controls and mechanics involved in the game so players jump in and play without any confusion.

    We do actually already have a simple dice rolling mechanic that rolls a random ability and you have to tap it to gain an ability or bonus points. There isn't many options involved there but there is an 'Explosive' ability and a 'Slow time' ability also. But you are perfectly right about in the fact that it isn't explained clearly enough so perhaps it is easy for players to miss the fact this mechanic is even there at all.

    Thanks again for taking the time to review our little game

    i had a really nice layout you couldve used for a main menu but i exported it to host on google and then google cut hosting and my laptop crashed, and tbh idk how to host anywhere but scirra arcade. the original files are there but all the code is lost unless i can rehost the files. tbh though, it only takes 2 or 3 events to make a main menu with a how to play screen, even if you splash it up as a fake loading screen or something. if you need help figuring it out lmk, but it should be fairly simple.

  • I couldn't figure out how to upload a picture directly to the forum, so I just created a quick Google site and uploaded the picture there. The last bits of it get cut off, but they are essentially if A is down simulate jump, of left arrow is down simulate pressing left, and if right arrow is down simulate right. Again, since I'm new to all this, I started off using a tutorial. However, the tutorial didn't cover key features such as running, so I stopped using it. After that I just did stuff myself. It's probably really inefficient. It works however. I'm guessing I'll probably just start from scratch and make something that is more convenient.

    Here's the site with the picture: https://sites.google.com/site/construct2help1/

    Alright, i thought you were saying to do one of those animations was 32 events vs all of them = 32. i dont know if atm this is just a test to ensure everything works or if thats the code you're planning to run with, but it seems you have a lot of "if S pressed set variable to x" "if variable is x, set animation", would you be able to simply say "If S Pressed, set animation"? and then just loop the animation in frame editor? also in instances where you have "when X Happens, set animation" "on animation finish, Do Y" , you could try to just add a wait function, and time out how long the animation is. (helpful hint: Animation speed is in frames per second, so total frames / frames per second = seconds per animation.)

    If the keyboard triggers are in for the final game, i would suggest working around the variables, though i know sometimes ill hook animations upto number keys just to check that they work, so im not sure which is the case in your situation, but most things can fit in one event. such as , on x collision with y, destroy y, play sound, set x scale to 1.5, wait 3 seconds, set x scale to 1.

    learning to package events is a skill you'll learn over time, and a very valuable one if you plan to use the free version. if event limits are truly an issue, i suggest maybe trying out construct2 vs construct3beta, as it has a 100 event limit for free version, though this is not a viable option for all people.

    heres a title screen a made last week, shes a pretty one. but it shows how you can layer everything into literally one event. granted this file isnt interactive, but look for things you find yourself doing over and over and try to link them together somehow. hope i helped somewhat.

    https://www.dropbox.com/s/tinenf98waub3 ... C.c3p?dl=0

  • 50% is a heavy price for marketing, considering your asking for the rights to somebodies game. i understand its a service some people could take advantage of if they dont want to learn how to host their own stuff, but personally, i'll pass.

  • there definitely is, but im curious as to how it takes you 34 events to animate mario. a screenshot would make this a little easier to answer. i feel maybe you are calling something else an event, but a lot of what you're asking can be done with a combination of global/instance variables and the set animation, or scale sprite options.

    if you make a numeric global variable/instance variable called "State" you can say if state = 0 set animation to a, state = 1 set animation to b, etc. . if you post a screenshot of your events i can probably help you cut it down by a few lines of code. 34 sounds like way too much. ive made full platformers with less than that when my laptop worked.

  • stock collision is a square, so your vehincle might just be getting stuck.you can crop your image in image editor to minimize said square, also in your toolbar, the button that looks like a snake, (-o-o-o ) (may have to resize editor window to see, under image point) will allow you to set custom collision polygons. if your vehicle still doesnt move, try not making your course solid, but putting invisible solid sprites where walls would be.

  • its cool, would help if it had some sort of text that told you how to move, was hitting keyboard arrows for a moment before i realized it was drag n drop/touch, could use text with a fade behavior, just have it stay on screen for a few seconds and disappear. im assuming its geared towards mobile, so i would say add a button that acts as an attack, something that will make cars swerve away from you. something as simple as push button /press spacebar, play sound moo, and have an invisible sprite around the cow/animal, and if a car is overlapping or collides with it it explodes or switches lanes, exploding would be less logical, but easier than figuring out which cars swerve left or which cars swerve right, and what happens if something is dead center. as its slightly touchy, i would space the cars out slightly more to account for lag between different systems. also if youre using touch atm, you could add mouse behavior as well, (touch doubles as mouse behavior but each has some specifics) and change the mouse cursor to show whether youre hovering or grabbing the animal, or even just set it to invisible. it allows computer players to admire the player sprite instead of an arrow with eyeballs. but overall a nice little game, good work. usually its a while before people have a character select etc.

  • even just from the video i like it. brings me back to sonic & knuckles, and a few others from the genesis era