Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. ^You are currently on the \w+ stanza of \"(.+)\"\.$
  2.  
  3. system.currentSong = matches[2]
  4. system.doRefrain = true
  5. sysEcho("Automatic refrain has been enabled")
  6. enableTimer("Auto Song Refrain")
  7. mm.removebalanceful("Song Refrain")
  8.  
  9.  
  10. if system.doRefrain == true then
  11. if mm.bals.balance and mm.bals.equilibrium and not mm.affl.paralysis then
  12. send("perform refrain " .. system.currentSong)
  13. else mm.addbalanceful("Song Refrain", doRefrainSong)
  14. end
  15. end
  16.  
  17. Failsafes:
  18.  
  19. ^\".+\" you sing, somberly playing .+\.$
  20. ^\".+\" you sing, bringing light .+\.$
  21. You must start a song before being able to play a refrain.
  22.  
  23. mm.removebalanceful("Song Refrain")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement