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’)
Hi, you can use JS with $(eval) and Math.random() for that, something like this:
$(user) $(eval sizes=[‘A’, ‘B’, ‘C’, ‘D’, ‘E’, ‘F’]; ''s boob size is ’ + sizes[Math.floor(Math.random() * sizes.length)]; )
I tried that command but it told me "Invalid or unexpected token [:1:8]
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)]; )
Oh. My. Days. it really works, man thank you so much, wish u the best man
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.