Kyatric's Forum Posts

  • The wait action already uses DT I believe.

    Can you precise your issue, what is it exactly you're trying to achieve ?

  • Spawn small sprites at the position and angle of your tires on a regular basis.

    This should give the illusion of tires trails.

  • Sounds like your issue is with the php script which does not return an image.

    But PHP is out of the scope of the C2 forum, try to check stackoverflow.com in case some snippet of code might already be there.

  • Use the "is overlapping" condition and invert it (right click - invert).

    You may have to add a "Trigger once when true" condition though.

  • boolean: capx are zip archive. Extract it to an archive and you get access to its inner files.

    Then zip the edited folder and rename it to capx.

    • Post link icon

    Tsengar: Gamepad isn't supported in FF at the moment.

    To have the test working in FF, you are supposed to install the old version 11 nightly with the beta support compiled in, which is kind of a burden.

    For Chrome, as far as I know, you have to press buttons on the gamepad first to "enable" it and mostly only XBox360 gamepad is supported. (to be confirmed, Ashley ?)

    Support for other gamepad is coming though and support in FF is being worked on too, but isn't yet included in any stable release.

    There were some movements in the bugzilla about gamepad support, so hopefully it's coming for FF.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Hi, the comments are monitored by an automatic plugin (Askimet) which can have some quirks (I believe it's hard testing some terms, and I wouldn't be surprised if lately spam robots have been using words like "Harlem Shake" ^^)

    Tom is adapting the plugin to the website on a regular basis.

  • What browser are you using ?

  • It works for me in Chrome.

    Are you using the last update ? Are you using Chrome extensions ?

  • Why not pinning to an invisible sprite which only purpose is the drag & drop ?

    Example capx

  • Sounds and music manual entry.

    Make a google search for "Server setting MIME type" and apply to your teammate's server.

  • Post your link as plain text, only the usage of [ url] tag is restricted on "newer" accounts.

    The limit is indeed perhaps a bit high, tweaks are being made regularly to the accounts and the forums.

    It's probably subject to changes.

  • You should post the capx (the sources) of your project, otherwise there's little to nothing we can do to help.

    You can try to check for errors in IE and see where the issue might be coming from.

  • :

    System expressions

    escape/unescape : I'm not sure but wouldn't URLEncode(str) and URLDecode(str) do the job ?

    toUppercase : uppercase(text)

    concate (concatenate ?) : & (ie "my first string " & " and my second string" => "my frist string and my second string")

    substr : mid(text, index, count)

    fromCharCode : it's not in indeed, but I made this alpha WIP plugin for that, still in development, use at your own risks.

    I don't believe RegEx are supported, but you can use find(src, text) to get the index of the first occurrence of "text" and then use mid() to retrieve it.

    For split I believe you can use tokenat(src, index, separator). Run a loop and set the tokens as values of an array.

    You can find more explicit example of use of tokenat() in the how do I FAQ IIRC.

  • : Checkbox are available in the built-in button plugin too (probably better since built-in).