Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. function queuestuff2(queuecommand2)
  2. send("clearqueue class` " ..queuecommand2)
  3. end
  4.  
  5. function voicestack(vvoice)
  6. song_venom = vvoice
  7. if affstrack.score.deaf == 100 and song_venom == "haiku" or song_venom == "epic" and affstrack.score.deaf == 100 then
  8. systemAction2= "queue add class recite " .. song_venom .. " at " .. target .. " "
  9. elseif affstrack.score.deaf == 100 and song_venom ~= "haiku" and song_venom ~= "epic" then
  10. systemAction2= "queue add class sing " .. song_venom .. " at " .. target .. " "
  11. end
  12. end
  13.  
  14.  
  15. function voiceVenoms()
  16.  
  17. vvoice = {nil}
  18.  
  19. if affstrack.score.impatience<100
  20. then table.insert(vvoice,"limerick")
  21. end
  22. if affstrack.score.impatience >= 50 and left_venom == "kalmia" then
  23. table.insert(vvoice,"epic")
  24. end
  25. if affstrack.score.impatience >= 50 and affstrack.score.asthma > 50 and affstrack.score.slickness >= 50 then
  26. table.insert(vvoice,"qasida")
  27. end
  28. if affstrack.score.paralysis<100 and left_venom ~= "curare" then
  29. table.insert(vvoice,"epic")
  30. end
  31. if affstrack.score.slickness >= 50
  32. then table.insert(vvoice,"qasida")
  33. end
  34. if affstrack.score.clumsiness<50
  35. then table.insert(vvoice,"maqam")
  36. end
  37. if affstrack.score.impatience<100
  38. then table.insert(vvoice,"limerick")
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement