Loopy DonkeyOriginal postAug 1, 2020Not familiar with javascript at all.I need a command that randomly outputs one of two responses with a 96:4 chance.Thanks.
Quirky FoxAug 1, 2020Type this in you chat!addcom !(COMMAND_NAME) $(eval var random=(Math.floor(Math.random()*100)+1);random<=96?"RESPONSE_ONE":"RESPONSE_TWO")The first response is the more common one.