Modified TinyChat - Best Scripts; prepare to be amazed.
< Σχολιασμός για τον κώδικα CosmosisT's TinyChat Script (CTS V1.8.65)
Yikes, I did mess up but current state is I won't be updating due to manifest update coming soon, but if I do hit the updates again I'll change that. Small bug but good eye!
Sorry for delay in response, I appreciate the eyes, consider StumbleChat eyes like those could be helpful.
Updating script, sorry for delay. I generally only apply small fixes now, I had time today so you can look forward to V1.8.54
First off thank you for the code.
Point out small errors in code that cause the Ignore List to show up twice in response to !lists command
Line 4042:
Save("HiddenCameraList", JSON.stringify(CTS.IgnoreList));
change to
Save("HiddenCameraList", JSON.stringify(CTS.HiddenCameraList));
Line 4155
len = CTS.IgnoreList.length;
change to
len = CTS.HiddenCameraList.length;
Line 4156
msg = "Ignore list:\n" + ((!len) ? "empty\n" : "");
to
msg = "Hidden Camera list:\n" + ((!len) ? "empty\n" : "");
Line 4157
for (index = 0; index < len; index++) msg += index + " : " + CTS.IgnoreList[index] + "\n";
change to
for (index = 0; index < len; index++) msg += index + " : " + CTS.HiddenCameraList[index] + "\n";