Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.10 KB | None | 0 0
  1. <triggers>
  2.   <trigger
  3.   expand_variables="y"
  4.   group="AI_knight_envenom_hit"
  5.   match="^Lightning\-quick\, you jab @target with (.*?)\.$"
  6.   regexp="y"
  7.   send_to="12"
  8.   sequence="100"
  9.  >
  10.   <send>if (curleftvenom == nextleftvenom) then
  11.  knightAI:giveaff("left")
  12. elseif (currightvenom == nextrightvenom) then
  13.  knightAI:giveaff("right")
  14. end</send>
  15.   </trigger>
  16. </triggers>
  17.  
  18.  
  19.  
  20. <triggers>
  21.   <trigger
  22.   enabled="y"
  23.   expand_variables="y"
  24.   group="AI_vamp_envenom_hit"
  25.   match="^Lightning\-quick\, you jab @target with (.*?)\.$"
  26.   regexp="y"
  27.   send_to="12"
  28.   sequence="100"
  29.  >
  30.   <send>if (curvenom == nextvenom) then
  31.  vampAI:giveaff("venom")
  32. end</send>
  33.   </trigger>
  34. </triggers>
  35.  
  36.  
  37. <triggers>
  38.   <trigger
  39.   enabled="y"
  40.   expand_variables="y"
  41.   group="AI_vamp"
  42.   match="^You lock your gaze to @target\'s for the briefest moment and sharply whisper a word of command\, driving the imperative into (.*?) mind with the force of your supernatural will\.$"
  43.   regexp="y"
  44.   send_to="12"
  45.   sequence="100"
  46.  >
  47.   <send>vampAI:giveaff("mentis")</send>
  48.   </trigger>
  49. </triggers>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement