Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function statusUpdate() {
  2.  
  3. var update = bot.channels.get('57776238223424324234234');
  4. const statusEmbed = new Discord.RichEmbed();
  5. statusEmbed.setTitle("**Current Statuss:**");
  6. con.query("SELECT * FROM games", function(err, result, fields) {
  7. if(err) throw err;
  8. Object.keys(result).forEach(function(key) {
  9. var row = result[key];
  10. statusEmbed.addField('**' + row.name + '**' + ' - ' + '(' + row.description + ')' + ' - ' + '**' + row.status + '**');
  11. });
  12. });
  13. update.send(statusEmbed);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement