This commit is contained in:
Flummi 2017-03-22 00:10:26 +01:00
parent 2b9204dea6
commit e9471f85df

View File

@ -1,11 +1,21 @@
module.exports = (lib) => {
lib.trigger.add({
name: 'f0ckrand',
call: /^gib f0ck$/i,
call: /^gib f0ck/i,
level: 0,
active: 1,
func: (e) => {
lib.sql.query("select `id`,`username` from `f0ck`.`items` order by rand() limit 1", (err, rows, fields) => {
let args = e.message.split(" ");
args.shift().shift();
let query = "select `id`,`username` from `f0ck`.`items` order by rand() ";
if(args.length > 0) {
query += "where `username` = ? ".repeat(args.length);
}
query += "limit 1";
lib.sql.query(query, args, (err, rows, fields) => {
if(!err)
e.reply("f0ckrnd: "+lib.cfg.main.url+"/"+rows[0].id+" by: "+rows[0].username);
});