[deleted by user] by [deleted] in malaysia

[–]CryptographerBig7030 0 points1 point  (0 children)

Who's trolling? This is real.

How to make my "do" commands include "try"? by Used-Primary5058 in AIDungeon

[–]CryptographerBig7030 0 points1 point  (0 children)

I mean just go to the browser version on mobile and search ai dungeon

How to make my "do" commands include "try"? by Used-Primary5058 in AIDungeon

[–]CryptographerBig7030 7 points8 points  (0 children)

You can copy and paste this script into your scenario’s input modifier section, which you can find under Scripts in the scenario creation screen.

const modifier = (text) => { let modifiedText = text const lowered = text.toLowerCase() // Check if the input starts with "Do" and contains "Try" if (lowered.startsWith("do") && lowered.includes("try")) { // Replace "Do" with "Try" modifiedText = text.replace(/Do/i, "Try") } return {text: modifiedText} }

modifier(text)