Update discord embed to include progress information

master
sigonasr2 2 years ago
parent 4b038adf60
commit 0bb20fd6c1
  1. 6
      server.js

@ -99,9 +99,13 @@ app.post("/updateItem",(req,res)=>{
name:req.body.item_name,
icon_url:itemIcon
},
color:req.body.obtained==req.body.required?32768:Number(req.body.obtained)>0?20680:2172201,
description:"**"+req.body.username+"** "+(req.body.operation==="FINISH"?" has finished collecting "+req.body.required+" / "+req.body.required+" __"+req.body.item_name+"__!":
req.body.operation==="INCREASE"?" has collected "+req.body.obtained+" / "+req.body.required+" __"+req.body.item_name+"__ (+"+(req.body.obtained-req.body.previous_amt)+")"
:" has set __"+req.body.item_name+"__ to "+req.body.obtained+" / "+req.body.required)+"\n\n[Sig Planner - Sig crafts all the things](http://projectdivar.com:3001)"
:" has set __"+req.body.item_name+"__ to "+req.body.obtained+" / "+req.body.required)+"\n\n[Sig Planner - Sig crafts all the things](http://projectdivar.com:3001)",
footer:{
"text":"Progress: "+((req.body.itemCount+req.body.obtained-req.body.previous_amt)/req.body.totalItemCount*100).toFixed(2)+"% ("+(req.body.itemCount+req.body.obtained-req.body.previous_amt)+"/"+req.body.totalItemCount+")"
}
}]
})})
.then((data)=>{

Loading…
Cancel
Save