Im trying to fix it but im lost as hell, could anyone please tell me what i did wrong in this command?
$(user)'s boob size is $(random.pick 'A' 'B' 'C' 'D' 'E' 'F')
Im trying to make a !boob size command but it isnt working properly
4 replies
Sunlit Snake said:
$(user) $(eval sizes=[‘A’, ‘B’, ‘C’, ‘D’, ‘E’, ‘F’]; ''s boob size is ’ + sizes[Math.floor(Math.random() * sizes.length)]; )
Ah, sorry, didn't realize that one of the quotes that needed to be escaped ('s) was corrected on the reply:
$(user) $(eval sizes=['A', 'B', 'C', 'D', 'E', 'F']; '\'s boob size is ' + sizes[Math.floor(Math.random() * sizes.length)]; )