Advertisement
Guest User

script

a guest
Nov 27th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. -- [[ SETTINGS ]] --
  2.  
  3. Config.Vocation = 'knight'
  4.  
  5. Config.Backpacks = {
  6. ['1. Supplies'] = 'Blue Backpack',
  7. ['2. Loot'] = 'Camouflage Backpack',
  8. ['3. Gold'] = 'Purple Backpack'
  9. }
  10.  
  11. Config.Potions = {
  12. { name = 'mana potion', max = 110, min = 10 },
  13. { name = 'health potion', max = 20, min = 4 }
  14. }
  15.  
  16. Config.Tasker = {
  17. { enabled = true, monster = 'tarantula', amount = 300 }
  18. }
  19.  
  20. Config.Cap = 30
  21.  
  22. Config.Money = {
  23. Extra = 190,
  24. Round = 100
  25. }
  26.  
  27. Config.RefillMana = {
  28. Enabled = false,
  29. Range = 5
  30. }
  31.  
  32. Config.DropVials = {
  33. Enabled = true,
  34. Cap = 100,
  35. Slots = 3
  36. }
  37.  
  38. Config.Stamina = {
  39. Enabled = true,
  40. Hours = 20,
  41. Xlog = false
  42. }
  43.  
  44. Config.Screenshot = {
  45. Level = true
  46. }
  47.  
  48. Config.Chat = {
  49. Enabled = true
  50. }
  51.  
  52. Config.Withdraw = {
  53. { name = 'brown mushroom', amount = 50, from = 2, to = 0, enabled = false }
  54. }
  55.  
  56. Config.SoftBoots = {
  57. Enabled = false,
  58. PercentEquip = 60,
  59. PercentDequip = 99,
  60. Normal = 3079
  61. }
  62.  
  63. Config.HUD = {
  64. enabled = true,
  65. hideList = false,
  66. icons = false,
  67. file = '[30+ EK] Port Hope Tarantulas'
  68. }
  69.  
  70. -- [[ ADVANCED SETTINGS ]] --
  71.  
  72. Config.SortItems = {
  73. { name = 'mana potion', index = 1 },
  74. { name = 'health potion', index = 1 }
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement