Code for variable response

I want to create a team by type,
“user is a 1-100% bird.” And if the number is less than 50 then it is not a bird, but if it is more then a bird. help plz

Hey @MR_COUBER!

So you want a 50/50 chance of someone to be a bird, the simplest way to go about it is the following:

$(eval b=[`a bird!`,`NOT a bird.`];`$(user) is ${b[Math.floor(Math.random()*2)]}`)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.