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

5.14 Smart Sivir (ADC)


  • Please log in to reply
3 replies to this topic

#1
MarCiii

MarCiii

    Advanced Member

  • Members
  • 217 posts
  • LocationMoTBase City

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


  • 1

#2
Deftsu

Deftsu

    donthackourgames

  • Ex-Core Dev
  • PipPipPip
  • 4,812 posts

if CanUseSpell(myHero, _E) == READY and GetButtonValue("E") then
            if ValidTarget(target, GetCastRange(myHero, _E)) then
                local EPred = GetPredictionForPlayer(myHeroPos, target, GetMoveSpeed(target), 1600, 250, GetCastRange(myHero, _Q), 80, false, true)            
                if EPred.HitChance == 1 then
                    CastSkillShot(_E, EPred.PredPos.x, EPred.PredPos.y, EPred.PredPos.z)
                end
            end
        end

 

wtf is that ? O.o


  • 0

#3
snowbell

snowbell

    Advanced Member

  • Members
  • 144 posts
if CanUseSpell(myHero, _E) == READY and GetButtonValue("E") then
            if ValidTarget(target, GetCastRange(myHero, _E)) then
                local EPred = GetPredictionForPlayer(myHeroPos, target, GetMoveSpeed(target), 1600, 250, GetCastRange(myHero, _Q), 80, false, true)            
                if EPred.HitChance == 1 then
                    CastSkillShot(_E, EPred.PredPos.x, EPred.PredPos.y, EPred.PredPos.z)
                end
            end
        end

wtf is that ? O.o

 

yah i see that also e of sivir is shield 


  • 0

#4
MarCiii

MarCiii

    Advanced Member

  • Members
  • 217 posts
  • LocationMoTBase City

My fault copied the wrong script ... :S

I have other settings in LoL with other Keybinds.

ATTACK with W is predicted cause of hitting a minion to get the enemy you chase.


  • 0




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users