ligh7hau5/commands/help.js

26 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-07-04 00:27:39 +03:00
exports.runQuery = function (matrixClient, room) {
matrixClient.sendHtmlNotice(room.roomId,
'',
2020-06-28 10:27:50 +03:00
'<blockquote><b>fediverse commands<br>'
+ '+plemara [your message] : post<br>'
2019-07-05 02:49:55 +03:00
+ '+redact [post id] : delete post<br>'
+ '+follow [user id] : follow<br>'
+ '+unfollow [user id] : unfollow<br>'
2019-07-04 00:27:39 +03:00
+ '+copy [post id] : repeat/repost/retweet<br>'
+ '+reply [post id] [content] : reply to post<br>'
+ '+tip [@user@fedi.url] [amount] : tip 10grans<br>'
+ '+beg : beg for 10grans<br>'
2019-07-04 00:27:39 +03:00
+ '+clap [post id] : favorite<br>'
+ '+boo [post id] : unfavorite</blockquote>'
+ '<blockquote><b>channel commands<br>'
2020-06-28 10:07:58 +03:00
+ '+flood : turn on timeline in channel<br>'
2020-06-28 10:27:50 +03:00
+ '+notify : show notifications in channel<br>'
2020-06-28 10:07:58 +03:00
+ '+archive [URL] : archive content<br>'
+ '+rearchive [URL] : re-archive content<br>'
+ '+nitter [status URL] : redirect twitter to nitter, also embed tweet<br>'
2020-06-28 10:27:50 +03:00
+ '+invidious [video URL] : redirect youtube to invidious, also embed description</b><br></blockquote>'
+ '<blockquote><b>--- <i>Contributors🐱</i> ---</b><br>'
+ '<b>CRYPTOMOONERS</b><br>'
+ '<b><i>docs by LINT</i></b></blockquote>');
2019-07-04 00:27:39 +03:00
};