1
1
-- name advancededgebug
2
2
-- desc bug the edge. (advanced)
3
- -- author sekc
3
+ -- author sekc, vampur
4
4
5
5
-- Settings
6
6
EDGEBUG_FOUND_SOUND = " common/warning"
@@ -39,11 +39,11 @@ local function detectEdgebug(localPlayer)
39
39
end
40
40
41
41
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
43
43
}
44
44
45
45
local backupMove = {
46
- forwardmove = 0 , sidemove = 0 , buttons = 0
46
+ forwardmove = 0 , sidemove = 0 , buttons = 0 , angle = QAngle ( 0 , 0 , 0 ), delta = 0
47
47
}
48
48
49
49
-- if edgebug found force cmd to follow this edgebug
@@ -59,17 +59,21 @@ local function forceEdgebug(cmd, localPlayer)
59
59
-- if edgebug is already found then set buttons to the buttons to hit edgebug with (also set forwardmove+sidemove to 0)
60
60
cmd .buttons = successfulMove .buttons
61
61
62
- eclipse . startMovementFix ( cmd )
62
+ successfulMove . angle = QAngle ( successfulMove . angle . x , successfulMove . angle . y + successfulMove . delta , 0 )
63
63
cmd .viewangles = successfulMove .angle
64
- eclipse .endMovementFix (cmd )
65
64
cmd .forwardmove = successfulMove .forwardmove
66
65
cmd .sidemove = successfulMove .sidemove
66
+
67
+ eclipse .startMovementFix (cmd )
68
+ cmd .viewangles = backupMove .angle
69
+ eclipse .endMovementFix (cmd )
70
+
67
71
eclipse .setCmd (cmd )
68
72
return
69
73
end
70
74
end
71
75
72
- local function onFoundEdgebug (edgebugRecord , tickFoundAt , cmd , localPlayer )
76
+ local function onFoundEdgebug (edgebugRecord , delta , tickFoundAt , cmd , localPlayer )
73
77
-- add 5 future ticks to record so you can see edgebug direction
74
78
for j = 1 ,5 do
75
79
prediction .start (cmd )
@@ -85,7 +89,9 @@ local function onFoundEdgebug(edgebugRecord, tickFoundAt, cmd, localPlayer)
85
89
end
86
90
87
91
successfulMove .found = true
88
- successfulMove .angle = cmd .viewangles
92
+ successfulMove .angle = backupMove .angle
93
+ cmd .viewangles = successfulMove .angle
94
+ successfulMove .delta = delta
89
95
successfulMove .forwardmove = cmd .forwardmove
90
96
successfulMove .sidemove = cmd .sidemove
91
97
successfulMove .buttons = cmd .buttons
@@ -94,11 +100,14 @@ local function onFoundEdgebug(edgebugRecord, tickFoundAt, cmd, localPlayer)
94
100
eclipse .setCmd (cmd )
95
101
end
96
102
97
- local function predictEdgebug (cmd , localPlayer )
103
+ local function predictEdgebug (cmd , localPlayer , delta )
104
+ if not delta then delta = 0 end
105
+
98
106
local commandsPredicted = prediction .commandsPredicted ()
99
107
100
108
local edgebugRecord = {} -- table that holds records of position of found edgebug (for edgebug trail)
101
109
-- prediction loop
110
+ cmd .viewangles = backupMove .angle -- restore baseline viewangles
102
111
for i = 0 ,ui .getConfigFloat (" edgebug predict ticks" ) do
103
112
lastTickVel = localPlayer :velocity ()
104
113
prediction .start (cmd )
@@ -107,37 +116,56 @@ local function predictEdgebug(cmd, localPlayer)
107
116
-- add current tick to edgebug record
108
117
edgebugRecord [i ] = { [" origin" ] = localPlayer :origin () }
109
118
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
111
120
if detectEdgebug (localPlayer ) then
112
- onFoundEdgebug (edgebugRecord , i , cmd , localPlayer )
121
+ onFoundEdgebug (edgebugRecord , delta , i , cmd , localPlayer )
113
122
break
114
123
end
115
124
116
125
if localPlayer :onground () then break end
126
+
127
+ cmd .viewangles = QAngle (cmd .viewangles .x , cmd .viewangles .y + delta , 0 )
117
128
end
118
129
119
130
prediction .restoreToFrame (commandsPredicted - 1 )
120
131
end
121
132
122
133
local edgebugLookupTable = {
123
- [1 ] = function (cmd , localPlayer ) -- standing and crouching (no strafe) edgebug
134
+ [1 ] = function (cmd , localPlayer ) -- standing and crouching edgebug
124
135
cmd .forwardmove = 0
125
136
cmd .sidemove = 0
126
137
cmd .buttons = bit .bxor (cmd .buttons , 4 ) -- IN_DUCK = 4
127
138
predictEdgebug (cmd , localPlayer )
139
+ if successfulMove .found then return end
128
140
cmd .buttons = bit .bxor (cmd .buttons , 4 ) -- IN_DUCK = 4
129
141
predictEdgebug (cmd , localPlayer )
130
142
end ,
131
143
[2 ] = function (cmd , localPlayer ) -- sidemove + forwardmove edgebug
144
+ predictEdgebug (cmd , localPlayer )
145
+ if successfulMove .found then return end
132
146
cmd .sidemove = 450
133
147
predictEdgebug (cmd , localPlayer )
148
+ if successfulMove .found then return end
134
149
cmd .sidemove = - 450
135
150
predictEdgebug (cmd , localPlayer )
151
+ if successfulMove .found then return end
136
152
cmd .sidemove = 0
137
153
cmd .forwardmove = 450
138
154
predictEdgebug (cmd , localPlayer )
155
+ if successfulMove .found then return end
139
156
cmd .forwardmove = - 450
140
157
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 )
141
169
end
142
170
}
143
171
@@ -156,18 +184,21 @@ function onCreateMove(cmd)
156
184
backupMove .forwardmove = cmd .forwardmove
157
185
backupMove .sidemove = cmd .sidemove
158
186
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 )
159
189
160
190
forceEdgebug (cmd , localPlayer )
161
191
162
192
count = count + 1
163
193
if not successfulMove .found then
164
194
edgebugLookupTable [(count % # edgebugLookupTable ) + 1 ](cmd , localPlayer )
165
195
end
166
-
196
+
167
197
if not successfulMove .found then
168
198
cmd .forwardmove = backupMove .forwardmove
169
199
cmd .sidemove = backupMove .sidemove
170
200
cmd .buttons = backupMove .buttons
201
+ cmd .viewangles = backupMove .angle
171
202
eclipse .setCmd (cmd )
172
203
end
173
204
@@ -197,6 +228,7 @@ function onDraw()
197
228
ui .label (" edgebug found: " .. tostring (successfulMove .found ))
198
229
ui .label (" sidemove: " .. successfulMove .sidemove )
199
230
ui .label (" forwardmove: " .. successfulMove .forwardmove )
231
+ ui .label (" y delta: " .. successfulMove .delta )
200
232
ui .endWindow ()
201
233
end
202
234
end
0 commit comments