Login to ZARP
Username: Password: Remember me

TOPIC: @Sike

@Sike 5 years 4 months ago #1056297

How the fuck did you come up with the wild idea Nafe is making a gmod cheat? I seriously want to have an actual conversation with you.
  • ChikenGod
  • ChikenGod's Avatar
  • Offline
  • Gold Boarder
  • ZARP VIP
  • BiWx Vape still not implemented smh.
  • Posts: 1799
  • Thanks received: 271
  • Karma: -11
Login or register to post a reply.

@Sike 5 years 4 months ago #1056298

He actually did make one though!! It's my favorite cheat!
  • Rick Townsend
  • Rick Townsend's Avatar
  • Offline
  • Expert Boarder
  • ZARP VIP Gold Badge
  • Dreamy, Amazing, Radiant, Knowledgable
  • Posts: 1516
  • Thanks received: 500
  • Karma: 55



Ex. Community Council Member
Ex. SSRP Super Administrator
Ex. Discord Administrator
Ex. TeamSpeak Staff
Ex. Forum Staff


Rick Townsend
Login or register to post a reply.

@Sike 5 years 4 months ago #1056299

Rick Johnson wrote:
He actually did make one though!! It's my favorite cheat!
What? Like CitizenPackets? xd
  • ChikenGod
  • ChikenGod's Avatar
  • Offline
  • Gold Boarder
  • ZARP VIP
  • BiWx Vape still not implemented smh.
  • Posts: 1799
  • Thanks received: 271
  • Karma: -11
Login or register to post a reply.

@Sike 5 years 4 months ago #1056301

Yes!
  • Rick Townsend
  • Rick Townsend's Avatar
  • Offline
  • Expert Boarder
  • ZARP VIP Gold Badge
  • Dreamy, Amazing, Radiant, Knowledgable
  • Posts: 1516
  • Thanks received: 500
  • Karma: 55



Ex. Community Council Member
Ex. SSRP Super Administrator
Ex. Discord Administrator
Ex. TeamSpeak Staff
Ex. Forum Staff


Rick Townsend
Login or register to post a reply.

@Sike 5 years 4 months ago #1056306

Chinese cheats number 1
  • A Good Pianist
  • A Good Pianist's Avatar
  • Offline
  • Spectacular Boarder
  • ZARP VIP Golden Blue Badge
  • A Wob A Bob Bob
  • Posts: 15000
  • Thanks received: 3914
  • Karma: 22
Login or register to post a reply.

@Sike 5 years 4 months ago #1056311

Rick Johnson wrote:
He actually did make one though!! It's my favorite cheat!
I make scripts for League of Legends, and aimbots for Overwatch for some cash here and then. For some decent proof I will provide examples of things I have made in the past.


This here shows that I can make complex polygons using DirectX with no framedrops; in LoL, this would usually crash your game and tank your fps. (Coded in C++)


This is something I've been working on recently, here is 25,000+ lines on your screen at once with 0 fps drops at all! This is a very very big achievement of mine and I'm incredibly proud of it. (Coded in lua)

And now for some real proof, here's an upcoming prediction for Non-Memory based aimbot for overwatch written in lua
local function ComputeIntersect(unit, tOrigin, sourcePos, delay, speed)
local delta = 0
local path = unit.pathing
local pPath = tOrigin
local pathSpeed = unit.ms
for i = path.pathIndex, path.pathCount do
local cPath = unit:GetPath(i)
local dx, dz = pPath.x - cPath.x, pPath.z - cPath.z
local dist = LocalSqrt(dx * dx + dz * dz)
local vx, vz = (dx / dist) * pathSpeed, (dz / dist) * pathSpeed

local timeToHit = delay
if speed < LocalHuge then
local a = (vx * vx) + (vz * vz) - (speed * speed)
local b = 2 * (vx * (tOrigin.x - sourcePos.x) + vz * (tOrigin.z - sourcePos.z))
local c = (tOrigin.x * tOrigin.x) + (tOrigin.z * tOrigin.z) + (sourcePos.x * sourcePos.x) + (sourcePos.z * sourcePos.z) - (2 * sourcePos.x * tOrigin.x) - (2 * sourcePos.z * tOrigin.z)
local d = b * b - (4 * a * c)
local t = 0
if d >= 0 then
d = LocalSqrt(d)
local t1 = (-b + d) / (2 * a)
local t2 = (-b - d) / (2 * a)
t = LocalMin(t1, t2)
if t < 0 then
t = LocalMax(t1, t2, 0)
end
end
timeToHit = timeToHit + t
end
if timeToHit - delta < (dist / pathSpeed) then
return pPath + (cPath - pPath):Normalized() * ((timeToHit - delta) * pathSpeed)
end
pPath = cPath
delta = delta + (dist / pathSpeed)
end
return unit:GetPath(path.pathCount)
end
  • Nafe
  • Nafe's Avatar
  • Offline
  • Former Community Manager
  • ZARP VIP Golden Blue Badge
  • Posts: 18580
  • Thanks received: 11872
  • Karma: -377
Last Edit: 5 years 4 months ago by Nafe.
Login or register to post a reply.
The following user(s) said Thank You: Rick Townsend

@Sike 5 years 4 months ago #1056453

Nafe wrote:
Rick Johnson wrote:
He actually did make one though!! It's my favorite cheat!
I make scripts for League of Legends, and aimbots for Overwatch for some cash here and then. For some decent proof I will provide examples of things I have made in the past.


This here shows that I can make complex polygons using DirectX with no framedrops; in LoL, this would usually crash your game and tank your fps. (Coded in C++)


This is something I've been working on recently, here is 25,000+ lines on your screen at once with 0 fps drops at all! This is a very very big achievement of mine and I'm incredibly proud of it. (Coded in lua)

And now for some real proof, here's an upcoming prediction for Non-Memory based aimbot for overwatch written in lua
local function ComputeIntersect(unit, tOrigin, sourcePos, delay, speed)
local delta = 0
local path = unit.pathing
local pPath = tOrigin
local pathSpeed = unit.ms
for i = path.pathIndex, path.pathCount do
local cPath = unit:GetPath(i)
local dx, dz = pPath.x - cPath.x, pPath.z - cPath.z
local dist = LocalSqrt(dx * dx + dz * dz)
local vx, vz = (dx / dist) * pathSpeed, (dz / dist) * pathSpeed

local timeToHit = delay
if speed < LocalHuge then
local a = (vx * vx) + (vz * vz) - (speed * speed)
local b = 2 * (vx * (tOrigin.x - sourcePos.x) + vz * (tOrigin.z - sourcePos.z))
local c = (tOrigin.x * tOrigin.x) + (tOrigin.z * tOrigin.z) + (sourcePos.x * sourcePos.x) + (sourcePos.z * sourcePos.z) - (2 * sourcePos.x * tOrigin.x) - (2 * sourcePos.z * tOrigin.z)
local d = b * b - (4 * a * c)
local t = 0
if d >= 0 then
d = LocalSqrt(d)
local t1 = (-b + d) / (2 * a)
local t2 = (-b - d) / (2 * a)
t = LocalMin(t1, t2)
if t < 0 then
t = LocalMax(t1, t2, 0)
end
end
timeToHit = timeToHit + t
end
if timeToHit - delta < (dist / pathSpeed) then
return pPath + (cPath - pPath):Normalized() * ((timeToHit - delta) * pathSpeed)
end
pPath = cPath
delta = delta + (dist / pathSpeed)
end
return unit:GetPath(path.pathCount)
end

Didn't you learn to code just a few months ago?
  • catboy sven ツ
  • catboy sven ツ's Avatar
  • Offline
  • Adept Boarder
  • ZARP VIP
  • Respected Zarp Contributor
  • Posts: 7193
  • Thanks received: 1544
  • Karma: -45
ex-minecraft owner, zarp legend (Was there during the infancy of Zarp), ex-ssrp admin, ex-teamspeak emblem (For SSRP admin & minecraft owner)








Login or register to post a reply.

@Sike 5 years 4 months ago #1056454

Aspect wrote:
Nafe wrote:
Rick Johnson wrote:
He actually did make one though!! It's my favorite cheat!
I make scripts for League of Legends, and aimbots for Overwatch for some cash here and then. For some decent proof I will provide examples of things I have made in the past.


This here shows that I can make complex polygons using DirectX with no framedrops; in LoL, this would usually crash your game and tank your fps. (Coded in C++)


This is something I've been working on recently, here is 25,000+ lines on your screen at once with 0 fps drops at all! This is a very very big achievement of mine and I'm incredibly proud of it. (Coded in lua)

And now for some real proof, here's an upcoming prediction for Non-Memory based aimbot for overwatch written in lua
local function ComputeIntersect(unit, tOrigin, sourcePos, delay, speed)
local delta = 0
local path = unit.pathing
local pPath = tOrigin
local pathSpeed = unit.ms
for i = path.pathIndex, path.pathCount do
local cPath = unit:GetPath(i)
local dx, dz = pPath.x - cPath.x, pPath.z - cPath.z
local dist = LocalSqrt(dx * dx + dz * dz)
local vx, vz = (dx / dist) * pathSpeed, (dz / dist) * pathSpeed

local timeToHit = delay
if speed < LocalHuge then
local a = (vx * vx) + (vz * vz) - (speed * speed)
local b = 2 * (vx * (tOrigin.x - sourcePos.x) + vz * (tOrigin.z - sourcePos.z))
local c = (tOrigin.x * tOrigin.x) + (tOrigin.z * tOrigin.z) + (sourcePos.x * sourcePos.x) + (sourcePos.z * sourcePos.z) - (2 * sourcePos.x * tOrigin.x) - (2 * sourcePos.z * tOrigin.z)
local d = b * b - (4 * a * c)
local t = 0
if d >= 0 then
d = LocalSqrt(d)
local t1 = (-b + d) / (2 * a)
local t2 = (-b - d) / (2 * a)
t = LocalMin(t1, t2)
if t < 0 then
t = LocalMax(t1, t2, 0)
end
end
timeToHit = timeToHit + t
end
if timeToHit - delta < (dist / pathSpeed) then
return pPath + (cPath - pPath):Normalized() * ((timeToHit - delta) * pathSpeed)
end
pPath = cPath
delta = delta + (dist / pathSpeed)
end
return unit:GetPath(path.pathCount)
end

Didn't you learn to code just a few months ago?

I started learning to code exactly 1 month 3 weeks ago, I gave up after 4 days because I just couldn't be bothered.

I got this from here:
zarpgaming.com/index.php/forum/7-introdu...ing-for-a-new-server
  • Nafe
  • Nafe's Avatar
  • Offline
  • Former Community Manager
  • ZARP VIP Golden Blue Badge
  • Posts: 18580
  • Thanks received: 11872
  • Karma: -377
Login or register to post a reply.

@Sike 5 years 4 months ago #1056459

Nafe wrote:
Aspect wrote:
Nafe wrote:
Rick Johnson wrote:
He actually did make one though!! It's my favorite cheat!
I make scripts for League of Legends, and aimbots for Overwatch for some cash here and then. For some decent proof I will provide examples of things I have made in the past.


This here shows that I can make complex polygons using DirectX with no framedrops; in LoL, this would usually crash your game and tank your fps. (Coded in C++)


This is something I've been working on recently, here is 25,000+ lines on your screen at once with 0 fps drops at all! This is a very very big achievement of mine and I'm incredibly proud of it. (Coded in lua)

And now for some real proof, here's an upcoming prediction for Non-Memory based aimbot for overwatch written in lua
local function ComputeIntersect(unit, tOrigin, sourcePos, delay, speed)
local delta = 0
local path = unit.pathing
local pPath = tOrigin
local pathSpeed = unit.ms
for i = path.pathIndex, path.pathCount do
local cPath = unit:GetPath(i)
local dx, dz = pPath.x - cPath.x, pPath.z - cPath.z
local dist = LocalSqrt(dx * dx + dz * dz)
local vx, vz = (dx / dist) * pathSpeed, (dz / dist) * pathSpeed

local timeToHit = delay
if speed < LocalHuge then
local a = (vx * vx) + (vz * vz) - (speed * speed)
local b = 2 * (vx * (tOrigin.x - sourcePos.x) + vz * (tOrigin.z - sourcePos.z))
local c = (tOrigin.x * tOrigin.x) + (tOrigin.z * tOrigin.z) + (sourcePos.x * sourcePos.x) + (sourcePos.z * sourcePos.z) - (2 * sourcePos.x * tOrigin.x) - (2 * sourcePos.z * tOrigin.z)
local d = b * b - (4 * a * c)
local t = 0
if d >= 0 then
d = LocalSqrt(d)
local t1 = (-b + d) / (2 * a)
local t2 = (-b - d) / (2 * a)
t = LocalMin(t1, t2)
if t < 0 then
t = LocalMax(t1, t2, 0)
end
end
timeToHit = timeToHit + t
end
if timeToHit - delta < (dist / pathSpeed) then
return pPath + (cPath - pPath):Normalized() * ((timeToHit - delta) * pathSpeed)
end
pPath = cPath
delta = delta + (dist / pathSpeed)
end
return unit:GetPath(path.pathCount)
end

Didn't you learn to code just a few months ago?

I started learning to code exactly 1 month 3 weeks ago, I gave up after 4 days because I just couldn't be bothered.

I got this from here:
zarpgaming.com/index.php/forum/7-introdu...ing-for-a-new-server

Oh ok. Well the first two weeks are intimidating for most people but once you get past that you'll realise that it can be pretty fun. It's important that you don't raise the bar too high so it becomes a more harmonic thing rather than a chore to torture yourself with. Setting goals will make it much more appealing rather than coding just for the sake of coding
  • catboy sven ツ
  • catboy sven ツ's Avatar
  • Offline
  • Adept Boarder
  • ZARP VIP
  • Respected Zarp Contributor
  • Posts: 7193
  • Thanks received: 1544
  • Karma: -45
ex-minecraft owner, zarp legend (Was there during the infancy of Zarp), ex-ssrp admin, ex-teamspeak emblem (For SSRP admin & minecraft owner)








Login or register to post a reply.

@Sike 5 years 4 months ago #1056702

Aspect wrote:
Nafe wrote:
Aspect wrote:
Nafe wrote:
Rick Johnson wrote:
He actually did make one though!! It's my favorite cheat!
I make scripts for League of Legends, and aimbots for Overwatch for some cash here and then. For some decent proof I will provide examples of things I have made in the past.


This here shows that I can make complex polygons using DirectX with no framedrops; in LoL, this would usually crash your game and tank your fps. (Coded in C++)


This is something I've been working on recently, here is 25,000+ lines on your screen at once with 0 fps drops at all! This is a very very big achievement of mine and I'm incredibly proud of it. (Coded in lua)

And now for some real proof, here's an upcoming prediction for Non-Memory based aimbot for overwatch written in lua
local function ComputeIntersect(unit, tOrigin, sourcePos, delay, speed)
local delta = 0
local path = unit.pathing
local pPath = tOrigin
local pathSpeed = unit.ms
for i = path.pathIndex, path.pathCount do
local cPath = unit:GetPath(i)
local dx, dz = pPath.x - cPath.x, pPath.z - cPath.z
local dist = LocalSqrt(dx * dx + dz * dz)
local vx, vz = (dx / dist) * pathSpeed, (dz / dist) * pathSpeed

local timeToHit = delay
if speed < LocalHuge then
local a = (vx * vx) + (vz * vz) - (speed * speed)
local b = 2 * (vx * (tOrigin.x - sourcePos.x) + vz * (tOrigin.z - sourcePos.z))
local c = (tOrigin.x * tOrigin.x) + (tOrigin.z * tOrigin.z) + (sourcePos.x * sourcePos.x) + (sourcePos.z * sourcePos.z) - (2 * sourcePos.x * tOrigin.x) - (2 * sourcePos.z * tOrigin.z)
local d = b * b - (4 * a * c)
local t = 0
if d >= 0 then
d = LocalSqrt(d)
local t1 = (-b + d) / (2 * a)
local t2 = (-b - d) / (2 * a)
t = LocalMin(t1, t2)
if t < 0 then
t = LocalMax(t1, t2, 0)
end
end
timeToHit = timeToHit + t
end
if timeToHit - delta < (dist / pathSpeed) then
return pPath + (cPath - pPath):Normalized() * ((timeToHit - delta) * pathSpeed)
end
pPath = cPath
delta = delta + (dist / pathSpeed)
end
return unit:GetPath(path.pathCount)
end

Didn't you learn to code just a few months ago?

I started learning to code exactly 1 month 3 weeks ago, I gave up after 4 days because I just couldn't be bothered.

I got this from here:
zarpgaming.com/index.php/forum/7-introdu...ing-for-a-new-server

Oh ok. Well the first two weeks are intimidating for most people but once you get past that you'll realise that it can be pretty fun. It's important that you don't raise the bar too high so it becomes a more harmonic thing rather than a chore to torture yourself with. Setting goals will make it much more appealing rather than coding just for the sake of coding
or if you are a mascohist feel free to torture yourself with it
  • ChikenGod
  • ChikenGod's Avatar
  • Offline
  • Gold Boarder
  • ZARP VIP
  • BiWx Vape still not implemented smh.
  • Posts: 1799
  • Thanks received: 271
  • Karma: -11
Login or register to post a reply.
Time to create page: 0.118 seconds

131 PLAYERS ONLINE

Connect to server View Gametracker DarkRP 1
6/127
online
Connect to server View Gametracker Deathrun
0/40
online
Connect to server View Gametracker TTT
0/47
online
Connect to server View Gametracker Bhop
0/32
online
Connect to server View Gametracker Surf
0/32
online
Connect to server View Gametracker Prop Hunt
0/42
online
Connect to server View Gametracker Sandbox
0/0
offline
Connect to server Discord
125/785
online
Top