Skip to content

Commit 69b28a3

Browse files
committed
updated
v1.41 - updated to v3028 - fixerd loading issue - fixed discord invite - removed startup sound (due to lib issue & its annoying after several times loading it)
1 parent 1c6fb58 commit 69b28a3

4 files changed

Lines changed: 35 additions & 37 deletions

File tree

AddictScript/Addict.lua

Lines changed: 26 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,47 @@ util.require_natives("natives-1651208000")
77
util.require_natives("natives-1663599433")
88
guidedMissile = require "ToxTool"
99

10-
-- Add all SE here for quicker updates
10+
local addict = menu
11+
local addict_version = 1.41
12+
local gta_version = "v3028"
13+
local dev_mode = false -- Disables some stuff like Updates [true/false]
14+
15+
-- Add all SE's here for quicker updates
1116
local se = {
12-
tpspread = -1388926377,
13-
orbitalfuck = 677240627,
14-
jobnotify = 2386092767,
15-
givecollectible = 697566862,
16-
kick1_casino = 1268038438,
17-
kick2 = 915462795,
17+
tpspread = -1388926377, -- older gta se version
18+
orbitalfuck = 677240627, -- older gta se version
19+
jobnotify = 2386092767, -- older gta se version
20+
givecollectible = 697566862, -- older gta se version
21+
kick1_casino = 1268038438, -- older gta se version
22+
kick2 = 915462795, -- older gta se version
1823
arraykick = 1613825825,
1924
sekicks0 = -1013606569,
2025
sekicks1 = -901348601,
2126
sekicks3 = -1638522928,
22-
sekicks3_1 = 1017995959,
27+
sekicks3_1 = 1017995959, -- older gta se version
2328
sekicks4 = -2026172248,
2429
sekicks7 = -642704387,
25-
secrash = -992162568,
26-
27-
startfaketyping = 747270864,
28-
stopfaketyping = -990958325,
30+
secrash = -992162568, -- older gta se version
31+
startfaketyping = 747270864, -- older gta se version
32+
stopfaketyping = -990958325, -- older gta se version
2933
}
3034

3135
-- Add all Globals here for quicker updates
3236
local glob = {
3337
base = 262145,
34-
player = 2689235,
38+
player = 2689235, -- older gta global version
3539
check = 78689,
3640
slot = 2359296,
3741
pveh = 1586488,
38-
resupplyacid = 1648637,
42+
resupplyacid = 1648637, -- older gta global version
3943
orbi = 1969112,
40-
nohud = 1645739,
44+
nohud = 1645739, -- older gta global version
4145
fastrespawn = 2672524,
4246
playerpoint = 4521801,
4347
sekickarg1 = 2657704,
44-
sekickarg2 = 1892703,
45-
player_bounty = 1835502,
46-
bounty1 = 2815059,
48+
sekickarg2 = 1892703, -- older gta global version
49+
player_bounty = 1835502, -- older gta global version
50+
bounty1 = 2815059, -- older gta global version
4751
}
4852

4953
local function tunable(value)
@@ -67,12 +71,8 @@ local function vector3(x, y, z)
6771
return { x = x, y = y, z = z }
6872
end
6973

70-
local addict = menu
71-
local addict_version = 1.40
72-
local dev_mode = false -- Disables stuff like Updates [true/false]
73-
7474
local github = addict.list(addict.my_root(), "Updates", {"addictupdates"})
75-
addict.hyperlink(github, "Addict Discord", "https://discord.gg/tuFd76tRXy")
75+
addict.hyperlink(github, "Addict Discord", "https://discord.gg/zwdPY4jn")
7676

7777
async_http.init("raw.githubusercontent.com","/Addict0919/Addict-Script/main/AddictScript/AddictScriptChangelog",function(b)
7878
response=true;
@@ -185,8 +185,8 @@ function()
185185
end)
186186

187187
if dev_mode then
188-
util.log("Welcome to Addict Script! (" .. addict_version .. ")\n" .. "with DEVMODE\n" .. "Enjoy Playing :)")
189-
util.toast("Welcome to Addict Script! (" .. addict_version .. ")\n" .. "with DEVMODE\n" .. "Enjoy Playing :)")
188+
util.log("Welcome to Addict Script! (" .. addict_version .. ")\n" .. "GTAV: " .. gta_version .. "\n" .. "Enjoy Playing :)")
189+
util.toast("Welcome to Addict Script! (" .. addict_version .. ")\n" .. "GTAV: " .. gta_version .. "\n" .. "Enjoy Playing :)")
190190
else
191191
util.log("Welcome to Addict Script! v" .. addict_version .. "\n" .. "\n" .. "Check Github tab for updates...\n" .. "\n" .. "Enjoy Playing :)")
192192
util.toast("Welcome to Addict Script! v" .. addict_version .. "\n" .. "\n" .. "Check Github tab for updates...\n" .. "\n" .. "Enjoy Playing :)")
@@ -251,15 +251,11 @@ function()
251251
end
252252
end)
253253

254-
local aalib = require("aalib")
255-
local PlaySound = aalib.play_sound
256-
local SND_ASYNC<const> = 0x0001
257-
local SND_FILENAME<const> = 0x00020000
258-
259254
resources_dir = filesystem.resources_dir() .. '\\Addictscript\\'
260255
Addictscript_logo = directx.create_texture(resources_dir .. 'Addictscript_logo.png')
261256

262257
if not filesystem.is_dir(resources_dir) then
258+
return;
263259
end
264260

265261
if not SCRIPT_SILENT_START then
@@ -291,7 +287,6 @@ function()
291287
util.yield()
292288
end
293289
end)
294-
PlaySound(resources_dir .. "\\bruh.wav", SND_FILENAME | SND_ASYNC)
295290
end
296291

297292
--------------------------------------------------------------------------------------

AddictScript/AddictScriptChangelog

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
________________________
2-
v1.40
3-
- updated global usage
4-
- updated dirty code
5-
- restructured some parts
6-
________________________
2+
v1.41
3+
- updated to v3028
4+
- fixerd loading issue
5+
- fixed discord invite
6+
- removed startup sound (due to lib issue & its annoying after several times loading it)
7+
________________________
8+
9+
|| Report any Buged/Broken Functions in the Discord ||
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.40
1+
1.41

AddictScript/lib/aalib.dll

-416 KB
Binary file not shown.

0 commit comments

Comments
 (0)