!7 set flag JDA40. standardBot1 RolesExporter { init { myName = "HyperCubes"; } sync S processSimplifiedLine(S s, O... _) { try answer super.processSimplifiedLine(s, _); optPar long channelID; if "export" { L roles = map(guild.getRoles(), r -> litorderedmap("name" := r.getName())); S text = jsonEncode_shallowLineBreaks(litmap(+roles)); uploadFileInChannel(channelID, toUtf8(text), "roles-" + guild.getIdLong() + ".json", null, null); null; } } }