Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. Trigger: ^You suddenly perceive the vague outline of an aura of rebounding around (\w+).$
  2.  
  3. Code:
  4. if target == matches[2] then
  5. rebounding = true
  6. echo("\n ===== REBOUNDING =====")
  7. echo("\n ===== REBOUNDING =====")
  8. echo("\n ===== REBOUNDING =====")
  9. echo("\n ===== REBOUNDING =====")
  10. else
  11. end
  12. -- Not echoing
  13.  
  14. Trigger: ^(\w+)'s aura of weapons rebounding disappears.$
  15.  
  16. Code:
  17. if target == matches[2] then
  18. rebounding = false
  19. else
  20. end
  21.  
  22. Trigger: ^You whip a bizarrely twisted sitara through the air in front of (\w+), to no effect.$
  23.  
  24. code (same as above)
  25.  
  26. Trigger: ^You raze (\w+)'s aura of rebounding with a bizarrely twisted sitara.$
  27.  
  28. code (same as above)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement