Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (aimbot or bhop or trigbot) then
- if (localidx ~= -1) then
- local test = GetRadarEntity(localidx)
- if (RadarPlayer.name(test) ~= o_NameStr) then
- localidx = -1
- end
- end
- if (localidx == -1) then
- WriteConsole("Finding local player index... ")
- local i = 0
- for i=0,128 do
- local test = GetRadarEntity(i)
- local name = RadarPlayer.name(test)
- if (name == o_NameStr) then
- localidx = i
- end
- end
- if (localidx ~= -1) then
- WriteConsole(" Found! Index #" .. tostring(localidx) .. ". @ " .. tostring(GetEntity(localidx)) .. "\n")
- else
- WriteConsole(" Not found!\n")
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement