Advertisement
AEAEAEAEarray

send function

Sep 18th, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function send(string, delay) {
  2.     if (!delay) {
  3.         MPP.chat.send(string)
  4.     } else {
  5.         setTimeout(()=>{
  6.             MPP.chat.send(string)
  7.         }, delay)
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement