Hi this is my first Try to do a script.
This Sivir Scripts is using q+w on enemys.
Use the Ultimate yourself to chase the enemy or kill him.
ToDo: Auto Ultimate, when the Enemy is faster then you in walking with ON/OFF function.
The Sivir Shield must be used automatically if you set it in settings (F7), if not please post it. Then i got another TODO
https://github.com/p.../GoS/wiki/Sivir
require('Inspired') AddInfo("Sivir", "Sivir") AddButton("Q", "Use [Q] in Combo", true) AddButton("W", "Use [W] in Combo", true) AddKey("Combo", "Do Combo", string.byte(" ")) AddKey("LastHit", "Do LastHit", string.byte("X")) AddKey("LaneClear", "Do LaneClear", string.byte("V")) local myHero = GetMyHero() OnLoop(function(myHero) DrawMenu() myHeroPos = GetOrigin(myHero) local target = GetCurrentTarget() if GetKeyValue("Combo") then if CanUseSpell(myHero, _Q) == READY and GetButtonValue("Q") then if ValidTarget(target, GetCastRange(myHero, _Q)) then local QPred = GetPredictionForPlayer(myHeroPos, target, GetMoveSpeed(target), 2000, 250, GetCastRange(myHero, _Q), 60, true, true) if QPred.HitChance == 1 then CastSkillShot(_Q, QPred.PredPos.x, QPred.PredPos.y, QPred.PredPos.z) end end end if CanUseSpell(myHero, _W) == READY and GetButtonValue("W") then if ValidTarget(target, GetCastRange(myHero, _W)) then local WPred = GetPredictionForPlayer(myHeroPos, target, GetMoveSpeed(target), 1600, 250, GetCastRange(myHero, _Q), 80, false, true) if WPred.HitChance == 1 then CastSkillShot(_W, WPred.PredPos.x, WPred.PredPos.y, WPred.PredPos.z) end end end end end)
Greetings