Advertisement
Guest User

iksde

a guest
Jan 24th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. -- [[ www.solid-scripts.com ]]
  2.  
  3. -- [[ BACKPACKS ]]
  4. -- [1] Main Backpack
  5. -- [2] Potions Backpack
  6. -- [3] Stackable Backpack
  7. -- [4] Non-Stackable Backpack
  8. -- [5] Gold Backpack
  9.  
  10. -- [[ DEPOSIT ]]
  11. -- [1] Backpack (Creature Products)
  12. -- [2] Backpack (Rares)
  13.  
  14. -- [[ SETTINGS ]]
  15.  
  16. _mainBackpack = 'Red Backpack' -- name of main backpack
  17. _suppliesBackpack = 'Yellow Backpack' -- name of mana backpack
  18. _stackBackpack = 'Purple Backpack' -- name of backpack for stackable items
  19. _rareBackpack = 'Blue Backpack' -- name of backpack for non-stackable items
  20. _goldBackpack = 'Golden Backpack' -- name of backpack for gold
  21.  
  22.  
  23. _useManaPotions = true -- buy mana potions
  24. _manaPotions = 'mana potion' -- name or id
  25. _manaMaximum = 1500 -- how many mana potions to buy
  26. _manaMinimum = 200 -- how many potions to leave the spawn
  27.  
  28.  
  29. _useHealthPotions = true -- buy health potions
  30. _healthPotions = 'ultimate health potion' -- name or id
  31. _healthMinimum = 30 -- how many health potions to buy
  32. _healthMaximum = 200 -- how many potions to leave the spawn
  33.  
  34. _useRunes = true
  35. _rune = 'avalanche rune' -- name or id
  36. _runeMinimum = 1
  37. _runeMaximum = 35
  38.  
  39. _screenLevel = false -- Shoot screenshot upon level!
  40.  
  41. _monsterAlarm = true -- do you want to alarm when the boss is on screen?
  42. alarmMonsterName = "Tyrn" -- do not change, this is the only boss in the spawn
  43.  
  44. _useSoftBoots = false -- use softboots
  45. _normalBoots = 3079 -- id of 'normal' boots to equip while not using soft boots
  46.  
  47. _withdrawFood = false -- withdraw brown mushrooms
  48.  
  49. _manaTargetOff = 100 -- how many potions to disable targeting
  50. _zPosOff = 14 -- what 'z' position to disable targeting (default 14)
  51.  
  52. _sortSupplies = true -- puts your supplies into supply bp
  53. _refillMana = true -- refill mana to almost full when no monsters on screen
  54. _dropVials = true -- drop empty vials on the floor when cap is below 200
  55.  
  56. _minimumCap = 150 -- minimum cap to leave spawn
  57. _logoutStamina = 16 -- how many hours of stamina to logout [0 to disable]
  58.  
  59. -- [[SHOOTER SETTINGS ]]
  60.  
  61. _utitoTempo = true -- Cast Utito Tempo before Exoris
  62. _PvPSafe = false -- PvP Safe Mode for Hardcore Servers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement