Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. if $charactername = CHARACTERNAME then
  2. {
  3. #First number is prep mana, second number is charge mana, third number is harness mana
  4. var mana 4|1|0
  5. var cambrinth ring
  6. }
  7.  
  8. if $charactername = Orend then
  9. {
  10. var mana 2|1|0
  11. var cambrinth ring
  12. }
  13.  
  14.  
  15.  
  16.  
  17. loop:
  18. if $mana < 25 then goto Wait
  19. send prep heal %mana(0)
  20. waitforre trace a careful sigil|You raise your arms skyward|mutter a foul-sounding phrase to yourself|trace a curving sigil|mutter blasphemies to yourself|mutter incoherently to yourself while preparing|wailing of lost souls accompanies|blue frost crackles up your arms|Your heart skips a beat|newfound fluidity of your mind|orange flames blaze between your fingertips|You clench your hands|You hold out your arms to either side as|You whisper the final word of your spell so that none may notice your effort|You clap|You speak|With rigid movements|You close yours eyes|With tense movements|You let your concentration|You make a holy gesture|You close your eyes|You trace a hasty sigil in the air|is now set at|You begin chanting|You recite|You trace an angular sigil|You trace a geometric sigil|With meditative movements|you begin to chant|You release an accompaniment|You begin to chant
  21. gosub Cambrinth
  22. gosub Harness
  23. waitfor You feel fully prepared
  24. send cast
  25. matchre loop The external|The internal|too mentally fatigued|backfires|backfire
  26. match end completely healed
  27. matchwait
  28.  
  29. Wait:
  30. pause 30
  31. goto loop
  32.  
  33. end:
  34. exit
  35.  
  36. Harness:
  37. if %mana(2) = 0 then return
  38. if "%mana(2)" = "" then return
  39. send harness %mana(2)
  40. waitforre Roundtime|You strain|You are in no condition to do that
  41. return
  42.  
  43. Cambrinth:
  44. if %cambrinth = none then return
  45. if %mana(1) = 0 then return
  46. if "%mana(1)" = "" then return
  47. send charge my %cambrinth %mana(1)
  48. waitforre Roundtime|You strain|You are in no condition to do that
  49. send invoke my %cambrinth spell
  50. waitforre Roundtime|are in no condition
  51. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement