Jump to content

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
Photo

Int script


  • Please log in to reply
3 replies to this topic

#1
kontonamn

kontonamn

    Newbie

  • Members
  • 2 posts

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?


  • 0

#2
Tenma

Tenma

    Newbie

  • Members
  • 7 posts

Funny sounding script haha. What do you plan on using it for though? I'm curious :P

You'd probably get banned not for scripting but actually running it down  :D  :D  :D


  • 0

#3
Async

Async

    Advanced Member

  • Contributor
  • 107 posts

GoS injects once the game has started, the process prior to that cannot be done with this tool.


  • 0

#4
Devereux

Devereux

    Advanced Member

  • Trial Developer
  • 112 posts

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




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users