Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. #alias cast_attempt {
  2. cast $current_spell;
  3. #delay {cast_attempt} {cast_failed} {10}
  4. };
  5.  
  6. #alias cast_done {
  7. #undelay cast_attempt;
  8. #var {current_spell} {};
  9. cast_next_spell
  10. };
  11.  
  12. #alias cast_reset {
  13. #undelay cast_attempt;
  14. #var {current_spell} {};
  15. #list {spell_queue} {create};
  16. };
  17.  
  18. #alias cast_failed {
  19. #undelay cast_attempt;
  20. #regex {$current_spell} {'%%%1' %%%2} {
  21. #if {"&2" != "" && "&2" != "$char_name"} {
  22. tell &2 &1: FAILED
  23. } {
  24. tell group '&1: FAILED
  25. }
  26. } {
  27. #showme CAST-FAILED STUCK! $current_spell
  28. };
  29. ca
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement