Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. -- [300+ M] East Glooth Bandits
  2. -- Script Version: 1.4
  3.  
  4. -- [Backpacks Layout]
  5. -- [1] Main
  6. -- [2] Stackable
  7. -- [3] Rares
  8. -- [4] Gold
  9. -- [5] Supplies
  10. -- [6] Ammo
  11.  
  12. -- [Depot Layout]
  13. -- [1] Depot Box I (Rares)
  14. -- [2] Depot Box II (Stackable)
  15. -- [3] Depot Box III (Amulets/Rings)
  16. -- [4] Depot Box IV (Ammo)
  17.  
  18. -- [BACKPACK SETUP]
  19.  
  20. _MainBP = 'Backpack' -- main backpack name?
  21. _StackBP = 'Camouflage Backpack' -- stackable backpack name?
  22. _RareBP = 'Orange Backpack' -- non-stackable backpack name?
  23. _GoldBP = 'Golden Backpack' -- gp/plat backpack name?
  24. _SuppBP = 'Blue Backpack' -- potions backpack name?
  25.  
  26. -- [SUPPLY SETUP]
  27.  
  28. _UseMana = true -- do you want to buy mana potions? (set "false" to disable)
  29. _ManaName = 'ultimate mana potion' -- name or id.
  30. _ManaMin = 80 -- how many potions to leave the spawn?
  31. _ManaMax = 200 -- how many mana potions to buy?
  32.  
  33. _UseAreaRune = false -- buy and use area runes to kill monsters. (set "false" to disable)
  34. _AreaRuneName = 'great fireball rune' -- name or id.
  35. _AreaRuneMin = 300 -- how many runes to leave the spawn?
  36. _AreaRuneMax = 1200 -- how many runes to buy?
  37.  
  38. _UseAttackRune = true -- buy and use attack runes to kill monsters. (set "false" to disable)
  39. _AttackRuneName = 'sudden death rune' -- name or id.
  40. _AttackRuneMin = 50 -- how many runes to leave the spawn?
  41. _AttackRuneMax = 1500 -- how many runes to buy?
  42.  
  43. _MinCap = 100 -- minimum cap to go refill?
  44.  
  45. _MinStamina = 16 -- stamina to stop hunting.
  46. _SkillTrain = "magic" -- skill to train in offline trainers.
  47.  
  48. -- [HEALER SETUP]
  49.  
  50. _Healing = {
  51.  
  52. {spell = "exura vita", mana = 160, hp = 65, enabled = true},
  53. {spell = "exura gran", mana = 70, hp = 95, enabled = true},
  54.  
  55. }
  56.  
  57. -- [HUNT SETUP]
  58.  
  59. _Vocation = "sorcerer" -- what's your vocation? (druid/sorcerer)
  60. _UseMaxSpells = true -- do you want to use UE's and ultimate strikes?
  61.  
  62. _PvPSafe = true -- avoid area spells near players?
  63. _AntiRS = true -- close client if injust someone?
  64.  
  65. _UseSoft = false -- use soft boots?
  66. _ManaSoft = 95 -- mana percent to start using soft boots.
  67. _NormalBoots = "boots of haste" -- boots name/id (e.g: "boots of haste" or 3079).
  68. _NSoft = 1 -- how many softs boots you have?
  69.  
  70. _UseRing = true -- auto equip rings?
  71. _RingID = "ring of healing" -- ring name/id (e.g: "life ring" or 3052).
  72. _WithdrawRing = false -- withdraw rings from depot box III?
  73. _RingMax = 5 -- number of rings to withdraw.
  74.  
  75. _UseAmul = false -- auto equip amulets?
  76. _AmulID = "garlic necklace" -- ring name/id (e.g: "garlic necklace" or 3083)
  77. _WithdrawAmul = false -- withdraw amulets from depot box III?
  78. _AmulMax = 5 -- number of amults to withdraw.
  79.  
  80. _ChangeGP = true -- change gold for platinum and platinum for crystal? (OT)
  81. _SellItems = true -- sell items on NPC
  82.  
  83. -- [ SETUP END ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement