script cant kite
Login to Account Create an Account

RK's Tristana |Insane Q Logic|Fastest Combo|#NotClickBaitTitle
#41
Posted 06 January 2018 - 04:21

#42
Posted 18 January 2018 - 01:23

script cant kite
How about you explaining a little bit more then that, huh?
Anyhow, script is working fine with IOW. Good EQ and good KS with R.
Gj there guys.
#43
Posted 30 January 2018 - 12:39

Hello im new here i wanted to know how to use the auto last hit is supposed to be used. thanks.
#44
Posted 09 April 2018 - 08:18

man i wish this was available for ext
#45
Posted 29 April 2018 - 06:50

Ty ^^
#46
Posted 16 May 2018 - 03:13

8.10 script error
#47
Posted 29 May 2018 - 02:31

why every time i use combo, it w first, whatever enemy is killable or not. the script is just lead me feeding, really a trash
#48
Posted 30 May 2018 - 09:31

--No easter eggs here
--Credits to Noddy for the damage calculations (minikappa)
class "Tristana"
function Tristana:__init()
self.Menu = Menu("Tristana", "RK's Tristana")
self.Menu:SubMenu("Combo", "Combo")
self.Menu.Combo:Boolean("Q", "Use Q", true)
self.Menu.Combo:Boolean("E", "Use E", true)
self.Menu.Combo:Boolean("R", "Use R", true)
self.Menu.Combo:Boolean("RE", "Use R is E can kill", true)
self.Menu:SubMenu("KS", "Killsteal")
self.Menu.KS:Boolean("KSR", "Killsteal with R", true)
self.Menu:SubMenu("Keys", "Keys")
self.Menu.Keys:KeyBinding("Combo", "Combo Key", 32)
self.Menu:SubMenu("Draws", "Draws")
self.Menu.Draws:Boolean("DW", "Draw W", false)
self.Menu.Draws:Boolean("DR", "Draw R", false)
self.Menu.Draws:Boolean("DE", "Draw E", false)
self.Target = GetCurrentTarget()
OnTick(function() self:Tick() end)
OnTick(function() self:KS() end)
OnDraw(function() self:Draw() end)
end
function Tristana:Tick()
self.Target = GetCurrentTarget()
if self:Mode() == "Combo" then
self:Combo()
end
end
function Tristana:Draw()
if self.Menu.Draws.DW:Value() then
DrawCircle(GetOrigin(myHero),900,0,155,ARGB(255, 8, 178, 102))
end
if self.Menu.Draws.DR:Value() then
DrawCircle(GetOrigin(myHero),700,0,155,ARGB(255, 8, 71, 178))
end
if self.Menu.Draws.DE:Value() then
DrawCircle(GetOrigin(myHero),625,0,155,ARGB(255, 226, 217, 45))
end
end
function Tristana:Combo()
if self.Menu.Combo.Q:Value() and ValidTarget(self.Target,GetRange(myHero)) and CanUseSpell(myHero, _Q) == READY then
CastSpell(_Q)
end
if self.Menu.Combo.E:Value() and ValidTarget(self.Target,GetRange(myHero)) and CanUseSpell(myHero, _E) == READY then
CastTargetSpell(self.Target, _E)
end
if self.Menu.Combo.R:Value() and CanUseSpell(myHero, _R) == READY and ValidTarget(self.Target,GetCastRange(myHero,_R)) and GetCurrentHP(self.Target) < CalcDamage(myHero, self.Target, 0,225 + 100*GetCastLevel(myHero,_R) + GetBonusAP(myHero)) then
CastTargetSpell(self.Target, _R)
end
if self.Menu.Combo.RE:Value() then
for _, enemy in pairs(GetEnemyHeroes()) do
if GotBuff(enemy,"tristanaechargesound") == 1 then
eDMG = CalcDamage(myHero, enemy, (10*GetCastLevel(myHero,_E)+52+((0.18*(GetCastLevel(myHero,_E))+0.38)*(GetBaseDamage(myHero) + GetBonusDmg(myHero)))+(0.6*GetBonusAP(myHero))) + ((GotBuff(enemy,"tristanaechargesound")-1)*(3*GetCastLevel(myHero,_E)+22+((0.049*(GetCastLevel(myHero,_E))+0.120)*(GetBaseDamage(myHero) + GetBonusDmg(myHero)))+(0.15*GetBonusAP(myHero)))), 0 ) - GetHPRegen(enemy)*4
elseif GotBuff(enemy,"tristanaechargesound") == 0 then
eDMG = 0
if CanUseSpell(myHero, _R) == READY and ValidTarget(enemy,GetCastRange(myHero, _R)) then
rDMG = CalcDamage(myHero, enemy, 0, 100*GetCastLevel(myHero,_R)+ 200 + (GetBonusAP(myHero)))
if GetCurrentHP(enemy) < rDMG+eDMG then
CastTargetSpell(enemy, _R)
end
end
end
end
end
end
function Tristana:KS()
if self.Menu.KS.KSR:Value() and CanUseSpell(myHero, _R) == READY and ValidTarget(self.Target,GetCastRange(myHero, _R)) and GetCurrentHP(self.Target) < CalcDamage(myHero, self.Target, 0, 200+100*GetCastLevel(myHero,_R) + GetBonusAP(myHero)) then
CastTargetSpell(self.Target, _R)
end
end
function Tristana:Mode()
if self.Menu.Keys.Combo:Value() then
return "Combo"
end
return ""
end
function Tristana:Ready(spell)
return CanUseSpell(myHero, spell) == 0
end
if _G[myHero.charName] then
_G[myHero.charName]()
end
PrintChat('<font color = \"#aa00ff\">RK Tristana</font> </font> <font color = \"#0094ff\"> Loaded </font>')
PrintChat('<font color = \"#ff3feb\"> By RelaxKid </font>')
#49
Posted 10 June 2018 - 06:39

Finally a script and champion i really enjoy! thank you!
#50
Posted 10 June 2018 - 05:55

-multi orbwalker support
which OW do you recommend?
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users