Advertisement
Guest User

Untitled

a guest
May 25th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <triggers>
  2. <trigger
  3. enabled="y"
  4. group="bt_tendril"
  5. match="A tendril of Kethuru suddenly explodes!"
  6. send_to="12"
  7. sequence="100"
  8. >
  9. <send>SetVariable("bt_shockwave_tendril", "dead")</send>
  10. </trigger>
  11. <trigger
  12. enabled="y"
  13. group="bt_tendril"
  14. match="Drawn by the flux of energy, a tendril of Kethuru suddenly wanders into the nearby area."
  15. send_to="12"
  16. sequence="100"
  17. >
  18. <send>SetVariable("bt_shockwave_tendril", "alive")
  19. SetVariable("bt_shockwave", "right")
  20. Send("pilot steer east")</send>
  21. </trigger>
  22. <trigger
  23. custom_colour="11"
  24. enabled="y"
  25. group="bt_tendril"
  26. match="With a ripple, Crown of the Empire frees itself from its shockwave."
  27. send_to="12"
  28. sequence="100"
  29. >
  30. <send>if GetVariable("bt_shockwave_tendril")=="alive" then
  31. if GetVariable("bt_shockwave")=="left" then
  32. Send("pilot steer east")
  33. SetVariable("bt_shockwave", "right")
  34. else
  35. Send("pilot steer west")
  36. SetVariable("bt_shockwave", "left")
  37. end
  38. end</send>
  39. </trigger>
  40. </triggers>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement