Guest User

Untitled

a guest
May 26th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. TRIGGER: ^\(Web\)\: \w+ says\, \"(\w+) has been disturbed of their (.+).\"$
  2.  
  3.  
  4. if matches[3] == "confidence" then
  5.  
  6. addEAff(matches[2], "selfpity")
  7. addEAff(matches[2], "stupidity")
  8. addEAff(matches[2], "dizziness")
  9. addEAff(matches[2], "epilepsy")
  10. addEAff(matches[2], "DISCONFIDENCE")
  11.  
  12. elseif matches[3] == "sanity" then
  13.  
  14. addEAff(matches[2], "sadness")
  15. addEAff(matches[2], "hatred")
  16. addEAff(matches[2], "confusion")
  17. addEAff(matches[2], "impatience")
  18. addEAff(matches[2], "DISSANITY")
  19.  
  20. elseif matches[3] == "impulse" then
  21. addEAff(matches[2], "commitment")
  22. addEAff(matches[2], "masochism")
  23. addEAff(matches[2], "berserking")
  24. addEAff(matches[2], "recklessness")
  25. addEAff(matches[2], "DISIMPULSE")
  26.  
  27. elseif matches[3] == "inhibition" then
  28. addEAff(matches[2], "pride")
  29. addEAff(matches[2], "lovers")
  30. addEAff(matches[2], "peace")
  31. addEAff(matches[2], "justice")
  32. addEAff(matches[2], "DISINHIBITION")
  33.  
  34. end
Add Comment
Please, Sign In to add comment