This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
AIDScripting/examples/evaluationBots.js
2021-01-15 09:22:22 -08:00

30 lines
No EOL
482 B
JavaScript

// Checkout the repo examples to get an idea of other ways you can use scripting
// https://github.com/latitudegames/Scripting/blob/master/examples
//CONTEXT MODIFIER
const modifier = (text) => {
state.evaluationBot = 'JudgeBot'
return { text }
}
// Don't modify this part
modifier(text)
// OUTPUT MODIFIER
const modifier = (text) => {
console.log(info)
return { text }
}
// Don't modify this part
modifier(text)
/*
AVAILABLE BOTS
*/