-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
53 lines (46 loc) · 1.99 KB
/
main.lua
File metadata and controls
53 lines (46 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
--// BGSI Script | Rev. 1.1.7 | BGSI Build v10134
getgenv().Config = {
--// General Settings
ClaimPlaytime = true,
MaxPotionCraft = false,
SeasonPassClaim = true,
AntiAFK = true,
--// Auto Potion
InfinityElixir = true, --// Will use 1 every 6min
SecretElixir = true, --// Will use 1 every 12min
EggElixir = true, --// will use 1 every 25min
LuckyInf = true, --// Will use 1 every 37min
SpeedInf = true, --// Will use 1 every 37min
MythicInf = true, --// Will use 1 every 37min
--// OG Event
OGSpin = true,
--// Webhook Settings
Webhook_enabled = true,
Discord_ID = "discordid",
Webhook = "https://discord.com/api/webhooks/",
Ignore_AutoDeleted = true,
Secret_Only = false,
--// Performance Boost
FPS = "5",
LowGraphics = true,
--// Anti Scam Settings
Allowed_User = "ChangeMe",
AntiTrade = true,
--// Script Files
WebhookScript = "https://raw.bgsi-botting.xyz/core/webhook.lua",
AutoPotionScript = "https://raw.bgsi-botting.xyz/core/autopotion.lua",
OGSpinScript = "https://raw.bgsi-botting.xyz/v10134/events/ogspin.lua",
AntiAFKScript = "https://raw.bgsi-botting.xyz/core/antiafk.lua",
PlaytimeScript = "https://raw.bgsi-botting.xyz/core/playtime.lua",
SeasonPassScript = "https://raw.bgsi-botting.xyz/core/seasonpass.lua",
PotionScript = "https://raw.bgsi-botting.xyz/core/potioncraft.lua",
BoosterScript = "https://raw.bgsi-botting.xyz/core/booster.lua",
}
loadstring(game:HttpGet(getgenv().Config.WebhookScript))()
loadstring(game:HttpGet(getgenv().Config.AutoPotionScript))()
loadstring(game:HttpGet(getgenv().Config.OGSpinScript))()
loadstring(game:HttpGet(getgenv().Config.PlaytimeScript))()
loadstring(game:HttpGet(getgenv().Config.SeasonPassScript))()
loadstring(game:HttpGet(getgenv().Config.PotionScript))()
loadstring(game:HttpGet(getgenv().Config.AntiAFKScript))()
loadstring(game:HttpGet(getgenv().Config.BoosterScript))()