Dan Blast's Forum Posts

  • Yes. I was using eleven labs for the voice. You upload a character behavior template and its A.I uses that as its guidelines. For example if you tell it that it is an old wizard and is grumpy. It will behave that way.

  • Hi everyone, I purchased a coloring book template and it's perfect for my needs except it does not have one color I need which is a light gray. I looked at the code but can't seem to figure out how the author is creating the colors when the pencils are clicked.

    He has all the pencils in one images as animation frames with different colors.

    I've added a light gray pencil (see image) and I am trying to get that to change from its original green to light gray. I noticed if I move the animation frame of that pencil (frame 11) it moves all the colors down one. I don't know if that clue can help anyone help me figure this out.

  • 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

  • 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

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • 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.