can someone make a script that will start a game, pick a champ, ban a champ, and run it down mid every game 24/7?
Welcome to Gaming On Steroids Forums
Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, post status updates, manage your profile and so much more. This message will be removed once you have signed in.Login to Account Create an Account
Int script
Started By
kontonamn
, Dec 27 2021 04:05
#1
Posted 27 December 2021 - 04:05
#2
Posted 27 December 2021 - 07:43
Funny sounding script haha. What do you plan on using it for though? I'm curious ![]()
You'd probably get banned not for scripting but actually running it down
![]()
#3
Posted 01 January 2022 - 02:26
GoS injects once the game has started, the process prior to that cannot be done with this tool.
#4
Posted 02 January 2022 - 03:07
If you get the game started, then this script will do the inting for you. ![]()
-----------------------
-- Start Vectors
-----------------------
local startTop = Vector({
x = 444,
y = 183,
z = 462
})
local startBot = Vector({
x = 14000,
y = 171,
z = 14226
})
local targetPosition
function onTickEvent()
if myHero.dead then return end
local mmCoords = targetPosition:ToMM()
Control.RightClick(mmCoords.x, mmCoords.y)
end
function onLoadEvent()
Callback.Add("Tick", onTickEvent)
if myHero.pos:DistanceTo(startTop) < myHero.pos:DistanceTo(startBot) then
targetPosition = startBot
else
targetPosition = startTop
end
end
Callback.Add('Load', onLoadEvent)
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users
Sign In
Create Account

Back to top
Report







