Stone-4's Recent Forum Activity

  • Hello Scirra users,

    I'm an artist who's like some of you tired of working alone. My goal is to create relatively simple mobile games that accomplish a few goals:

    1. create polished products that show great revenue potential

    2. create a fan base

    3. be able to fund larger future projects with paid positions (not that I can't pay a little something now)

    *Of course fair revenue share would be a part of this deal, but this is my future profession.

    For now all I need is these roles

    Artist- One who can color and polish what I produce. (Freedoms will be discussed as I don't want to micromanage your artistic vision.)

    Menu maker!

    C2 programmer - One who knows how to implement multiplayer functions for wifi play and create an endless runner.

    C2 programmer - Someone who can implement leaderboards, social media buttons

    Future:

    I know marketers and people who would give me professional advice. Once we get there we can get to that point in prototyping/ rough drafts we can get a music maker.

    What I offer:

    Concept Art/Final Product - I can color stuff so if I have to do all of the art that'd fine.

    Game mechanics/ gameplay and menu layouts sketch out in detail. Everything up for discussion to develop best layout flow and most fun game mechanics.

    You will never be lost for what to do.

    If you PM me I will give you art samples and examples of the simple first game I'd love to make.

    I'm in Eastern TimeZone -5 gmt. I would like to talk with this small team of about 3 people via Facebook/Skype so we can collaborate. I can work 5 days a week. I've been working alone trying to come up with a project that one man can muscle but it's just hours creating really cool designs that would take a few more people. Ergo I already work on game design hours a week. My budget to spread across all of the team would be $150-$200 a month USD.

  • Hey man I have a hopefully great offer for you. I'll hit you up in a PM

  • Thank you blackhornet

  • Ok here is a Youtube video to how I generate random instances if you don't understand the line of codes below.

    Create a GROUP called "Call ran Function 1" Duplicate this group and have the second one disabled on start. The reason is to ultimately prevent the error of have 0 layers visible to the player by following the rest of this guide! It will hopefully all work for you if you follow every line step by step. Private message me or hope somebody has a more condensed way of doing this. It's all problem solving, but hopefully I solved all of the potential problems in this post.

    Here is the Random Event lines of code to put into the both Call Random Function Groups. Make sure to set the second one inactive on start.

    on Function "ran" / Set Return Value floor(random(Function.Param(0),Function.Param(1)+1))

    * I don't know how often you want every layout to change, but here's an example of the next line of code

    Every X Seconds (5 seconds)/ Call Function "ran" Paramater (1,4) *This number is the number of layouts you have. If you have 20 layouts then set the first parameter to 1 and the seconds parameter to 20. When you press done in Construct 2 it will look like Call Function "ran" (1,20)

    *Now your return values are changing between 1 through 20 once every 5 seconds randomly.

    Create Events like this for all 20 Layouts

    *Do not use Function Return Value condition I had problems with it and System/Compare Two Variables does the same thing in theory and worked for me so use that.

    System- Compare Two Values - Function.ReturnValue - Equals - 1 - Layout 1 is visible - / System - Go to Layout 1 - Wait 6 seconds set Layout 1 invisible ELSE Toggle group "Call Function ran" 1 Toggle Group Active"Call Function ran" 2 /call function "ran"/

    (or whatever you choose to not collide with your random timing) * This way when the random Function calls Layout 1 again it will be invisible. I am guessing once the layout is gone it never comes back until the game resets)

    **** TOGGLING THE GROUPS will prevent you from ever having both on or off at the same time.

    System- Compare Two Values - Function.ReturnValue - Equals - 2 Layout 2 is visible / System - Go to Layout 2 - Wait 6 seconds set Layout 2 Invisible ELSE Toggle group "Call Function ran" 1 Toggle Group Active"Call Function ran" 2 /call function "ran"/

    *Repeat this step for all layouts when the layout is set to invisible it will not be called because of these events and giving it the effect of being destroyed or at least unable to be called.

    So you will have to create a lot of events if you have a lot of layouts but that is the simplest way I would go about doing it. If you understand arrays, parameters, or different types of variables you may find a quicker way to do this.

    Doing these will pick a random return value every 'X' seconds and when the return value is selected it will go to layout number 'whatever' and then when the next 'X' seconds passes you will have made an action 1 second longer than the X seconds so that the previous layout goes invisible and since in the one event you put Layout 'whatever' is visible even when the random event is called it won't go to an invisible layout. ** The worst result is that a layout might be on the screen longer when you toggle the groups active and inactive, but at least you should never get invisible layouts.

    **Make sure you space out everything apprpriately. You should get how I am thinking it's pretty simple then be able to adjust the seconds between accordingly. God bless you!

  • ]There are 3 of the same sprites on the screen and I am doing a command System: Pick Random Instance of Object, On Function Call - Create Fire at Object.ImagepointX(1), Object.ImagePointY(1)

    3 more events just like this with image points 2,3,4 as well.

    When I press play they all create the fire sprite at the same time instead of only at one random instance of the 3 objects.

    I would upload an image, but it seems that option is gone

  • Xavier

    Yes thank you I will use the particle method!

  • I am bumping this question I had forgotten to give it a title other than How do I at first and I edited it to be more specific. I'm trying to make this dash animation/effect follow a circle in all directions it can travel, which is 360 degrees. It's a super simple game my friend and I are making so this small detail is holding us up. Thanks for your help Scirra members!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I've been looking through the effects that C2 can generate and have not yet found this. How to make an object show a cool dash animation in any direction it travels.

    Similarly how to make it's trail behind it glow like a comet's tail.

    Thanks for the help. I'm sure this is a simple question.

  • THANK YOU SO MUCH! IT WORKS Here it is ramones's triangularOrbit.capx edited to do exactly what I want!!!

    THANKS for the polygon examples as well!! I've been stuck on this for like a week or so! You've added simplicity to the code and ideas for my project thank you so much!

    Now I have the circle, square, and triangle. Side to side is easy just use set position. Thanks everyone. I can now create cooler shapes just by having these basic ones!

    Thanks to all the people who helped with this case! Kyatric and brunopalermo! I hope God blesses you!

  • Kyatric

    I'm glad it isn't just me. I got kinda close. Thank you for this example.

    brunopalermo

    I hope you have time to make it dynamic. I will work on fusing my close attempt with Kyatric's in the mean time.

    I tried creating a right triangle so I could fuse two right triangles into a equilateral triangle, but that was glitchy.

    I also had a point that the square would follow appear and used Move To command, but then when I moved the center it fell off the path even though it made a triangle standing still.

    When this problem is solved I would love to put the circle, square, and triangle examples that behave the way we are aiming for relative to the center in a tutorial or frequently asked questions!

  • I'm still looking for the answer to this. I couldn't use brunopalermo 's example because his moved without being relative to a center object.

    In my capx examples in the first post you can click and the center object follows as well as the path perfectly around the center following where ever you click.

    Pathfinding does not work for this type of movement.

  • How? Where's the center in the code?

Stone-4's avatar

Stone-4

Member since 1 May, 2014

None one is following Stone-4 yet!

Trophy Case

  • 10-Year Club
  • Email Verified

Progress

11/44
How to earn trophies