Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. API.addEventListener(API.USER_JOIN, join);
  2. function join(user)
  3. {
  4. API.sendChat("@" + user.username + " Welcome to The  BASS-effect  Dubstep!")
  5. }
  6.  
  7. API.addEventListener(API.USER_LEAVE, leave);
  8. function leave(user)
  9. {
  10. API.sendChat(user.username + " left the room")
  11. }
  12.  
  13. API.addEventListener(API.MOD_SKIP, skip);
  14. function skip(user)
  15. {
  16. API.sendChat("Sorry, your song has violated one of the room's rules.")
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement