View difference between Paste ID: ns4kMrUT and TJaUt80F
SHOW: | | - or go back to the newest paste.
1
getgenv().Settings = {
2
    Lobby = {
3
        Safety = {
4
            WalkEnabled = false, 
5
            WalkTime = 10,
6
            HideNametag = false
7
        },
8
        
9
        Misc = {
10
            WaitTime = 0, --Wait before script activates
11
            AutoCollectDaily = true
12
        }
13
    },
14
15
    Dungeon = {
16
        HideNameplate = false,
17
        
18
        Configuration = {
19
            Hardcore = false,
20
            AutoSelectHighest = false
21
        },
22
        
23
        CustomDungeon = {
24
            Name = "Aquatic Temple",
25
            Difficulty = "Nightmare"
26
        },
27
    },
28
29
    Autofarm = {
30
        Walkspeed = 30, -- Higher than 30 is sometimes risky
31
        DistanceFromMobs = 50,
32
        AttackRange = 55,
33
        SmallTeleports = true, -- Autofarm won't work well on aquatic with this disabled
34
        Instakill = true,
35
36
        Experimental = {
37
            LimitSpellCasting = false
38
        }
39
    },
40
41
    AutoSell = {
42
        Enabled = false,
43
        SellTriplicatedSpells = true,
44
        KeepItemsLevelRequirement = 999,
45
        RaritiesToKeep = {"legendary", "epic"},
46
        ItemsToKeep = {
47
            ["Desert Fury"] = {"legendary"},
48
            ["Crystalized Greatsword"] = {"legendary"},
49
            ["Staff of the Gods"] = {"legendary"},
50
            ["Soul Stealer Greatsword"] = {"legendary"},
51
            ["Beastmaster Spell Scythe"] = {"legendary"},
52
            ["Beastmaster War Scythe"] = {"legendary"},
53
            ["Dual Phoenix Daggers"] = {"legendary"},
54
            ["Phoenix Greatstaff"] = {"legendary"},
55
            ["Sakura Greatstaff"] = {"legendary"},
56
            ["Sakura Katana"] = {"legendary"},
57
            ["Overlord's Rageblade"] = {"legendary"},
58
            ["Overlord's Manablade"] = {"legendary"},
59
            ["Kraken Slayer"] = {"legendary"},
60
            ["Sea Serpent's Wings"] = {"legendary"},
61
            ["Inventor's Greatsword"] = {"legendary"},
62
            ["Inventor's Spellblade"] = {"legendary"},
63
            ["Hextech Overloaded Greatstaff +30"] = {"legendary"},
64
            ["Dual Bioforged Drills +30"] = {"legendary"},
65
            ["Dual Bioforged Drills +30"] = {"legendary"},
66
            ["Dual Godforged Blades +30"] = {"legendary"},
67
            ["Godforged Greatstaff +30"] = {"legendary"},
68
            ["Twisted Wood Greatstaff +30"] = {"legendary"},
69
            ["Twisted Wood Greatsword +30"] = {"legendary"},
70
            ["Galactic Pike"] = {"legendary"},
71
            ["Galactic Dual Blades"] = {"legendary"},
72
            ["Red Knight Helmet"] = {"epic"},
73
            ["Red Knight Armor"] = {"epic"},
74
            ["Templar Hood"] = {"epic"},
75
            ["Templar Robes"] = {"epic"},
76
            ["Ice King's Warrior Helmet"] = {"epic"},
77
            ["Ice King's Warrior Armor"] = {"epic"},
78
            ["Ice King's Mage Hood"] = {"epic"},
79
            ["Ice King's Mage Robes"] = {"epic"},
80
            ["Ice King's Guardian Helmet"] = {"epic"},
81
            ["Ice King's Guardian Armor"] = {"epic"},
82
            ["Godly Warrior Helmet"] = {"epic"},
83
            ["Godly Warrior Armor"] = {"epic"},
84
            ["Godly Mage Helmet"] = {"epic"},
85
            ["Godly Mage Robes"] = {"epic"},
86
            ["Godly Guardian Helmet"] = {"epic"},
87
            ["Godly Guardian Armor"] = {"epic"},
88
            ["Titan-forged Warrior Helmet"] = {"epic"},
89
            ["Titan-forged Warrior Armor"] = {"epic"},
90
            ["Titan-forged Mage Helmet"] = {"epic"},
91
            ["Titan-forged Mage Armor"] = {"epic"},
92
            ["Titan-forged Guardian Helmet"] = {"epic"},
93
            ["Titan-forged Guardian Armor"] = {"epic"},
94
            ["Glorious Warrior Helmet"] = {"epic"},
95
            ["Glorious Warrior Armor"] = {"epic"},
96
            ["Glorious Mage Hood"] = {"epic"},
97
            ["Glorious Mage Armor"] = {"epic"},
98
            ["Glorious Guardian Helmet"] = {"epic"},
99
            ["Glorious Guardian Armor"] = {"epic"},
100
            ["Ancestral Warrior Helmet"] = {"epic"},
101
            ["Ancestral Warrior Armor"] = {"epic"},
102
            ["Ancestral Mage Hood"] = {"epic"},
103
            ["Ancestral Mage Armor"] = {"epic"},
104
            ["Ancestral Guardian Helmet"] = {"epic"},
105
            ["Ancestral Guardian Armor"] = {"epic"},
106
            ["Overlord's Warrior Hat"] = {"epic"},
107
            ["Overlord's Warrior Armor"] = {"epic"},
108
            ["Overlord's Mage Hat"] = {"epic"},
109
            ["Overlord's Mage Robes"] = {"epic"},
110
            ["Overlord's Guardian Hat"] = {"epic"},
111
            ["Overlord's Guardian Armor"] = {"epic"},
112
            ["Mythical Warrior Helmet"] = {"epic"},
113
            ["Mythical Warrior Armor"] = {"epic"},
114
            ["Mythical Mage Helmet"] = {"epic"},
115
            ["Mythical Mage Armor"] = {"epic"},
116
            ["Mythical Guardian Helmet"] = {"epic"},
117
            ["Mythical Guardian Armor"] = {"epic"},
118
            ["War-forged Warrior Helmet"] = {"epic"},
119
            ["War-forged Warrior Armor"] = {"epic"},
120
            ["War-forged Mage Helmet"] = {"epic"},
121
            ["War-forged Mage Armor"] = {"epic"},
122
            ["War-forged Guardian Helmet"] = {"epic"},
123
            ["War-forged Guardian Armor"] = {"epic"},
124
            ["Alien Warrior Helmet"] = {"epic", "rare"},
125
            ["Alien Warrior Armor"] = {"epic", "rare"},
126
            ["Alien Mage Helmet"] = {"epic", "rare"},
127
            ["Alien Mage Armor"] = {"epic", "rare"},
128
            ["Alien Guardian Helmet"] = {"epic", "rare"},
129
            ["Alien Guardian Armor"] = {"epic", "rare"},
130
            ["Commander's Warrior Helmet"] = {"epic", "rare"},
131
            ["Commander's Warrior Armor"] = {"epic", "rare"},
132
            ["Commander's Mage Helmet"] = {"epic", "rare"},
133
            ["Commander's Mage Armor"] = {"epic", "rare"},
134
            ["Commander's Guardian Helmet"] = {"epic", "rare"},
135
            ["Commander's Guardian Armor"] = {"epic", "rare"},
136
            ["Inventor's Warrior Helmet +30"] = {"epic"},
137
            ["Inventor's Warrior Armor +30"] = {"epic"},
138
            ["Inventor's Mage Helmet +30"] = {"epic"},
139
            ["Inventor's Mage Armor +30"] = {"epic"},
140
            ["Inventor's Guardian Helmet +30"] = {"epic"},
141
            ["Inventor's Guardian Armor +30"] = {"epic"},
142
            ["Heavenly Warrior Helmet +30"] = {"epic"},
143
            ["Heavenly Warrior Armor +30"] = {"epic"},
144
            ["Heavenly Mage Helmet +30"] = {"epic"},
145
            ["Heavenly Mage Armor +30"] = {"epic"},
146
            ["Heavenly Guardian Helmet +30"] = {"epic"},
147
            ["Heavenly Guardian Armor +30"] = {"epic"},
148
            ["Nature Warrior Helmet +30"] = {"epic"},
149
            ["Nature Warrior Armor +30"] = {"epic"},
150
            ["Nature Mage Helmet +30"] = {"epic"},
151
            ["Nature Mage Armor +30"] = {"epic"},
152
            ["Nature Guardian Helmet +30"] = {"epic"},
153
            ["Nature Guardian Armor +30"] = {"epic"},
154
            ["Lava King's Warrior Helmet"] = {"rare", "epic"},
155
            ["Lava King's Warrior Armor"] = {"rare", "epic"},
156
            ["Lava King's Mage Helmet"] = {"rare", "epic"},
157
            ["Lava King's Mage Armor"] = {"rare", "epic"},
158
            ["Molten Forged Mage Helmet"] = {"epic"},
159
            ["Molten Forged Mage Armor"] = {"epic"},
160
            ["Molten Forged Warrior Helmet"] = {"epic"},
161
            ["Molten Forged Warrior Armor"] = {"epic"},
162
            ["Aquatic Warrior Helmet"] = {"rare", "epic", "uncommon", "common"},
163
            ["Aquatic Warrior Armor"] = {"rare", "epic", "uncommon", "common"},
164
            ["Aquatic Mage Helmet"] = {"rare", "epic", "uncommon", "common"},
165
            ["Aquatic Mage Armor"] = {"rare", "epic", "uncommon", "common"},
166
            ["Riptide Warrior Helmet"] = {"rare", "epic", "uncommon", "common"},
167
            ["Riptide Warrior Armor"] = {"rare", "epic", "uncommon", "common"},
168
            ["Riptide Mage Helmet"] = {"rare", "epic", "uncommon", "common"},
169
            ["Riptide Mage Armor"] = {"rare", "epic", "uncommon", "common"},
170
            ["Triton Warrior Helmet"] = {"rare", "epic", "uncommon", "common"},
171
            ["Triton Warrior Armor"] = {"rare", "epic", "uncommon", "common"},
172
            ["Triton Mage Armor"] = {"rare", "epic", "uncommon", "common"},
173
            ["Triton Mage Helmet"] = {"rare", "epic", "uncommon", "common"},
174
            ["Triton Guardian Helmet"] = {"rare", "epic", "uncommon", "common"},
175
            ["Triton Guardian Armor"] = {"rare", "epic", "uncommon", "common"},
176
            ["Serpent Pike"] = {"rare", "epic", "uncommon", "common"},
177
            ["Enchanted Sea Daggers"] = {"rare", "epic", "uncommon", "common"},
178
            ["Aquatic Spear"] = {"rare", "epic", "uncommon", "common"},
179
            ["Ocean Pearl Staff"] = {"rare", "epic", "uncommon", "common"},
180
            ["Oceanic Greatsword"] = {"rare", "epic", "uncommon", "common"},
181
            ["Enchanted Serpent Daggers"] = {"rare", "epic", "uncommon", "common"},
182
            ["Spear Strike"] = {"rare"},
183
            ["Water Orb"] = {"rare"},
184
            ["Ice Barrage"] = {"epic"},
185
            ["Ice Crash"] = {"epic"},
186
            ["Aquatic Smite"] = {"epic"},
187
            ["Ice Spikes"] = {"epic"},
188
            ["Twin Slash"] = {"epic"},
189
            ["Enhanced Inner Rage"] = {"legendary"},
190
            ["Lava Barrage"] = {"epic"},
191
            ["Blade Fall"] = {"epic"},
192
            ["Battle Shout"] = {"uncommon"},
193
            ["Innervate"] = {"epic"},
194
            ["Explosive Mine"] = {"epic"},
195
            ["Vortex Grenade"] = {"epic"},
196
            ["Electric Field"] = {"epic"},
197
            ["Energy Orb"] = {"epic"},
198
            ["Dual Magma Shields"] = {"epic"},
199
            ["Volcanic Greatsword"] = {"epic"},
200
            ["Magma Infused Waraxe"] = {"epic"},
201
            ["Shattered Magma Blade"] = {"epic"},
202
            ["Ancient Lava Axe"] = {"epic"},
203
            ["Dual Hellfire Blades"] = {"epic"}
204
        }
205
    },
206
207
    AutoEquip = {
208
        Enabled = false, 
209
        EquipType = "physical" -- "physical", "spell"
210
    },
211
212
    AutoUpgrade = {
213
        Enabled = false, 
214
        UpgradeType = "physicalPower" -- "physicalPower", "stamina", "spellPower"
215
    },
216
217
    AutoSkill = {
218
        Enabled = false,
219
        SkillType = { -- Precentages to upgrade each skill point
220
            ["physicalPower"] = 100,
221
            ["spellPower"] = 0,
222
            ["stamina"] = 0
223
        }
224
    },
225
226
    LagReductions = {
227
        BadGraphics = true,
228
        DestroyGear = true,
229
        DisableSpellEffects = true
230
    },
231
232
    CustomUI = {
233
        Enabled = true,
234
        Name = "Spooder > MRob",
235
        Level = "1337",
236
        EXP = "1337",
237
        HP = "1337",
238
        Gold = "1337",
239
        Avatar = "https://www.roblox.com/asset-thumbnail/image?assetId=2833845574&width=420&height=420&format=png"
240
    },
241
242
    WaitForJoiners = {
243
        Enabled = false,
244
        Host = "Account1",
245
        Joiners = {
246
            "Account2","Account3"
247
        }
248
    },
249
250
    MultiFarm = {
251
        Enabled = false,
252
        Host = "Account1",
253
        Joiners = {
254
            "Account2","Account3"
255
        }
256
    },
257
258
    Webhook = {
259
        Enabled = false,
260
        PingForRarity = {
261
            "legendary"
262
        },
263
        PingForItems = {
264
            ["Triton Warrior Helmet"] = {"epic"},
265
            ["Triton Warrior Armor"] = {"epic"},
266
            ["Triton Mage Armor"] = {"epic"},
267
            ["Triton Mage Helmet"] = {"epic"}
268
        },
269
        DiscordUserID = "760614887776059392",
270
        Url = "https://discord.com/api/webhooks/"
271
    }
272
}
273
274
loadstring(game:HttpGet("https://raw.githubusercontent.com/Introvert1337/SpooderQuestRewritten/main/TextScript.lua"))()