Mipey's Forum Posts

  • 99% a spambot.

  • Man... The above post split the thread into a new page, so I didn't see Sol's post immediately. I assumed boobs and clicked previous page...

    I can't say I've been too disappointed, heh.

    Merry Christmas and all that jazz to you all!

  • Is that Stitch? Where is Lilo?

    But yeah, that kind of radial health bar is tricky. There is no simple way to achieve it. You could fake it with sprite animations, but well, it would go in "steps" rather than gradually.

    Oh wait, now that I look again, this is for Construct Classic. Perfectly possible with sprite distortion/displacement. But that's beyond the scope of my modest understanding.

  • In german, huh? That means the browser halted script execution for some reason, typically when the script keeps running indefinitely and blocking the browser. There may be some nasty unescapable loop or a huge loop.

  • Confusing question indeed. I'll just drop this link: Derek Yu's pixeling tutorial and call it a day.

  • How did you download r73? Everything is there...

    scirra.com/construct2/releases/r73

  • MMO plugin? There is no such thing. You can't simply put MMO features into one plugin.

    There is that online chat plugin - sort of. You can also pass and receive data to the server with AJAX plugin. That's all the functionality you need to establish a server-client architecture.

    Now, server is a wholly different can of worms. Can't make those in Construct 2, because C2 is oriented to browser game development. No, you need to create a program running on the server that would handle clients and run the game. Which means programming.

    All in all, this is an unrealistic request.

  • Do we get paid?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Because actual reputation is always lower than perceived.

    Okay, more seriously, your answer lies therein

  • Too many games like this already.

    Let me know when they introduce P4P. Play for pay.

  • For Each system condition loops for each instance of the object. It is not used to loop through array values.

    Use the Array's For Each element condition or system's For loop.

    Refer to the manual, specifically Array page and System expressions page.

  • Uh, I've just looked at the image... should I expect a SWAT team to burst in through windows?

  • Right. Construct 2 license is not limited to any computers, only to your person / organization. Doesn't matter what computer you use.

  • You could try the string expressions, such as these:

    find(src, text)
    Find the first index within src that text occurs, else returns -1.
    
    left(text, count)
    Return the first count characters of text.
    
    len(text)
    Return the number of characters in text.
    
    lowercase(text)
    Convert the given text to all lowercase.
    
    mid(text, index, count)
    Return the count characters starting from index in text.
    
    replace(src, find, rep)
    Find all occurrences of find in src and replace them with rep.
    
    right(text, count)
    Return the last count characters of text.
    
    tokenat(src, index, separator)
    Return the Nth token from src, splitting the string by separator. For example, tokenat("apples|oranges|bananas", 1, "|") returns oranges.
    
    tokencount(src, separator)
    Count how many tokens occur in src using separator. For example, tokencount("apples|oranges|bananas", "|") returns 3.
    

    Basically treat the string as an array, separated by character of choice (comma or such). With these expressions you can make your own FIFO and LIFO implementations.

    Or you can use one of user made plugins.

  • Open the start menu.

    Run.

    Type cmd. Enter.

    Type that into that scary black window, without the "right..."