Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. <reflexbundle modified="2011-02-12 05:27:33 GMT-08:00" author="Emmet">
  2. <group name="zachs_sipper">
  3. <var name="eat_moss">0</var>
  4. <var name="elixer_balance">1</var>
  5. <var name="max_health">500</var>
  6. <var name="max_mana">550</var>
  7. <var name="moss_health">250</var>
  8. <var name="paused">0</var>
  9. <var name="set_moss">#set moss_health $1</var>
  10. <var name="temphp">500</var>
  11. <var name="tempmp">550</var>
  12. <alias name="eatmoss">outr moss
  13. eat moss</alias>
  14. <alias name="pm">#if $eat_moss{
  15. #set eat_moss 0
  16. #echo [ System ]: Will not eat moss!
  17. } else { #if $eat_moss=0{
  18. #set eat_moss 1
  19. #echo [ System ]: Will outr/eat moss when lower than $moss_health health}
  20. }</alias>
  21. <alias name="ps">#if $paused{
  22. #set paused 0
  23. #echo [ System ]: Sipper unpaused!
  24. } else { #if $paused=0{
  25. #set paused 1
  26. #echo [ System ]: Sipper Paused}
  27. }</alias>
  28. <alias name="set_moss">#set moss_health $1
  29. #echo
  30. #echo
  31. #echo |-| Setting Moss eat to $moss_health Health |-|</alias>
  32. <alias name="sip_install">#echo |-|Installing the auto-sipper, hold tight!.|-|
  33. config screenwidth 80
  34. config prompt all
  35. #wait 1000
  36. #echo
  37. #echo
  38. #send score
  39. #echo [ Zach ] Enjoy this VERY basic sipper! hehe
  40. #wait 1000
  41. #echo
  42. #echo
  43. #echo
  44. #echo |-| Please set the amount of health you wish to eat moss at |-|
  45. #echo |-| You can do this by doing set_moss (A number between 1-$max_health) |-|
  46. #echo |-| Here is an example: set_moss 1500 |-|
  47. #echo |-| This will make you eat moss if you are LOWER than 1500 health |-|
  48. #echo
  49. #echo
  50. #echo |-| Alias-controll, (ps) - Pauses/Unpauses the sipper|-|
  51. #echo |-| (pm) - Turns on/Off moss eating! |-|
  52.  
  53. </alias>
  54. <trig name="Health: {d}/{d} Mana: {d}/{d}">#set max_health $2
  55. #set max_mana $4</trig>
  56. <trig name="The elixir heals and soothes you.">#highlight "bold green"
  57. #set elixer_balance 0</trig>
  58. <trig name="You feel your health and mana replenished.">#highlight "bold green"
  59. #set moss_balance 0</trig>
  60. <trig name="You may drink another health or mana elixir.">#highlight "bold green"
  61. #set elixer_balance 1</trig>
  62. <trig name="You may eat another bit of irid moss.">#highlight "bold green"
  63. #set moss_balance 1</trig>
  64. <trig name="You take a drink from a {*} vial.">#if "The elixir heals and soothes you." #set elixer_balance 0
  65. #if "Your mind feels stronger and more alert." #set elixer_balance 0</trig>
  66. <trig name="You take a drink from an {*} vial.">#if "The elixir heals and soothes you." #set elixer_balance 0
  67. #if "Your mind feels stronger and more alert." #set elixer_balance 0</trig>
  68. <trig name="Your mind feels stronger and more alert.">#highlight "bold green"
  69. #set elixer_balance 0</trig>
  70. <trig name="{d}h, {d}m, {d}e, {d}w">#set temphp $1
  71. #set tempmp $2
  72. #if $paused=0{
  73. #if $temphp > $max_health #send score
  74. #if $tempmp > $max_mana #send score
  75. #if $elixer_balance=1{
  76. #if $temphp < $max_health sip health
  77. }
  78. #if $elixer_balance=1{
  79. #if $tempmp < $max_mana sip mana
  80. }
  81. }
  82. #if $eat_moss=1{
  83. #if $moss_balance=1{
  84. #if $temphp > $moss_eat eatmoss
  85. }
  86. }</trig>
  87. </group>
  88. <group name="default"/>
  89. </reflexbundle>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement