I recently played Skyrim with Mantella AI Mod and was intrigued to learn about the application of AI in Construct3..
Has anyone here tried to use AI in their games or projects? Did you use any API for this, does Construct3 have tools or plans for this? For example, I’ve used Overchat AI to generate dynamic in-game dialogue and branching narratives. It’s surprisingly easy to plug into Construct3 using Web Requests — you send the prompt, get back structured text, and then use that to control NPC behavior or quest responses. Super helpful for creating immersive experiences without hardcoding tons of options.
Please share your experiences, I would love to hear them.
Yeah, I’ve experimented a bit with AI in Construct 3, although it's definitely more limited compared to engines like Unity or Unreal when it comes to native AI support.
What I’ve done so far mostly involves integrating external APIs — for example, using Web Requests to interact with simple AI endpoints (like chatbots or procedural text generators). Construct 3 doesn’t yet have built-in machine learning tools, but it’s flexible enough to let you connect to third-party services if you’re comfortable working with JavaScript and JSON responses.
For gameplay AI (like pathfinding or basic decision-making), Construct 3’s event system is surprisingly capable. You can create state machines, enemy patrol logic, or even simple dialogue trees without external tools. But if you're thinking about more advanced stuff like dynamic storytelling, procedural generation, or behavior trees driven by large AI models — that usually requires a backend or server-side processing.
Curious to hear what others have tried too — especially if anyone’s explored Mantella-like behavior systems in 2D projects.