Advertisement
nonogamer9

BonziBOT Version 69420

Sep 29th, 2023 (edited)
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. var output = "Me when I {VERB} {TERM}. Like {INSULT}, if you {VERB} {TERM}, {MAYHAPS} {DESCRIBE} {TERM}.";
  2. // {VERB} {TERM} {INSULT} {MAYHAPS} {DESCRIBE}
  3. // credit to Shoebill on discord
  4. const verb = ['got that','get rid of that level 99','that freaking','got that gyatt damn','looksmax','griddy on that','am bricked up like a'];
  5. const term = ['gyatt','rizz','skibidi rizz','wocky slush','ohio rizz','camera man','opp','skibidi toilet','ohio','miller grove','sigma','mrbeast','real live charity chat xqc goalie messi','thumbnail','temu code','W sigma','fortnite','minecraft','jumbo josh','huggy wuggy','peppino'];
  6. const insult = ['boi','L rizz ahh'];
  7. const mayhaps = ['well','maybe','then again'];
  8. const describe = ['level 12','bussin','W rizz','like a','not clickbait','super real','level 69 like a final'];
  9.  
  10. function random(array) {
  11. let out = array[Math.floor(Math.random() * array.length)];
  12.  
  13. return out;
  14. }
  15.  
  16. function replaceAll(string) {
  17.  
  18. while (string.includes('{VERB}')){
  19. string = string.replace('{VERB}', random(verb));
  20. }
  21. while (string.includes('{TERM}')){
  22. string = string.replace('{TERM}', random(term));
  23. }
  24. while (string.includes('{DESCRIBE}')){
  25. string = string.replace('{DESCRIBE}', random(describe));
  26. }
  27. while (string.includes('{INSULT}')){
  28. string = string.replace('{INSULT}', random(insult));
  29. }
  30. while (string.includes('{MAYHAPS}')){
  31. string = string.replace('{MAYHAPS}', random(mayhaps));
  32. }
  33.  
  34. return string;
  35. }
  36.  
  37. setInterval(() => {
  38. socket.emit("talk",{text: replaceAll(output)})
  39. },20000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement