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

Rengar_One_Key V14


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

#1
snowbell

snowbell

    Advanced Member

  • Members
  • 144 posts

Rengar_One_Key

 

4U2B5Qh.gif

 

 

 

Features:

  • Q Usage
  • W Usage
  • E Usage
  • Auto ignite if the target is killable

Use F7 in OrbWalk

cvuGBy7.png?1

 

 

TO DO:

  • 3ple Q if rengar has full Ferocity and youre in RengarR mode
  • use W if rengar has full Ferocity and you have below percent of HP

 

Required libs:

Download

copy the text save to notepad and save as Rengar_One_Key.lua in %appdata%/GamingOnSteroids/LOL/Scripts/Common

 

the code in testscript1.lua should look like this : 

require('Inspired')
require('Rengar_One_Key')

  • 1

#2
Laiha

Laiha

    Advanced Member

  • Members
  • 273 posts
  • LocationAntartica

CastSpell(_Q)

CastSpell(_W)

 

 

#scripts

 

jk i love you <3

Great script as always


  • 0

#3
snowbell

snowbell

    Advanced Member

  • Members
  • 144 posts

CastSpell(_Q)

CastSpell(_W)

 

 

#scripts

 

jk i love you <3

Great script as always

yah rengar Q and W is castable by it self  :) thanks mate for helping me always


  • 0

#4
snowbell

snowbell

    Advanced Member

  • Members
  • 144 posts

Update Recode the Code  :lol:


  • 0

#5
zurkaska

zurkaska

    Newbie

  • Members
  • 1 posts

This is badly done or just bugs for me, in ult mode, when you press space, it uses E immidiately even if not in range with the enemy, this cancels ult and u cant jump anymore, its kind of annoying.


  • 0

#6
unknown1239

unknown1239

    Advanced Member

  • Members
  • 34 posts

Just jump with ult and AFTER use E, you can't miss :P


  • 0

#7
Pamaj1

Pamaj1

    Newbie

  • Members
  • 6 posts

tutorial how to instal script's plzz in bot inject too me

:(  :(  :(


  • 0

#8
funbox

funbox

    Member

  • Members
  • 16 posts

hmm what can i say ? no autoheal, no check 5 ferocity, no logic only spells usage, no tripple Q, no magnet target, no buff check (use E before jump -.-)

---Credits to TheWelder
local info = "Rengar_One_Key Loaded"
local upv = "Upvote if you like it!"
local sig = "Made by snowbell"
local ver = "v 1.0"
textTable = {info,upv,sig,ver} 
PrintChat(textTable[1])
PrintChat(textTable[2])
PrintChat(textTable[3])
PrintChat(textTable[4]) 
 
Config = scriptConfig("Rengar", "Rengar_One_Key Loaded")
Config.addParam("Q", "Use Q", SCRIPT_PARAM_ONOFF, true)
Config.addParam("W", "Use W", SCRIPT_PARAM_ONOFF, true)
Config.addParam("E", "Use E", SCRIPT_PARAM_ONOFF, true)
Config.addParam("Combo", "Combo", SCRIPT_PARAM_KEYDOWN, string.byte(" "))
 
 
OnLoop(function(myHero)
local myHero = GetMyHero()
local target = GetCurrentTarget()
local myHeroPos = GetOrigin(myHero)
local EPred = GetPredictionForPlayer(GetMyHeroPos(),target,GetMoveSpeed(target),1600,250,1100,60,true,true)
if "Rengar" == GetObjectName(myHero) then
if Config.Combo and IsObjectAlive(target) then
if ValidTarget(target, 500) then
       if Config.Q then
if CanUseSpell(myHero, _Q) == READY and IsInDistance(target, 550) then
CastSpell(_Q)
end
end
end
if ValidTarget(target, 200) then
if Config.W then
if  CanUseSpell(myHero, _W) == READY and IsInDistance(target, 200) then
CastSpell(_W)
end
end
if ValidTarget(target, 1100) then
if Config.E then
if CanUseSpell(myHero, _E) == READY and EPred.HitChance == 1 then
                       CastSkillShot(_E,EPred.PredPos.x,EPred.PredPos.y,EPred.PredPos.z)
end
end
end
end
end

 

end)

  • 0




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users