Joe Gores
Joe Gores
Whoa, it looks like it works with ControlNet-Tile too!
This should currently be possible by opening your code directories in your VSCode workspace and using relative paths in your `require`. Check out the [nested file feature](https://github.com/rolandostar/tabletopsimulator-lua-vscode#nested-file-feature) to see if...
I ended up moving that file into my repo and then symlinking it to the game directory. Even though this question isn't specific to this extension, I'd still be curious...
It's not that it's a bad idea, but the scope seems pretty large. If TTS ever changes the structure of their exported JSON even a little, it could become a...
Here's the workaround I've been using: ``` javascript var contacts; var chatBot = new wobot.Bot({ jid: process.env.HIPCHAT_JID, password: process.env.HIPCHAT_PASS }); chatBot.onConnect(function() { contacts = getContacts(); }); chatBot.onMessage(/someRegex/, function(channel, from, message,...