Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --if GetObjectName(GetMyHero()) ~= "Vayne" then return end
- require('Inspired')
- require('MapPositionGOS')
- LoadIOW()
- --AutoUpdate("/D3ftsu/GoS/master/Vayne.lua","/D3ftsu/GoS/master/Vayne.version","Vayne.lua",4)
- local VayneMenu = MenuConfig("Vayne", "Vayne")
- VayneMenu:Menu("Combo", "Combo")
- VayneMenu.Combo:Menu("Q", "Tumble (Q)")
- VayneMenu.Combo.Q:DropDown("Mode", "Mode", 1, {"Reset", "Normal"})
- VayneMenu.Combo.Q:Boolean("Enabled", "Enabled", true)
- VayneMenu.Combo.Q:Boolean("KeepInvis", "Don't AA While Stealthed", true)
- VayneMenu.Combo.Q:Slider("KeepInvisdis", "Only if Distance <", 230, 0, 550, 1)
- VayneMenu.Combo:Menu("E", "Condemn (E)")
- VayneMenu.Combo.E:Boolean("Enabled", "Enabled", true)
- VayneMenu.Combo.E:Slider("pushdistance", "E Push Distance", 400, 350, 490, 1)
- if Flash ~= nil then VayneMenu.Combo.E:KeyBinding("cf", "Condemn-Flash", string.byte("G")) end
- VayneMenu.Combo:Menu("R", "Final Hour (R)")
- VayneMenu.Combo.R:Boolean("Enabled", "Enabled", true)
- VayneMenu.Combo.R:Slider("Rifthp", "if Target Health % <", 70, 1, 100, 1)
- VayneMenu.Combo.R:Slider("Rifhp", "if Health % <", 55, 1, 100, 1)
- VayneMenu.Combo.R:Slider("Rminally", "Minimum Allies in Range", 2, 0, 4, 1)
- VayneMenu.Combo.R:Slider("Rallyrange", "Range", 1000, 1, 2000, 10)
- VayneMenu.Combo.R:Slider("Rminenemy", "Minimum Enemies in Range", 2, 1, 5, 1)
- VayneMenu.Combo.R:Slider("Renemyrange", "Range", 1000, 1, 2000, 10)
- VayneMenu.Combo:Boolean("Items", "Use Items", true)
- VayneMenu.Combo:Slider("myHP", "if HP % <", 50, 0, 100, 1)
- VayneMenu.Combo:Slider("targetHP", "if Target HP % >", 20, 0, 100, 1)
- VayneMenu.Combo:Boolean("QSS", "Use QSS", true)
- VayneMenu.Combo:Slider("QSSHP", "if My Health % <", 75, 0, 100, 1)
- VayneMenu:Menu("Misc", "Misc")
- VayneMenu.Misc:Menu("EMenu", "AutoStun")
- VayneMenu.Misc:Boolean("lowhp", "Peel with E when low health", true)
- if Ignite ~= nil then VayneMenu.Misc:Boolean("AutoIgnite", "Auto Ignite", true) end
- VayneMenu:Menu("Drawings", "Drawings")
- VayneMenu.Drawings:Boolean("Q", "Draw Q Range", true)
- VayneMenu.Drawings:Boolean("E", "Draw E Range", true)
- VayneMenu:Menu("Interrupt", "Interrupt (E)")
- DelayAction(function()
- local str = {[_Q] = "Q", [_W] = "W", [_E] = "E", [_R] = "R"}
- for i, spell in pairs(CHANELLING_SPELLS) do
- for _,k in pairs(GetEnemyHeroes()) do
- if spell["Name"] == GetObjectName(k) then
- VayneMenu.Interrupt:Boolean(GetObjectName(k).."Inter", "On "..GetObjectName(k).." "..(type(spell.Spellslot) == 'number' and str[spell.Spellslot]), true)
- end
- end
- end
- for _,k in pairs(GetEnemyHeroes()) do
- VayneMenu.Misc.EMenu:Boolean(GetObjectName(k).."Pleb", ""..GetObjectName(k).."", true)
- end
- end, 0)
- OnProcessSpell(function(unit, spell)
- if GetObjectType(unit) == Obj_AI_Hero and GetTeam(unit) ~= GetTeam(myHero) and IsReady(_E) then
- if CHANELLING_SPELLS[spell.name] then
- if IsInDistance(unit, 615) and GetObjectName(unit) == CHANELLING_SPELLS[spell.name].Name and VayneMenu.Interrupt[GetObjectName(unit).."Inter"]:Value() then
- CastTargetSpell(unit, _E)
- end
- end
- end
- end)
- OnDraw(function()
- pos = GetOrigin(myHero)
- if VayneMenu.Drawings.Q:Value() then DrawCircle(pos,GetCastRange(myHero,_Q),1,25,GoS.Pink) end
- if VayneMenu.Drawings.E:Value() then DrawCircle(pos,GetCastRange(myHero,_E),1,25,GoS.Blue) end
- end)
- OnProcessSpellAttack(function(unit,spell)
- DelayAction(function()
- if unit == myHero and IOW:Mode() == "Combo" and spell.target ~= nil and VayneMenu.Combo.Q.Enabled:Value() and IsReady(_Q) then
- local AfterTumblePos = GetOrigin(myHero) + (Vector(GetMousePos()) - GetOrigin(myHero)):normalized() * 300
- local DistanceAfterTumble = GetDistance(AfterTumblePos, spell.target)
- if DistanceAfterTumble < 800 and DistanceAfterTumble > 200 then
- CastSkillShot(_Q,GetMousePos())
- end
- if GetDistance(spell.target) > 630 and DistanceAfterTumble < 630 then
- CastSkillShot(_Q,GetMousePos())
- end
- end
- end, GetWindUp(myHero))
- end)
- local IsStealthed = false
- OnTick(function()
- local target = GetCurrentTarget()
- local QSS = GetItemSlot(myHero,3140) > 0 and GetItemSlot(myHero,3140) or GetItemSlot(myHero,3139) > 0 and GetItemSlot(myHero,3139) or nil
- local BRK = GetItemSlot(myHero,3153) > 0 and GetItemSlot(myHero,3153) or GetItemSlot(myHero,3144) > 0 and GetItemSlot(myHero,3144) or nil
- local YMG = GetItemSlot(myHero,3142) > 0 and GetItemSlot(myHero,3142) or nil
- local mousePos = GetMousePos()
- if IOW:Mode() == "Combo" then
- if VayneMenu.Combo.Q.Mode:Value() == 2 and target ~= nil and VayneMenu.Combo.Q.Enabled:Value() then
- local AfterTumblePos = GetOrigin(myHero) + (Vector(mousePos) - GetOrigin(myHero)):normalized() * 300
- local DistanceAfterTumble = GetDistance(AfterTumblePos, target)
- if GetDistance(target) > 630 and DistanceAfterTumble < 630 then
- CastSkillShot(_Q,mousePos)
- end
- end
- if IsReady(_E) and VayneMenu.Combo.E.Enabled:Value() and ValidTarget(target, 710) then
- StunThisPleb(target)
- end
- if IsReady(_R) and VayneMenu.Combo.R.Enabled:Value() and ValidTarget(target, VayneMenu.Combo.R.Renemyrange:Value()) and GetPercentHP(target) <= VayneMenu.Combo.R.Rifthp:Value() and GetPercentHP(myHero) <= VayneMenu.Combo.R.Rifhp:Value() and EnemiesAround(GetOrigin(myHero), VayneMenu.Combo.R.Renemyrange:Value()) >= VayneMenu.Combo.R.Rminenemy:Value() and AlliesAround(GetOrigin(myHero), VayneMenu.Combo.R.Rallyrange:Value()) >= VayneMenu.Combo.R.Rminally:Value() then
- CastSpell(_R)
- end
- if QSS and IsReady(QSS) and VayneMenu.Combo.QSS:Value() and IsImmobile(myHero) or IsSlowed(myHero) or toQSS and GetPercentHP(myHero) < VayneMenu.Combo.QSSHP:Value() then
- CastSpell(QSS)
- end
- if IsStealthed and target ~= nil and GetDistance(target) > VayneMenu.Combo.Q.KeepInvisdis:Value() then
- IOW.attacksEnabled = true
- elseif not IsStealthed then
- IOW.attacksEnabled = true
- elseif IsStealthed and VayneMenu.Combo.Q.KeepInvis:Value() and target ~= nil and GetDistance(target) < VayneMenu.Combo.Q.KeepInvisdis:Value() then
- IOW.attacksEnabled = false
- end
- end
- local ElitePleb = ClosestEnemy(mousePos)
- if Flash and IsReady(Flash) and IsReady(_E) and VayneMenu.Combo.E.cf:Value() and ValidTarget(ElitePleb, 1100) then
- StunThisPlebV2(ElitePleb)
- end
- for i,enemy in pairs(GetEnemyHeroes()) do
- if IOW:Mode() == "Combo" then
- if BRK and IsReady(BRK) and VayneMenu.Combo.Items:Value() and ValidTarget(enemy, 550) and GetPercentHP(myHero) < VayneMenu.Combo.myHP:Value() and GetPercentHP(enemy) > VayneMenu.Combo.targetHP:Value() then
- CastTargetSpell(enemy, BRK)
- end
- if YMG and IsReady(YMG) and VayneMenu.Combo.Items:Value() and ValidTarget(enemy, 600) then
- CastSpell(YMG)
- end
- end
- if Ignite and VayneMenu.Misc.AutoIgnite:Value() then
- if IsReady(Ignite) and 20*GetLevel(myHero)+50 > GetCurrentHP(enemy)+GetDmgShield(enemy)+GetHPRegen(enemy)*3 and ValidTarget(enemy, 900) then
- CastTargetSpell(enemy, Ignite)
- end
- end
- if IsReady(_E) and VayneMenu.Misc.EMenu[GetObjectName(enemy).."Pleb"]:Value() and ValidTarget(enemy, 710) then
- StunThisPleb(enemy)
- end
- if IsReady(_E) and VayneMenu.Misc.lowhp:Value() and GetPercentHP(myHero) <= 15 and ValidTarget(enemy,375) then
- CastTargetSpell(enemy, _E)
- end
- end
- end)
- OnUpdateBuff(function(unit,buff)
- if unit == myHero and buff.Name == "vaynetumblefade" then
- IsStealthed = true
- end
- end)
- OnRemoveBuff(function(unit,buff)
- if unit == myHero and buff.Name == "vaynetumblefade" then
- IsStealthed = false
- end
- end)
- function StunThisPleb(unit)
- local EPred = GetPredictionForPlayer(GetOrigin(myHero),unit,GetMoveSpeed(unit),2000,250,GetCastRange(myHero,_E),1,false,true)
- local PredPos = Vector(EPred.PredPos)
- local HeroPos = Vector(myHero)
- local maxERange = PredPos - (PredPos - HeroPos) * ( - VayneMenu.Combo.E.pushdistance:Value() / GetDistance(EPred.PredPos))
- local shootLine = Line(Point(PredPos.x, PredPos.y, PredPos.z), Point(maxERange.x, maxERange.y, maxERange.z))
- for i, Pos in pairs(shootLine:__getPoints()) do
- if MapPosition:inWall(Pos) then
- CastTargetSpell(unit, _E)
- end
- end
- end
- function StunThisPlebV2(unit)
- local EPred = GetPredictionForPlayer(GetMousePos(),unit,GetMoveSpeed(unit),2000,250,GetCastRange(myHero,_E),1,false,true)
- local PredPos = Vector(EPred.PredPos)
- local maxERange = PredPos - (PredPos - GetMousePos()) * ( - VayneMenu.Combo.E.pushdistance:Value() / GetDistance(GetMousePos(), EPred.PredPos))
- local shootLine = Line(Point(PredPos.x, PredPos.y, PredPos.z), Point(maxERange.x, maxERange.y, maxERange.z))
- for i, Pos in pairs(shootLine:__getPoints()) do
- if MapPosition:inWall(Pos) then
- CastTargetSpell(unit, _E)
- DelayAction(function() CastSkillShot(Flash,GetMousePos()) end, 1)
- end
- end
- end
- Shield = {}
- Recalling = {}
- Slowed = {}
- Immobile = {}
- toQSS = false
- ccstun = {5,29,30,24}
- ccslow = {9,21,22,28}
- RecallTable = {"Recall", "RecallImproved", "OdinRecall"}
- OnUpdateBuff(function(unit,buff)
- if unit == myHero then
- if buff.Name == "itemmagicshankcharge" then
- LudensStacks = buff.Count
- end
- if buff.Name == "zedultexecute" or buff.Name == "summonerexhaust" then
- toQSS = true
- end
- end
- for i = 1, #RecallTable do
- if buff.Name == RecallTable[i] then
- Recalling[GetNetworkID(unit)] = buff.Count
- end
- end
- for i = 1, #ccstun do
- if buff.Type == ccstun[i] then
- Immobile[GetNetworkID(unit)] = buff.Count
- DelayAction(function() Immobile[GetNetworkID(unit)] = 0 end, buff.ExpireTime-buff.StartTime)
- end
- end
- if buff.Type == 15 then
- Shield[GetNetworkID(unit)] = buff.Count
- end
- end)
- OnRemoveBuff(function(unit,buff)
- if unit == myHero then
- if buff.Name == "itemmagicshankcharge" then
- LudensStacks = 0
- end
- if buff.Name == "zedultexecute" or buff.Name == "summonerexhaust" then
- toQSS = false
- end
- end
- for i = 1, #RecallTable do
- if buff.Name == RecallTable[i] then
- Recalling[GetNetworkID(unit)] = 0
- end
- end
- if buff.Type == 15 then
- Shield[GetNetworkID(unit)] = 0
- end
- end)
- function HasSpellShield(unit)
- return (Shield[GetNetworkID(unit)] or 0) > 0
- end
- function IsImmobile(unit)
- return (Immobile[GetNetworkID(unit)] or 0) > 0
- end
- function IsSlowed(unit)
- return (Slowed[GetNetworkID(unit)] or 0) > 0
- end
- function IsRecalling(unit)
- return (Recalling[GetNetworkID(unit)] or 0) > 0
- end
- AddGapcloseEvent(_E, 550, true, VayneMenu)
- PrintChat(string.format("<font color='#1244EA'>Vayne:</font> <font color='#FFFFFF'> By Deftsu Loaded, Have A Good Game ! </font>"))
- PrintChat("Have Fun Using D3Carry Scripts: " ..GetObjectBaseName(myHero).." -- Fixed by Inspired because Deftsu is a tard.")
Advertisement
Add Comment
Please, Sign In to add comment