Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- [Luaa's DQ Auto Farm]
- If you encounter any problems create a support ticket in the discord.
- Thank you for purchasing my script <3
- ]]
- _G.license = "K3T7N-G1DAE-APQ5F-I982Z" -- Your license key.
- _G.disableDelay = true -- if you are getting stuck on the lobby, enable this
- --[[
- [Dungeons]
- Force Dungeon: Self explanatory
- Force Difficultty: Self explanatory
- Enabled: A table with all of the dungeons which you can make enabled or disabled by changing true/false.
- ]]
- _G.dungeons = {
- ["Force Dungeon"] = "",
- ["Force Difficulty"] = "",
- ["Enabled"] = {
- ["Desert Temple"] = true,
- ["Winter Outpost"] = true,
- ["Pirate Island"] = true
- }
- }
- --[[
- [Auto Create Explanation]
- Enabled: Self explanatory
- Auto-Start: If the value is set to true, then the lobby will be created and the started , if the value is false then the lobby will be created but not started.
- Whitelist-Friends: If you would like the game to wait for your friend to join the party put your friends name in the table, if you do not want this to be enable leave it as {}
- The script waits for the first person to join then only will the second whitelist request be sent.
- Example: ["Whitelist-Friends"] = {"PotatoMan123"}
- Private: Makes the lobby private.
- Hardcore: Makes the lobby hardcore.
- ]]
- _G.autoCreate = {
- ["Enabled"] = true,
- ["Auto-Start"] = true,
- ["Whitelist-Friends"] = {},
- ["Private"] = true,
- ["Hardcore"] = true
- }
- --[[
- [Auto Sell Explanation]
- Enabled: Self explanatory.
- Rarity: The table contains all of the rarites you would not like to be sold, the item table bypasses the rarity check.
- Items: The value is a table which contains the rarity of the item you want to keep this bypasses the rarity check.
- If an item is not in the table, then it will be sold.
- ]]
- _G.autoSell = {
- ["Enabled"] = false,
- ["Rarity"] = {
- "Legendary",
- "Epic",
- },
- ["Items"] = {
- ["Godly Guardian Armor"] = {"Legendary", "Epic"},
- ["Godly Guardian Helmet"] = {"Legendary", "Epic"},
- }
- }
- loadstring(game:HttpGet("http://aigars.ga/api/newAQ.lua"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement