Advertisement
lol

fgahdsg

lol
Nov 21st, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. aff // alias that sets afflictions to the stringlist
  2. #var %1 1 // setting the variable to true
  3. #deli alist %1 // adding the var to stringlist
  4. ----------------------------------------------------------
  5. You sit yourself down. // trigger for alias aff
  6. aff prone // setting prone to stringlist
  7. cure_index // cure alias
  8. ----------------------------------------------------------
  9. anti_prone // alias for standing if possible
  10. #if (%ismember(sleeping, @alist)!=1 and %ismember(webbed, @alist)!=1 and %ismember(paralysis, @alist)!=1 and %ismember(prone, @alist)=1) {stand}
  11. ----------------------------------------------------------
  12. #if (%ismember(%1, @alist)) {
  13. #echo fired
  14. #switch (%1 = "sleeping") {wake}
  15. (%1 = "webbed") {writhe;#var webbed .5}
  16. (%1 = "prone") {anti_prone}
  17. (%1 = "disrupted") {concentrate}
  18. (%1 = "sadness") {}
  19. (%1 = "dementia") {}
  20. (%1 = "hallucinations") {}
  21. (%1 = "confusion") {}
  22. (%1 = "paranoia") {}
  23. (%1 = "hatred") {}
  24. (%1 = "blood_curse") {}
  25. (%1 = "selfpity") {}
  26. (%1 = "stupidity") {}
  27. (%1 = "dizziness") {}
  28. (%1 = "shyness") {}
  29. (%1 = "epilepsy") {}
  30. (%1 = "impatience") {}
  31. (%1 = "resonance") {}
  32. (%1 = "dissonance") {}
  33. (%1 = "baldness") {}
  34. (%1 = "clumsiness") {}
  35. (%1 = "magic_impaired") {}
  36. (%1 = "hypochondria") {}
  37. (%1 = "weariness") {}
  38. (%1 = "asthma") {}
  39. (%1 = "sensitivity") {}
  40. (%1 = "blood_poisoning") {}
  41. (%1 = "limpveins") {}
  42. (%1 = "fear_of_commitment") {}
  43. (%1 = "recklessness") {}
  44. (%1 = "masochism") {}
  45. (%1 = "agoraphobia") {}
  46. (%1 = "loneliness") {}
  47. (%1 = "vertigo") {}
  48. (%1 = "claustrophobia") {}
  49. (%1 = "berserking") {}
  50. (%1 = "bodyodor") {}
  51. (%1 = "haemophilia") {}
  52. (%1 = "sunlight_allergy") {}
  53. (%1 = "mental_disruption") {}
  54. (%1 = "physical_disruption") {}
  55. (%1 = "vomiting") {}
  56. (%1 = "thin_blood") {}
  57. (%1 = "rend") {}
  58. (%1 = "lethargy") {}
  59. (%1 = "addiction") {}
  60. (%1 = "overwhelming_pride") {}
  61. (%1 = "pacifism") {}
  62. (%1 = "peace") {}
  63. (%1 = "lovers_effect") {}
  64. (%1 = "superstition") {}
  65. (%1 = "generosity") {}
  66. (%1 = "justice") {}
  67. (%1 = "paralysis") {}
  68. (%1 = "mirroring") {}
  69. (%1 = "crippled_body") {}
  70. (%1 = "crippled") {}
  71. (%1 = "slickness") {}
  72. (%1 = "heartflutter") {}
  73. (%1 = "earthrot") {}
  74. (%1 = "plodding") {}
  75. (%1 = "idiocy") {}
  76. (%1 = "aeon") {}
  77. (%1 = "hellsight") {}
  78. (%1 = "deadening") {}
  79. (%1 = "disfigurement") {}
  80. (%1 = "voyria") {}
  81. (%1 = "anorexia") {}
  82. (%1 = "gorge") {}
  83. (%1 = "blood_effusion") {}
  84. (%1 = "phlegm_effusion") {}
  85. (%1 = "yellow_bile_effusion") {}
  86. (%1 = "black_bile_effusion") {}
  87. (%1 = "indifference") {}
  88. (%1 = "stuttering") {}
  89. (%1 = "blurry_vision") {}
  90. (%1 = "heavy_bruising") {}
  91. (%1 = "broken_limbs") {}
  92. (%1 = "crushed_elbow") {}
  93. (%1 = "crushed_knee") {}
  94. (%1 = "bruising") {}
  95. (%1 = "selarnia") {}
  96. (%1 = "burning") {}
  97. (%1 = "throatslash") {}
  98. (%1 = "frozen") {}
  99. (%1 = "shivering") {}
  100. (%1 = "crushed_chest") {}
  101. (%1 = "mangled_limbs") {}
  102. (%1 = "smashed_throat") {}
  103. (%1 = "spinal_rip") {}
  104. }
  105. #if (%ismember(%1, @dlist)=0) {
  106. #switch (@class = "syssin") {
  107. #switch (%1 = "shadowsight") {shadowsight}
  108. (%1 = "warding") {warding}
  109. (%1 = "ghost") {}
  110. }
  111. (@class = "cabalist") {
  112. #switch (%1 = "spheres") {}
  113. (%1 = "link") {}
  114. (%1 = "shroud")
  115. }
  116. (@class = "monk") {
  117. #switch (%1 = "link") {}
  118. }}
  119.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement