DUTOIT's Forum Posts

  • Glad it works

  • You should consider saving data to webstorage - so that player doesn't loose his keys when he leaves game. Set save progress up early, else it is going to be a nightmare later

  • The new multiplayer plugin is perfect for this.

    I just added it to one of my turn-based projects. Very cool.

  • You can find a number in the tutorial section, but the only way is to actually make a small project and test them out for yourself.

  • Im agree with Dutoit of only little percent really earn money.

    but i do not undertand what is 1000 people give 1 day annual salary.

    To make 1000 a month need 1000 people for $1 one game in 1 month.. so is 12 games (one per month) per year.

    Lol, I overly complicating things I guess.

    Point is, what do you consider success, work out how much you need (sales and games) and go do it.

    Some folks make tons, others scrape by. In the end making money isn't winning the lotto, it requires hard work and lady luck, and if she isn't giving, then create your own luck.

  • Im agree with Dutoit, maybe a little exaggerated in the % starve.

    There is also people who earn enough for living maybe little more maybe less.

    the piramid could be 5% rich.... 20% enough for livinng 75% starve... i just added a % for people who earn enough money to live that is more % than rich % but less % than starving.

    The main idea Dutoit want to say is... very very low % rich people and huge % starve people.

    Katzin - Thanks for clearing that up

    95% have more month than their wallets can accomodate. This applies to all of us

    Only 5% are truly profitable - make sense?

  • Its true for every single industry.

    How many million new books are published every year. How many spots on the bestseller list?

    How many salesmen? How many make seven plus digits?

    How many brokers? Who aren't broke?

    How many games come out in a year? Can you count 100 top games that year? All time yes, but a single year.

    Now look how many are released for pc, mobile, consols etc etc etc.

    Yes, it is very true.

    Multi billion industry, some top companies take big chunks of that, they also can afford to pay game developers some big chunks. Every now and again you get a small team that get a hit, but the average guy trying to make a game has to answer this....

    How much do I need to make a living = X

    How many games do I need to sell/people download/people play/ads veiwed/ etc to give me X = Y

    Do your own math, numbers don't lie.

    What do I consider profitable? For me the magic number is 1000.

    I want 1000 people to give me 1 days worth of their annual salary.

    That means I earn a little over 2 x the average annual salary. I have 1000 days of salary vs 365.

    Example to illustrate:

    So to make 1,000 a month I need to sell 1000 games a year at $12 game, or 2000 a $6, or 3000 a $4, etc

  • This industry is a money pit.

    Which industry isn't

  • Do you know the profits in a games?

    Multi Billion Dollar Industry - huge profits

    Is for download? how mach for each?

    $0 to couple hundred dollars

    other way to earn money with the game?

    Licensing, Advertising, Owning, Playing, Renting, etc etc etc

    5% of game makers make big bucks.

    95% of game makers starve.

  • PABERB,

    How to not get help - spam the board with multiple topics asking the same thing.

    So my answer for this topic and all the others.

    Its called search - use it.

    Its called a manual - read it.

    Its called a tutorials section - go look there and search.

    The only hard one is the plugins section

    And special hint. Check out the plugin section - lots ofplugins for imports available there.

    Here is a nicelist of plugins.

  • part12studios,

    Yip, your formating was wrong.

    Attached corrected puns.json it works now.

    Sidenote: see my gravatar - that's my son, and his name is Caleb too

  • Can you attach the capx?

    Go full editor - and upload attachment and attach the capx of your test.

    That will save us time. I suspect your json isn't formated correctly.

  • Agree with manley23, your browser.queryparam returns nothing and therefor saves nothing.

    or

    the stslogin value never equals 2

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Think of it as a list.

    0.0 Joke 1

    >0.1 Joke 1 Punchline

    1.0 Joke 2

    >1.1 Joke 2 Punchline

    The confusing thing is that in code it counts first intance as 1. So 0 is 1 instance. 1 is 2 instances.

    ["Joke 00"], array.at(0,0)

    ["Joke 00 Punchline"] array.at(0.1)

    ],[ ["Joke 01"], array.at(1,0)

    ["Joke 01 Punchline"] array.at(1,1)

    ],[ We work in 3 dimensions x,y,z In the above we working in 2 dimensions x,y and z we make it 1 So X is the number of cards and we randomize x cardnumber = floor(random(1, numberofcards) we choosing a random number between 1 and #Number of cards. I am not including 0 because I added a card1/totalcards and wanted it too look good. You can add random(0,totalcards) if you want. And number of cards is how wide is x and we can find that out by using array.width y is the 2nd dimension, the bullet points of the card. We only have 1 now, which is punchline. So it looks like this 2 jokes and 2 punchlines (x,y,z) (2,2,1) So to get joke 2 array.at(1,0) and get joke 2 punchline array.at(1,1) Make sense? The trick is to play around with it. Once you master this, you won't ever look back. Ninja'd by Manley23, I guess I took to long in the editor.

  • Create a function... that is what it is meant for.