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

Request Undying Rage automatic R

tryndamere

Best Answer Zwei , 20 July 2016 - 06:34

if myHero.charName ~= "Tryndamere" then return end
require("OpenPredict")
if FileExist(COMMON_PATH.."MixLib.lua") then
 require('MixLib')
else
 PrintChat("MixLib not found. Please wait for download.")
 DownloadFileAsync("https://raw.githubusercontent.com/VTNEETS/NEET-Scripts/master/MixLib.lua", COMMON_PATH.."MixLib.lua", function() PrintChat("Downloaded MixLib. Please 2x F6!") return end)
end
local rTime = 0
local EData = {delay = 0.050, range = 660, radius = 225, speed = 1300}
local asdf = Menu("T","T")
asdf:Boolean("Q","Q",true)
asdf:Slider("QH","QPercent",30,0,100,1)
asdf:Boolean("W","W",true)
asdf:Boolean("E","E",true)
asdf:Boolean("R","R",true)
asdf:Slider("RH","RPercent",5,0,100,1)
 
OnTick(function()
if GetPercentHP(myHero) < asdf.RH:Value() and EnemiesAround(myHero,1000)>0 and asdf.R:Value() then
CastSpell(3)
end
if Ready(0) and rTime - GetGameTimer() < .2 and not myHero.isRecalling and asdf.Q:Value() and asdf.QH:Value() > GetPercentHP(myHero) then
CastSpell(0)
end
if Mix:Mode() == "Combo" then
local target = GetCurrentTarget()
if Ready(2) and ValidTarget(target,660) and asdf.E:Value() and target.distance > 150 then
CastSkillShot(2,GetPrediction(target,EData).castPos)
end
if Ready(1) and ValidTarget(target,1000) then
CastSpell(1)
end
end
end) 
OnUpdateBuff(function(unit,buffProc)
if unit.isMe and buffProc.Name == "UndyingRage" then
rTime = buffProc.ExpireTime
end
end)
OnRemoveBuff(function(unit,buffProc)
if unit.isMe and buffProc.Name == "UndyingRage" then
rTime = buffProc.ExpireTime
end
end)
Go to the full post »


  • Please log in to reply
1 reply to this topic

#1
yotzin

yotzin

    Member

  • Members
  • 12 posts

Champion: Tryndamere

Features: Ult automatically when health is low


  • 0

#2
Zwei

Zwei

    Advanced Member

  • Contributor
  • 2,201 posts
✓  Best Answer

if myHero.charName ~= "Tryndamere" then return end
require("OpenPredict")
if FileExist(COMMON_PATH.."MixLib.lua") then
 require('MixLib')
else
 PrintChat("MixLib not found. Please wait for download.")
 DownloadFileAsync("https://raw.githubusercontent.com/VTNEETS/NEET-Scripts/master/MixLib.lua", COMMON_PATH.."MixLib.lua", function() PrintChat("Downloaded MixLib. Please 2x F6!") return end)
end
local rTime = 0
local EData = {delay = 0.050, range = 660, radius = 225, speed = 1300}
local asdf = Menu("T","T")
asdf:Boolean("Q","Q",true)
asdf:Slider("QH","QPercent",30,0,100,1)
asdf:Boolean("W","W",true)
asdf:Boolean("E","E",true)
asdf:Boolean("R","R",true)
asdf:Slider("RH","RPercent",5,0,100,1)
 
OnTick(function()
if GetPercentHP(myHero) < asdf.RH:Value() and EnemiesAround(myHero,1000)>0 and asdf.R:Value() then
CastSpell(3)
end
if Ready(0) and rTime - GetGameTimer() < .2 and not myHero.isRecalling and asdf.Q:Value() and asdf.QH:Value() > GetPercentHP(myHero) then
CastSpell(0)
end
if Mix:Mode() == "Combo" then
local target = GetCurrentTarget()
if Ready(2) and ValidTarget(target,660) and asdf.E:Value() and target.distance > 150 then
CastSkillShot(2,GetPrediction(target,EData).castPos)
end
if Ready(1) and ValidTarget(target,1000) then
CastSpell(1)
end
end
end) 
OnUpdateBuff(function(unit,buffProc)
if unit.isMe and buffProc.Name == "UndyingRage" then
rTime = buffProc.ExpireTime
end
end)
OnRemoveBuff(function(unit,buffProc)
if unit.isMe and buffProc.Name == "UndyingRage" then
rTime = buffProc.ExpireTime
end
end)

  • 1





Also tagged with one or more of these keywords: tryndamere

1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users