Skip to content

Commit 3aa78fe

Browse files
committed
added many new scripts, improved eggbug
1 parent bd67445 commit 3aa78fe

14 files changed

+526
-12
lines changed

advancededgebug.lua

+44-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--name advancededgebug
22
--desc bug the edge. (advanced)
3-
--author sekc
3+
--author sekc, vampur
44

55
-- Settings
66
EDGEBUG_FOUND_SOUND = "common/warning"
@@ -39,11 +39,11 @@ local function detectEdgebug(localPlayer)
3939
end
4040

4141
local successfulMove = {
42-
found = false, forwardmove = 0, sidemove = 0, angle = QAngle(0, 0, 0), buttons = 0, edgebugTick = 0
42+
found = false, forwardmove = 0, sidemove = 0, angle = QAngle(0, 0, 0), delta = 0, buttons = 0, edgebugTick = 0
4343
}
4444

4545
local backupMove = {
46-
forwardmove = 0, sidemove = 0, buttons = 0
46+
forwardmove = 0, sidemove = 0, buttons = 0, angle = QAngle(0, 0, 0), delta = 0
4747
}
4848

4949
-- if edgebug found force cmd to follow this edgebug
@@ -59,17 +59,21 @@ local function forceEdgebug(cmd, localPlayer)
5959
-- if edgebug is already found then set buttons to the buttons to hit edgebug with (also set forwardmove+sidemove to 0)
6060
cmd.buttons = successfulMove.buttons
6161

62-
eclipse.startMovementFix(cmd)
62+
successfulMove.angle = QAngle(successfulMove.angle.x, successfulMove.angle.y + successfulMove.delta, 0)
6363
cmd.viewangles = successfulMove.angle
64-
eclipse.endMovementFix(cmd)
6564
cmd.forwardmove = successfulMove.forwardmove
6665
cmd.sidemove = successfulMove.sidemove
66+
67+
eclipse.startMovementFix(cmd)
68+
cmd.viewangles = backupMove.angle
69+
eclipse.endMovementFix(cmd)
70+
6771
eclipse.setCmd(cmd)
6872
return
6973
end
7074
end
7175

72-
local function onFoundEdgebug(edgebugRecord, tickFoundAt, cmd, localPlayer)
76+
local function onFoundEdgebug(edgebugRecord, delta, tickFoundAt, cmd, localPlayer)
7377
-- add 5 future ticks to record so you can see edgebug direction
7478
for j=1,5 do
7579
prediction.start(cmd)
@@ -85,7 +89,9 @@ local function onFoundEdgebug(edgebugRecord, tickFoundAt, cmd, localPlayer)
8589
end
8690

8791
successfulMove.found = true
88-
successfulMove.angle = cmd.viewangles
92+
successfulMove.angle = backupMove.angle
93+
cmd.viewangles = successfulMove.angle
94+
successfulMove.delta = delta
8995
successfulMove.forwardmove = cmd.forwardmove
9096
successfulMove.sidemove = cmd.sidemove
9197
successfulMove.buttons = cmd.buttons
@@ -94,11 +100,14 @@ local function onFoundEdgebug(edgebugRecord, tickFoundAt, cmd, localPlayer)
94100
eclipse.setCmd(cmd)
95101
end
96102

97-
local function predictEdgebug(cmd, localPlayer)
103+
local function predictEdgebug(cmd, localPlayer, delta)
104+
if not delta then delta = 0 end
105+
98106
local commandsPredicted = prediction.commandsPredicted()
99107

100108
local edgebugRecord = {} -- table that holds records of position of found edgebug (for edgebug trail)
101109
-- prediction loop
110+
cmd.viewangles = backupMove.angle -- restore baseline viewangles
102111
for i=0,ui.getConfigFloat("edgebug predict ticks") do
103112
lastTickVel = localPlayer:velocity()
104113
prediction.start(cmd)
@@ -107,37 +116,56 @@ local function predictEdgebug(cmd, localPlayer)
107116
-- add current tick to edgebug record
108117
edgebugRecord[i] = { ["origin"] = localPlayer:origin() }
109118

110-
-- if edgebug found save found edgebug and set cmd so our forwardmove and sidemove are 0
119+
-- if edgebug found save found edgebug and set cmd
111120
if detectEdgebug(localPlayer) then
112-
onFoundEdgebug(edgebugRecord, i, cmd, localPlayer)
121+
onFoundEdgebug(edgebugRecord, delta, i, cmd, localPlayer)
113122
break
114123
end
115124

116125
if localPlayer:onground() then break end
126+
127+
cmd.viewangles = QAngle(cmd.viewangles.x, cmd.viewangles.y + delta, 0)
117128
end
118129

119130
prediction.restoreToFrame(commandsPredicted - 1)
120131
end
121132

122133
local edgebugLookupTable = {
123-
[1] = function (cmd, localPlayer) -- standing and crouching (no strafe) edgebug
134+
[1] = function (cmd, localPlayer) -- standing and crouching edgebug
124135
cmd.forwardmove = 0
125136
cmd.sidemove = 0
126137
cmd.buttons = bit.bxor(cmd.buttons, 4) -- IN_DUCK = 4
127138
predictEdgebug(cmd, localPlayer)
139+
if successfulMove.found then return end
128140
cmd.buttons = bit.bxor(cmd.buttons, 4) -- IN_DUCK = 4
129141
predictEdgebug(cmd, localPlayer)
130142
end,
131143
[2] = function (cmd, localPlayer) -- sidemove + forwardmove edgebug
144+
predictEdgebug(cmd, localPlayer)
145+
if successfulMove.found then return end
132146
cmd.sidemove = 450
133147
predictEdgebug(cmd, localPlayer)
148+
if successfulMove.found then return end
134149
cmd.sidemove = -450
135150
predictEdgebug(cmd, localPlayer)
151+
if successfulMove.found then return end
136152
cmd.sidemove = 0
137153
cmd.forwardmove = 450
138154
predictEdgebug(cmd, localPlayer)
155+
if successfulMove.found then return end
139156
cmd.forwardmove = -450
140157
predictEdgebug(cmd, localPlayer)
158+
end,
159+
[3] = function (cmd, localPlayer) -- strafe edgebug
160+
cmd.sidemove = 450
161+
predictEdgebug(cmd, localPlayer, -2)
162+
if successfulMove.found then return end
163+
predictEdgebug(cmd, localPlayer, -1)
164+
if successfulMove.found then return end
165+
cmd.sidemove = -450
166+
predictEdgebug(cmd, localPlayer, 2)
167+
if successfulMove.found then return end
168+
predictEdgebug(cmd, localPlayer, 1)
141169
end
142170
}
143171

@@ -156,18 +184,21 @@ function onCreateMove(cmd)
156184
backupMove.forwardmove = cmd.forwardmove
157185
backupMove.sidemove = cmd.sidemove
158186
backupMove.buttons = cmd.buttons
187+
backupMove.delta = QAngle(cmd.viewangles.x - backupMove.angle.x, cmd.viewangles.y - backupMove.angle.y, 0)
188+
backupMove.angle = QAngle(cmd.viewangles.x, cmd.viewangles.y, 0)
159189

160190
forceEdgebug(cmd, localPlayer)
161191

162192
count = count + 1
163193
if not successfulMove.found then
164194
edgebugLookupTable[(count % #edgebugLookupTable) + 1](cmd, localPlayer)
165195
end
166-
196+
167197
if not successfulMove.found then
168198
cmd.forwardmove = backupMove.forwardmove
169199
cmd.sidemove = backupMove.sidemove
170200
cmd.buttons = backupMove.buttons
201+
cmd.viewangles = backupMove.angle
171202
eclipse.setCmd(cmd)
172203
end
173204

@@ -197,6 +228,7 @@ function onDraw()
197228
ui.label("edgebug found: " .. tostring(successfulMove.found))
198229
ui.label("sidemove: " .. successfulMove.sidemove)
199230
ui.label("forwardmove: " .. successfulMove.forwardmove)
231+
ui.label("y delta: " .. successfulMove.delta)
200232
ui.endWindow()
201233
end
202234
end

clantag.lua

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
--name clantag
2+
--desc script to showcase patternscan via ffi to change clantag
3+
--author sekc
4+
5+
ffi = require("ffi")
6+
7+
ffi.cdef("typedef void (*SendClantag)(const char*, const char*);")
8+
9+
local sendClantag = ffi.cast("SendClantag", cheat.patternScan("engine_client.so", "55 48 89 E5 41 55 49 89 FD 41 54 BF"))
10+
sendClantag("eclipse", "eclipse.wtf premium")

crosshair.lua

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
--name crosshair
2+
--desc recoil crosshair
3+
--author sekc
4+
5+
function drawHook()
6+
localPlayer = entitylist.getEntity(entitylist.getLocalPlayer())
7+
if eclipse.isInGame() and localPlayer:sane() then
8+
local centerScreen = Vec2(draw.getScreenSize().x/2, draw.getScreenSize().y/2)
9+
local dx = draw.getScreenSize().x/90
10+
local dy = draw.getScreenSize().y/90
11+
local aimpunch = localPlayer:getPropQAngle("DT_Local", "m_aimPunchAngle")
12+
local x = (centerScreen.x) - (dx * aimpunch.y)
13+
local y = (centerScreen.y) + (dy * aimpunch.x)
14+
draw.filledRectangle(Vec2(x - 5, y - 1), Vec2(x + 6, y + 2), Color(0, 0, 0, 1))
15+
draw.filledRectangle(Vec2(x - 1, y - 5), Vec2(x + 2, y + 6), Color(0, 0, 0, 1))
16+
draw.filledRectangle(Vec2(x - 4, y), Vec2(x + 5, y + 1), Color(1, 1, 1, 1))
17+
draw.filledRectangle(Vec2(x, y - 4), Vec2(x + 1, y + 5), Color(1, 1, 1, 1))
18+
end
19+
end
20+
21+
eclipse.registerHook("draw", drawHook)

deadesp.lua

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
--name dead esp
2+
--desc enables esp features when the localplayer is dead
3+
--author sekc
4+
5+
function onUI()
6+
ui.checkbox("box", "deadesp box")
7+
ui.checkbox("name", "deadesp name")
8+
ui.checkbox("healthbar", "deadesp healthbar")
9+
ui.checkbox("ignorez chams alpha", "deadesp ignorez chams alpha")
10+
end
11+
12+
function onCreateMove()
13+
local localPlayer = entitylist.getEntity(entitylist.getLocalPlayer())
14+
if localPlayer:sane() then
15+
ui.setConfigBool("enemy esp box", ui.getConfigBool("deadesp box") and not localPlayer:alive())
16+
ui.setConfigBool("enemy esp name", ui.getConfigBool("deadesp name") and not localPlayer:alive())
17+
ui.setConfigBool("enemy esp healthbar", ui.getConfigBool("deadesp healthbar") and not localPlayer:alive())
18+
19+
local chamCol = ui.getConfigCol("enemy ignorez chams color")
20+
chamCol.value.w = ui.getConfigBool("deadesp ignorez chams alpha") and health == 0 and 1 or 0
21+
ui.setConfigCol("enemy ignorez chams color", chamCol)
22+
end
23+
end
24+
25+
eclipse.registerHook("UI", onUI)
26+
eclipse.registerHook("createMove", onCreateMove)

espeverything.lua

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
--name esp everything
2+
--desc draws a box around every entity
3+
--author sekc
4+
5+
local entities = {}
6+
7+
function onDraw()
8+
for i, ent in pairs(entities) do
9+
draw.outlineText(Vec2(ent.box.x + ((ent.box.z - ent.box.x) - draw.calcTextSize(ent.classID .. " | " .. ent.networkName).x)/2, ent.box.y - 14), Color(1, 1, 1, 1), ent.classID .. " | " .. ent.networkName)
10+
draw.rectangle(Vec2(ent.box.x, ent.box.y), Vec2(ent.box.z, ent.box.w), Color(0, 0, 0, 1), 3)
11+
draw.rectangle(Vec2(ent.box.x, ent.box.y), Vec2(ent.box.z, ent.box.w), Color(1, 1, 1, 1), 1)
12+
end
13+
end
14+
15+
function onCreateMove()
16+
entities = {}
17+
for i, ent in pairs(entitylist.getEntities()) do
18+
if ent:sane() then
19+
local box = ent:getBBox()
20+
if box.y > 0 then
21+
entities[i] = {box = ent:getBBox(), classID = ent:classID(), networkName = ent:networkName()}
22+
end
23+
end
24+
end
25+
end
26+
27+
eclipse.registerHook("createMove", onCreateMove)
28+
eclipse.registerHook("draw", onDraw)

fog.lua

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
--name fog
2+
--desc customise fog
3+
--author sekc
4+
5+
local function getClientClassByName(name)
6+
local c = eclipse.getAllClientClasses()
7+
while c:exists() do
8+
if c:name() == name then
9+
return c
10+
end
11+
c = c:next()
12+
end
13+
return false
14+
end
15+
16+
function onCreateMove(cmd)
17+
if not (cmd.tickcount > 0) or not (cmd.tickcount % 64 == 0) then return end
18+
for i, fogController in pairs(entitylist.getEntitiesByClassID(78)) do
19+
if fogController:sane() then
20+
fogController:setPropInt("DT_FogController", "m_fog.enable", ui.getConfigBool("fog enabled") and 1 or 0)
21+
fogController:setPropFloat("DT_FogController", "m_fog.start", ui.getConfigFloat("fog start"))
22+
fogController:setPropFloat("DT_FogController", "m_fog.end", ui.getConfigFloat("fog end"))
23+
fogController:setPropFloat("DT_FogController", "m_fog.farz", ui.getConfigFloat("fog farz"))
24+
fogController:setPropFloat("DT_FogController", "m_fog.maxdensity", ui.getConfigFloat("fog density"))
25+
local col = ui.getConfigCol("fog color").value
26+
local colAsInt = (col.x * 255) +
27+
bit.lshift(col.y * 255, 8) +
28+
bit.lshift(col.z * 255, 16) +
29+
bit.lshift(col.w * 255, 24)
30+
fogController:setPropInt("DT_FogController", "m_fog.colorPrimary", colAsInt)
31+
end
32+
end
33+
end
34+
35+
function onUI()
36+
ui.checkbox("fog enabled", "fog enabled")
37+
ui.sliderFloat("fog begin", "fog begin", 0, 10000, "%.1f")
38+
ui.sliderFloat("fog end", "fog end", 0, 10000, "%.1f")
39+
ui.sliderFloat("fog farz", "fog farz", 0, 10000, "%.1f")
40+
ui.sliderFloat("fog density", "fog density", 0, 1, "%.2f")
41+
ui.colorPicker("fog color", "fog color")
42+
end
43+
44+
eclipse.registerHook("createMove", onCreateMove)
45+
eclipse.registerHook("UI", onUI)

lobbytricks.lua

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
--name lobby tricks
2+
--desc allows for tricks such as spamming popups to your teammates
3+
--author sekc
4+
5+
if not eclipse.isInGame() then
6+
panorama.executeScript([[
7+
disallowQueue = false;
8+
disallowQueueReason = "";
9+
function stopQueue() {
10+
$.Schedule(5, stopQueue);
11+
if (disallowQueue && LobbyAPI.GetMatchmakingStatusString() == "#SFUI_QMM_State_find_searching") {
12+
reason = disallowQueueReason;
13+
if (reason != "") {
14+
PartyListAPI.SessionCommand("Game::ChatReportError", `run all xuid ${MyPersonaAPI.GetXuid()} error #SFUI_QMM_ERROR_${reason}`);
15+
}
16+
LobbyAPI.StopMatchmaking();
17+
}
18+
}
19+
stopQueue()]], "panorama/layout/base.xml")
20+
end
21+
22+
23+
function onUI()
24+
if eclipse.isInGame() then
25+
ui.label("lua only works in lobby.")
26+
return
27+
end
28+
29+
if ui.button("popup") then
30+
panorama.executeScript([[PartyListAPI.SessionCommand("Game::HostEndGamePlayAgain", "run all xuid ${MyPersonaAPI.GetXuid()}");]], "panorama/layout/base.xml")
31+
end
32+
33+
if ui.button("spam popups") then
34+
panorama.executeScript([[
35+
function closeAllPopups() {
36+
$.DispatchEvent("CSGOHideMainMenu");
37+
}
38+
for (i = 0; i < 200; i++) {
39+
PartyListAPI.SessionCommand("Game::HostEndGamePlayAgain", "run all xuid ${MyPersonaAPI.GetXuid()}");
40+
}
41+
$.Schedule(2, closeAllPopups);]], "panorama/layout/base.xml")
42+
end
43+
44+
if ui.button("close all popups") then
45+
panorama.executeScript([[$.DispatchEvent("CSGOHideMainMenu");]], "panorama/layout/base.xml")
46+
end
47+
48+
ui.separator()
49+
if ui.button("stop matchmaking") then
50+
panorama.executeScript([[LobbyAPI.StopMatchmaking();]], "panorama/layout/base.xml")
51+
end
52+
ui.checkbox("disallow queue", "disallow queue")
53+
ui.textInput("disallow reason", "reason for disallow")
54+
ui.separator()
55+
ui.textInput("lobby error message", "lobby error message")
56+
if ui.button("send error message") then
57+
panorama.executeScript([[PartyListAPI.SessionCommand("Game::ChatReportError", `run all xuid ${MyPersonaAPI.GetXuid()} error #SFUI_QMM_ERROR_]] .. ui.getConfigStr("lobby error message") .. [[`);]], "panorama/layout/base.xml")
58+
end
59+
60+
panorama.executeScript([[
61+
disallowQueue = ]] .. (ui.getConfigBool("disallow queue") and "true" or "false") .. [[;
62+
disallowQueueReason = "]] .. ui.getConfigStr("reason for disallow") .. [[";
63+
]], "panorama/layout/base.xml")
64+
end
65+
66+
eclipse.registerHook("UI", onUI)

material-pearlescent.lua

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
--name pearlescent
2+
--desc script that adds a material to the cheat named pearlescent
3+
--author sekc
4+
5+
eclipse.addMaterial("pearlescent", "VertexLitGeneric", [[
6+
"VertexLitGeneric"
7+
{
8+
"$basetexture" "vgui/white_additive"
9+
"$nocull" "1"
10+
"$nofog" "1"
11+
"$model" "1"
12+
"$nocull" "0"
13+
"$phong" "1"
14+
"$phongboost" "0"
15+
"$basemapalphaphongmask" "1"
16+
"$pearlescent" "16"
17+
}
18+
]])
19+
20+
function onUnload()
21+
eclipse.removeMaterial("pearlescent")
22+
end
23+
24+
eclipse.registerHook("unload", onUnload)

0 commit comments

Comments
 (0)