Advertisement
ppgab

Untitled

Aug 1st, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.55 KB | None | 0 0
  1. --//SUPPLIES//--
  2. -- In your main Backpack : First found BP = GOLD, Second = LOOT, Third = STACK.
  3. -- After the third it will open all the Extra backpacks you have chosen.
  4. -- Create a new Extra by typing Extra[n] and assigning it to sort a supply below
  5.  
  6. Extra[1]    =       "mushroom backpack"
  7. Extra[2]    =       "orange backpack"
  8. --[[      
  9. Options = MagicShop[n] AmmoShop[n] Withdraw[n] Remember to start at [1] into [2], etc.
  10. Sub options:
  11.     MagicShop/AmmoShop = {"name", buy =n, leave(optional) =n, sort(optional) =Extra.x}
  12.     Withdraw = {"name", withdraw = n, from =n, leave(optional) =n, sort(optional) = Extra.x }
  13.  
  14. You can delete something you don't want, it will be considered false/0.
  15. ]]
  16. MagicShop[1] = { "mana potion", buy = 50, leave = 450, sort = Extra[1]}
  17. MagicShop[2] = { "strong health potion", buy = 20, leave = 50, sort = Extra[1]}
  18.  
  19. AmmoShop[1] = { "crystalline arrow", buy = 2000, leave = 300, sort = Extra[2]}
  20.  
  21. Withdraw[1] = { "stealth ring", withdraw = 10, from = 3}
  22.  
  23. LeaveCap    =   80               -- Minimum cap
  24. logStamina  =   true             -- Logout if stamina is lower than 16H?
  25. hideEq      =   true             -- Hide your equipment?
  26.  
  27. --//FLOORS//--
  28. DragonLord1 =   false            -- Kill the one DL at +2? (waste)
  29. DragonLord2 =   false            -- Kill the other DLs at -1? (Waste)
  30.  
  31. --//TOOLS//--
  32. ScreenShots =   true      
  33. _HUD        =   true              
  34.  
  35. -- *Advanced Options can be found down below, optional.
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DropVial    =   true            -- Drop vials if cap is lower than LeaveCap?
  71. DropGold    =   true            -- Drop 100 gold coins if cap is lower than LeaveCap?
  72. -- List to Deposit:
  73. dpList = {
  74. {3028,0}, -- Small Diamond
  75. {3061,0}, -- Life Crystal
  76. {3322,1}, -- Dragon Hammer
  77. {11457,0}, -- Dragon's Tail
  78. {5877,0}, -- Green Dragon Leather
  79. {3071,1}, -- Wand Of Inferno
  80. {5920,0}, -- Green Dragon Scale
  81. {3297,1}, -- Serpent Sword
  82. {3416,1}, -- Dragon Shield
  83. {7430,1}, -- Dragonbone Staff
  84. {3428,1}, -- Tower Shield
  85. {3051,1}, -- Energy Ring
  86. {3029,0}, -- Small Sapphire
  87. {3386,1}, -- Dragon Scale Mail
  88. {5948,0}, -- Red Dragon Leather
  89. {2903,1}, -- Golden Mug
  90. {3280,1}, -- Fire Sword
  91. {5882,0}, -- Red Dragon Scale
  92. {3373,1}, -- Strange Helmet
  93. {3392,1}, -- Royal Helmet
  94. {7399,1}, -- Dragon Lord Trophy
  95. {7402,1}, -- Dragon Slayer
  96. {9651,0} -- Scorpion Tail
  97. }
  98.  
  99. hud.right.distanceFromTop = 30
  100. hud.left.distanceFromTop = 300
  101.  
  102. if not loaded then print("Don't execute the [CONFIG] file") end -- Don't change
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement