Looks like we could use a Skarner script, since he's freeweek and busted as ****.
PrintChat("What the hell are these crystals all over the map?")
PrintChat("Skarner by TSM loaded.")
Config = scriptConfig("Skarner", "Skarner")
Config.addParam("Q", "Use Q", SCRIPT_PARAM_ONOFF, true)
Config.addParam("W", "Use W", SCRIPT_PARAM_ONOFF, true)
Config.addParam("E", "Use E", SCRIPT_PARAM_ONOFF, true)
myIAC = IAC()
OnLoop(function(myHero)
local unit = GetTarget(1000, DAMAGE_PHYSICAL)
if ValidTarget(unit, 1000) then
if IWalkConfig.Combo then
local uPos = GetOrigin(unit)
if CanUseSpell(myHero, _Q) == READY and Config.Q and IsInDistance(unit, 350) then
CastSpell(_Q)
end
if CanUseSpell(myHero, _W) == READY and Config.W and IsInDistance(unit, 600) then
CastSpell(_W)
end
if CanUseSpell(myHero, _E) == READY and Config.E and IsInDistance(unit, 1000) then
PredCast(_E, unit, 1500, 250, 1000, 70, false)
end
end
end
end
)
Requires Inspired and IAC duh.
Name it Skarner.Lua and make sure your testscript1.lua has this in it
pcall( require, GetObjectName(GetMyHero()) )
Hold spacebar and win. Use R yourself. Maybe later I'll add waveclear/jungle clear and item use but honestly just mash the keyboard this champ is ****ing dumb.
https://github.com/T...ter/Skarner.lua
Sign In
Create Account

Back to top
Report








