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
  • 106 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

  1. function castW()
  2. CastTargetSpell(target, _W)
  3. end
  4.  
  5. function castE()
  6. local ePred = GetCircularAOEPrediction(target, Spells.E)
  7. if ePred.hitChance > (Menu.Misc.HC:Value()/100) then
  8. CastSkillShot(_E, ePred.castPos)
  9. end
  10. end
  11.  
  12. function castR()
  13. CastSpell(_R)
  14. end
  15.  
  16. function Heal()
  17. local needHeal = 0
  18. for _, hero in pairs(GetAllyHeroes()) do
  19. if Menu.Heal.AutoW:Value() and (GetCurrentMana(myHero)/GetMaxMana(myHero)) >= (Menu.Heal.Mana:Value()/100) then
  20. if Ready(_W) and hero ~= myHero and ValidTarget(hero, 550) and (GetCurrentHP(hero)/GetMaxHP(hero)) <= 0.8 then
  21. CastTargetSpell(hero, _W)
  22. end
  23. end
  24. if IsObjectAlive(hero) and (Menu.Heal.RHP:Value()/100) >= (GetCurrentHP(hero)/GetMaxHP(hero)) then
  25. needHeal = (needHeal + 1)
  26. if hero == myHero and Menu.Heal.RSelf:Value() and Ready(_R) then
  27. castR()
  28. end
  29. elseif Ready(_R) and IsObjectAlive(myHero) and (GetCurrentHP(myHero)/GetMaxHP(myHero)) <= (Menu.Heal.RHP:Value()/100) and Menu.Heal.RSelf:Value() then
  30. castR()
  31. end
  32. if needHeal >= Menu.Heal.RCount:Value() and Ready(_R) and IsObjectAlive(myHero) then
  33. castR()
  34. end
  35. end
  36. end
  37.  
  38. function SimpleHeal()
  39. for _,ally in pairs(GetAllyHeroes()) do
  40. if Ready(_W) and ValidTarget(ally,550) and (GetCurrentHP(ally)/GetMaxHP(ally)) <= 0.8 then
  41. CastTargetSpell(ally, _W)
  42. end
  43. end
  44. end
  45.  
  46. function wHeal()
  47. return SpellsBase.W[GetSpellData(myHero, _W).level] + (0.6 * GetBonusAP(myHero))
  48. 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

OpenAiBot, on 05 Jun 2018 - 04:38 AM, said:

 

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