diff --git a/examples/inputBot.js b/examples/inputBot.js new file mode 100644 index 0000000..8b1b8d8 --- /dev/null +++ b/examples/inputBot.js @@ -0,0 +1,30 @@ + +// Checkout the repo examples to get an idea of other ways you can use scripting +// https://github.com/latitudegames/Scripting/blob/master/examples + +//INPUT MODIFIER +const modifier = (text) => { + state.inputBot = 'DCStatDifficultyBot' +return { text } +} + +// Don't modify this part +modifier(text) + + +// CONTEXT MODIFIEr +const modifier = (text) => { + console.log(info?.inputEvaluation) +return { text } +} + +// Don't modify this part +modifier(text) + + + +/* + AVAILABLE BOTS +['DCStatDifficultyBot'] - Stat, Difficulty +['InputDCattributeBot'] - DC, Attrbute +*/ \ No newline at end of file