This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function wait (ms) { | |
return new Promise(resolve=>{ | |
setTimeout(resolve,ms); | |
}); | |
} | |
/* utility to get my existing folder names + IDs | |
game.folders.forEach((value) => { | |
console.log(value.data.name + " " + value.data._id) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://avrae.io/commands | |
Arguments in brackets like <this> are required, and arguments in brackets like [this] are optional. Make sure not to include the brackets themselves! Semicolons ; will be used to separate commands and descriptions in this document. | |
!help COMMANDNAME ; view the syntax and check that that is correct. | |
### Tutorial Quickstart | |
!roll d20 ; rolls 1d20 and posts the result. |