test xD
This commit is contained in:
parent
2b9204dea6
commit
e9471f85df
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user