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/addSimpleInventory.js

14 lines
345 B
JavaScript
Raw Normal View History

2021-05-06 08:13:50 -06:00
// Checkout the repo examples to get an idea of other ways you can use scripting
// https://github.com/latitudegames/Scripting/blob/master/examples
const modifier = (text) => {
state.inventory = [{name: 'candy', quantity: 1}, {name: 'Turtles', quantity: 240}]
return { text }
}
// Don't modify this part
modifier(text)