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

HK Raka - Simple Soraka Script


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

#1
hyyerrkid

hyyerrkid

    Member

  • Members
  • 10 posts

Simple soraka script by yours truely
- option to disable AA during harass
- auto W and R
- good Q pred

 

Throws lots of bananas? Idk what else ya need, lmk if you run into bugs.

 

installtogos.jpg

 

https://raw.githubus...r/HK_Soraka.lua


Edited by hyyerrkid, 04 February 2018 - 03:32 .

  • 0

#2
DollarForYourSadness

DollarForYourSadness

    Advanced Member

  • Members
  • 105 posts

404: Not Found


  • 0

#3
FrankWalker

FrankWalker

    Member

  • Members
  • 11 posts

Bad link


  • 0

#4
hyyerrkid

hyyerrkid

    Member

  • Members
  • 10 posts

Link fixed


  • 0

#5
FrankWalker

FrankWalker

    Member

  • Members
  • 11 posts

ty sir :D


  • 0

#6
hyyerrkid

hyyerrkid

    Member

  • Members
  • 10 posts

Im having issues with the "heal" function, trying to fix it now


Edited by hyyerrkid, 05 February 2018 - 07:06 .

  • 0

#7
freem4n

freem4n

    Advanced Member

  • Members
  • 152 posts

Not working


  • 0

#8
OpenAiBot

OpenAiBot

    Member

  • Members
  • 12 posts

Hey everyone! The script itself doesnt work but i found out why and how to get it running. Basically the person that wrote the script made a little mistake that i guess was overlooked.

When you download the script go to %appdata% folder > GamingOnSteroids > LOL > Scripts > and open up HK_Soraka file in notepad. Look for this line "(GetCurrentHP(ally)/GetMaxHP(ally)) <= 0.8 then

CastTargetSpell" and just add (ally, _W) at the end. It should look like this: (GetCurrentHP(ally)/GetMaxHP(ally)) <= 0.8 then
CastTargetSpell(ally, _W)
 
Click to save and enjoy!
 
P.S. The script requires OpenPredict and DamageLib.

Edited by OpenAiBot, 07 June 2018 - 12:08 .

  • 1

#9
distiny

distiny

    Newbie

  • Members
  • 9 posts

dmg seems to work, healing not, atleast not W healing. I'm not used working with lua, only c# and c++ but I don't see any of the heal functions getting called apart from in the tick... Does the W healing work on combo, lane, or auto ?


  • 0

#10
vaguiners

vaguiners

    Advanced Member

  • Members
  • 99 posts

Someone pls fix w

THIS IS NOT A FIX

function castW()
	CastTargetSpell(target, _W)
end

function castE()
	local ePred = GetCircularAOEPrediction(target, Spells.E)
	if ePred.hitChance > (Menu.Misc.HC:Value()/100) then
		CastSkillShot(_E, ePred.castPos)
	end
end

function castR()
	CastSpell(_R)
end

function Heal()
	local needHeal = 0
	for _, hero in pairs(GetAllyHeroes()) do
		if Menu.Heal.AutoW:Value() and (GetCurrentMana(myHero)/GetMaxMana(myHero)) >= (Menu.Heal.Mana:Value()/100)  then
			if Ready(_W) and hero ~= myHero and ValidTarget(hero, 550) and (GetCurrentHP(hero)/GetMaxHP(hero)) <= 0.8 then
				CastTargetSpell(hero, _W)
			end
		end
		if IsObjectAlive(hero) and (Menu.Heal.RHP:Value()/100) >= (GetCurrentHP(hero)/GetMaxHP(hero)) then
			needHeal = (needHeal + 1)
			if hero == myHero and Menu.Heal.RSelf:Value() and Ready(_R) then
				castR()
			end
		elseif Ready(_R) and IsObjectAlive(myHero) and (GetCurrentHP(myHero)/GetMaxHP(myHero)) <= (Menu.Heal.RHP:Value()/100) and Menu.Heal.RSelf:Value() then
			castR()
		end
		if needHeal >= Menu.Heal.RCount:Value() and Ready(_R) and IsObjectAlive(myHero) then
			castR()
		end
	end
end

function SimpleHeal()
	for _,ally in pairs(GetAllyHeroes()) do
		if Ready(_W) and ValidTarget(ally,550) and (GetCurrentHP(ally)/GetMaxHP(ally)) <= 0.8 then
			CastTargetSpell(ally, _W)
		end
	end
end

function wHeal()
	return SpellsBase.W[GetSpellData(myHero, _W).level] + (0.6 * GetBonusAP(myHero))
end

Edited by vaguiners, 07 June 2018 - 03:54 .

  • 0

#11
Apskritas

Apskritas

    Newbie

  • Members
  • 8 posts

Ty


  • 0

#12
DrLemmon

DrLemmon

    Member

  • Members
  • 10 posts

You uploaded a script that doesn't even work lol.

Whats the point if you havn't tested it yourself.

 

If anyone can re-edit his script to make it work since he hasn't been on for awhile.

and post the link I'll be happy.


  • 0

#13
DrLemmon

DrLemmon

    Member

  • Members
  • 10 posts

 

Hey everyone! The script itself doesnt work but i found out why and how to get it running. Basically the person that wrote the script made a little mistake that i guess was overlooked.

When you download the script go to %appdata% folder > GamingOnSteroids > LOL > Scripts > and open up HK_Soraka file in notepad. Look for this line "(GetCurrentHP(ally)/GetMaxHP(ally)) <= 0.8 then

CastTargetSpell" and just add (ally, _W) at the end. It should look like this: (GetCurrentHP(ally)/GetMaxHP(ally)) <= 0.8 then
CastTargetSpell(ally, _W)
 
Click to save and enjoy!
 
P.S. The script requires OpenPredict and DamageLib.

 

I followed your instructions by the way but they dont work even when I have both libs that are required.


Edited by DrLemmon, 09 June 2018 - 07:39 .

  • 0

#14
vaguiners

vaguiners

    Advanced Member

  • Members
  • 99 posts

the script works with the fix by openaibot, but w dont work

dumb 


  • 0




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users