Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- BardMenu = Menu("Bard", "Bard:")
- BardMenu:SubMenu("Combo", "Combo")
- BardMenu.Combo:Boolean("Q", "Use Q", true)
- OnLoop(function(myHero)
- local target = GetCurrentTarget()
- if IOW:Mode() == "Combo" then
- local QPred = GetPredictionForPlayer(GoS:myHeroPos(),target,GetMoveSpeed(target),2200,625,1300,90,false,false)
- if CanUseSpell(myHero, _Q) == READY and QPred.HitChance == 1 and GoS:ValidTarget(target, 950) and BardMenu.Combo.Q:Value() then
- CastSkillShot(_Q,QPred.PredPos.x,QPred.PredPos.y,QPred.PredPos.z)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement