LittleStain's Forum Posts

  • Seeing your capx, I haven't got a clue on what you are trying to achieve.

    I'm not sure why you are adding Hbar.UID to UIdbar

    You are setting Myuid, but never using it..

    Could you try and explain what you would like to happen and when?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Well this didn't work..

    I got to a link where I had to ask your permission, but the email attached to that request won't work..

    Is there a way to put it in a place where the acces is public?

  • Sorry I don't have that plugin installed, for I never used it and/or will..

    So I can't open this capx.

    If you know which instance you want to rotate there should be a way to tell the computer.

    Adding conditions to the event will make sure the computer understands your desires.

  • I'm not sure why you are picking the wallblueprint at all..

    wouldn't an "is overlapping wallblueprint" with the condition wallblueprint.newwall = 0 do the trick?

  • it would be a lot easier to help you if you could provide a capx, or at least an image of your event sheet.

  • Great working example

    Sure, the events could be optimized, but I actually like seeing it this way, for it's easier to read.

  • Yep the parallax is the issue..

    I think you can get around this with the system expressions canvastolayer and layertocanvas, but I myself have never used them.

    https://www.scirra.com/manual/126/system-expressions

  • I can't see the image, so I have no idea what's there..

    Did you try spawnobject - spawn object at imagepoint?

    If so are you sure the imagepoint is within the spawnobject?

    Without the capx to look at all I can do is guess..

  • To create a 1/4 chance you could use choose(1,0,0,0)

    So give the animatronic an instance variable move

    every x seconds

    • for each animatronic

    > animatronic set variable move = choose(1,0,0,0)

    • animatronic compare variable move = 1

    > animatronic move to next room.

  • This one is actually working when I try:

    XML.StringValue("/story/line/text()")

    Very unexpected, but the one with double quotes isn't?

  • To invert events right-click the event and select invert..

  • Ok.. Good luck on your program!

  • If the global variable is a text I don't think there is a need for the extra "

    Try if this works:

    XML.StringValue("/story/line/text()")

  • From another topic:

    Be warned this can induce errors if your project is using newer features not supported by the older version of C2. That being said:

    1. Go to the project file. If it's a .caporj file, skip step 2.

    2. If it's a capx, unzip it (capx are just zip files basically).

    3. Now, open the caproj file in a plain text editor (I recommend notepad++, get it here).

    4. Look for the following string, minus quotes: "<saved-with-version>". It's only a few lines down from the top.

    5. You'll see this tag has a 5 digit number; it's the c2 version padded with 2 zeros (so, r184 will look like 18400). Change the first 3 digits to match version you want to revert to.

  • That's why in my capx I had the original value and the total value..

    the total value was set to the original value when the first button was pushed..

    when pressing x2, if the total value was the same as the original vaue, the total value was set to 2x the original value.

    else the total value was set back to the original value..

    If the total value was not 0, the text was added to the string.