Hi! I’m trying to have a command where users can put the command followed by three values and get a numerical response (this response being the highest possible number of full teams remaining in a BR) For example:
!fullteams T P S would calculate the ceiling of (P-T)/(S-1). Here’s what I have:
$(eval Math.ceil(($(2)-$(1))/($(3)-1)) “possible full teams remaining!”)
Right now it just prints exactly that out instead of calculating. What am I doing wrong?
Thanks!