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

RK's Tristana |Insane Q Logic|Fastest Combo|#NotClickBaitTitle


  • This topic is locked This topic is locked
49 replies to this topic

#41
masterschlitz

masterschlitz

    Newbie

  • Members
  • 1 posts

script cant kite


  • 0

#42
OLAFvsALL

OLAFvsALL

    Advanced Member

  • Members
  • 83 posts

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.


  • 0

#43
0mero

0mero

    Newbie

  • Members
  • 1 posts

Hello im new here i wanted to know how to use the auto last hit is supposed to be used. thanks.


  • 0

#44
jasplay

jasplay

    Member

  • Members
  • 12 posts

man i wish this was available for ext 


  • 1

#45
crytek

crytek

    Advanced Member

  • Members
  • 192 posts
  • LocationSalvador-BA --- Brasil

Ty ^^


  • 0

#46
BGaddare

BGaddare

    Newbie

  • Members
  • 6 posts

8.10 script error


  • 0

#47
teammatekiller

teammatekiller

    Newbie

  • Members
  • 7 posts

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


  • 0

#48
NicolasSOuza

NicolasSOuza

    Newbie

  • Members
  • 1 posts

--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>')


  • 0

#49
perryykim

perryykim

    Newbie

  • Members
  • 3 posts

Finally a script and champion i really enjoy! thank you!


  • 0

#50
pata

pata

    Advanced Member

  • Members
  • 52 posts

 

-multi orbwalker support

 

 

which OW do you recommend?


  • 0




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users