Is there a way to set the "read-only" variable 'playerid' for an auto-generated macro? I'm working on a sample script to create a basic macro object through the API on campaign startup. Script: on("ready", function() { createObj("macro", { name: "attack_macro", action: "/me attacks!", visibleto: "", istokenaction: false }); }); I'm getting this error: ERROR: You must pass in a valid 'playerid' property when creating a macro. I have tried setting the "playerid" field, with the same error result sample attempts: " ... playerid: 0 ... " " ... playerid: 1 ... " " ... playerid: "Two's Company" ... " Thoughts on this would be great. Thank you! -Two's Company