Quick function that will post some text into a Discord bot server 
function testDiscord()
{
    // Discord
    var bot = "
https://discord.com/api/webhooks/"; // Your Webhook url goes here
    var charName = Player.Name();
    var paramText = "username="+charName+"&content=@everyone "+charName+" just made dinner";
    Orion.Wait(100);
    Orion.HttpPost(bot, paramText);
    Orion.Wait(1000);    
}