Skip to content

Instantly share code, notes, and snippets.

@fmonaca
fmonaca / createjournal
Last active September 14, 2018 08:39
Creates an empty HERO System character sheet in Roll20
on('chat:message', function(msg) {
if(msg.type == 'api' && msg.content.indexOf('!newsheet ') != -1)
{
var name = msg.content.substring(10);
var ocharacter = findObjs({
_type: "character",
_name: name,
});
if(ocharacter.length==0)