Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

[Help]Chatsetattr and chatlog

Is there a way to somehow make the reporting function of chatsetattr to show up in the chatlog archive also?  I use it to track players who modify their money and such and am just realizing that once its in the chat archive I don't see it.  
1649129019

Edited 1649129054
Oosh
Sheet Author
API Scripter
It looks like it's hard coded to not archive. You'll need to do disable the one-click, do a manual install and edit this bit: sendChatMessage = function (msg, from) { if (from === undefined) from = "ChatSetAttr"; sendChat(from, msg, null, { noarchive: true }); }, Just change the noarchive: true to noarchive: false Around line 70.
Oosh said: It looks like it's hard coded to not archive. You'll need to do disable the one-click, do a manual install and edit this bit: sendChatMessage = function (msg, from) { if (from === undefined) from = "ChatSetAttr"; sendChat(from, msg, null, { noarchive: true }); }, Just change the noarchive: true to noarchive: false Around line 70. Thank you!