Dan Blast's Forum Posts

  • BOOM!

    Perfect. Thank you so much!

  • Hmm.. caught that after looking at your example a second (third, forth and fifth time lol).

    Still painting instead of erasing though.

    drive.google.com/file/d/1qwBmLxhrk2MIc7Y3wWVNkf6j3NBYiaJD/view

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • dop2000

    Hmm... I though I followed everything but the scatch image (red) paints instead of becomes transparent.

    dropbox.com/scl/fi/y5mte8vv10mvy7ekabhss/Dans-Scratch-off.c3p

    Ideas?

    Thanks

  • Wow! Thank you!

  • Hi everyone. I was wondering how to go about creating a lotto card scratch off effect overlaying a gray circle over and image that can be rubbed off when on a mobile device.

    Thanks

  • O.K got it working on my desktop but in IOS I get an error:

    An error occured

    Undefined is not an object (evaluating 'navigator.mediaDevices.getUserMedia')

    Here is the event code (Note I changed the agent id as I don't want folks reading this to burn through my credits:

    if (!document.getElementById("budo-voice")) {

    const convoDiv = document.createElement("elevenlabs-convai");

    convoDiv.setAttribute("agent-id", "jusandexample");

    convoDiv.id = "budo-voice";

    // ✨ Centering the widget in the screen

    convoDiv.style.position = "fixed";

    convoDiv.style.top = "50%";

    convoDiv.style.left = "50%";

    convoDiv.style.transform = "translate(-50%, -50%)";

    convoDiv.style.zIndex = "9999";

    convoDiv.style.width = "300px"; // optional

    convoDiv.style.height = "auto"; // optional

    document.body.appendChild(convoDiv);

    const script = document.createElement("script");

    script.src = "https://elevenlabs.io/convai-widget/index.js";

    script.async = true;

    script.type = "text/javascript";

    document.body.appendChild(script);

    }

  • You do not have permission to view this post

  • You do not have permission to view this post

  • I was wondering if anyone has used an a.i chat bot as an interactive character yet?

    Seems to be a upcoming popular concept.

    Interested in hearing if anyone's played with this yet.

  • I'm a bit confused about how to actually implement this?

    Global string Name=Pete

    Global string Greeting=Hello {name}!

    Set Greeting to replace(Greeting, "{name}", Name)

    My global string Name is left blank (this is working so far with a regular text action)

    The global string WelcomeTest is: Hello, "{name}", welcome back ^ Good to see you blah, blah, blah) the ^ pausing the typewriter effect and waiting for a tap to advance to the next line of text after the ^.

    I'm not understanding how you 'tag' or crete a tag and attach it to the Global string Name?

    drive.google.com/file/d/1Ja9QoWYrDUr7fUwBcpAQtGfqbUNetzrQ/view

  • O.K one bug smashed and another cropped up.

    I'm adding in the typewriter effect with the ^ to pause until a tap then the next part of the string loads in.

    Problem I have now is the Global Name &Name& is showing up as &Name& and not the saved name.

  • Bingo. The Layout and Event sheet were not connected.

    Thanks!

  • No reset global variables.

    It's driving me nuts.

  • Hi, I'm trying to use a global string "Name" which stores the name inputted by the player. That works.

    Now I am trying to use that on another layout to have a custom message for the player.

    It does not work on the second layout. I would also like to have it displayed as the typewriter effect.

    The script is by someone I hired on Fiverr. But I'd like to have multiple layouts that use the players name in various text objects

  • Thanks! LOL one freaking button!

    Man it was driving me crazy.

    I appreciate your help.