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

Jorj's Ryze (intelligent spell rotation/ult logic)

ryze combo smart logic ult spell rotation jorj

  • Please log in to reply
22 replies to this topic

#1
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

commission__ryze_by_medli20-d5gd9a5.png

Download: Ryze.lua

 

This script casts Ryze's spells in an intelligent rotation order for the best combo possible.

By default, the hotkey is 'A' (you can change this by editing line 4 of the script).

Please note that this script is also intended to be used with the inbuilt orbwalker.

 

To install the script; navigate to "AppData/Roaming/GamingOnSteroids/LOL/Scripts"; save the script as "testscriptx.lua", where "x" is a number from 1-3.


  • 6

#2
0xfinndev

0xfinndev

    Advanced Member

  • Members
  • 184 posts

use github.


  • 0

#3
Chungus

Chungus

    Advanced Member

  • Members
  • 128 posts
  • LocationLithuania

any info?


  • 0

#4
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

any info?

Spacebar is hotkey

 

basically just rotates through QWE with some small logic and fancy draws


  • 0

#5
Chungus

Chungus

    Advanced Member

  • Members
  • 128 posts
  • LocationLithuania

oh, does it support Ult before all that qwe?


  • 0

#6
c3iL

c3iL

    Advanced Member

  • Members
  • 49 posts

:drool:


  • 0

#7
CROnino

CROnino

    Member

  • Members
  • 10 posts

doesnt work for me, some kind of string error?


  • 0

#8
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

doesnt work for me, some kind of string error?

ill take a look today, thanks

oh, does it support Ult before all that qwe?

nope, ill see if I can get something decent done tho ;)


  • 0

#9
Feretorix

Feretorix

    Administrator

  • Administrators
  • 3,063 posts
It should check for the Ryze Hype buff, if it's currently ongoing, to even waste a Q in order to get lower CD for W and E.
  • 0

#10
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

It should check for the Ryze Hype buff, if it's currently ongoing, to even waste a Q in order to get lower CD for W and E.

added :)

 

also added ult usage, let me know if I can improve this


  • 0

#11
Mirabelle

Mirabelle

    I'm Back :D

  • Local Support
  • 1,031 posts
  • LocationSEA
Definitely one of the best ryze scripts here:)
  • 0

#12
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

Definitely one of the best ryze scripts here:)

thank you :3


  • 0

#13
Anaconda

Anaconda

    Member

  • Members
  • 13 posts

http://prntscr.com/7w3isz


  • 0

#14
fullze

fullze

    Member

  • Members
  • 18 posts

You have to change the file name to testscript1.lua


  • 0

#15
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

Reworked the script a litte (same logic, just more efficiently written)

hopefully any previous bugs are ironed out, let me know if you do come across any

 

during next few days I will have some nice updates so keep your eyes peeled ;)


  • 0

#16
FOGmachine

FOGmachine

    Member

  • Members
  • 13 posts

So I tried the script without modification and I pressed A and nothing happened. When I pressed spacebar I assume it was only using the config in auto harass. 

 

If I set "local HOTKEY = string.byte('A')" -- to -- "local HOTKEY = string.byte('Spacebar')" would that do it or would it need to be "local HOTKEY = string.byte(' ')"

 

Do I need to reset my configs for ryze to default 0 to just let your script work or are they meant to work together?


  • 0

#17
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

So I tried the script without modification and I pressed A and nothing happened. When I pressed spacebar I assume it was only using the config in auto harass.

If I set "local HOTKEY = string.byte('A')" -- to -- "local HOTKEY = string.byte('Spacebar')" would that do it or would it need to be "local HOTKEY = string.byte(' ')"

Do I need to reset my configs for ryze to default 0 to just let your script work or are they meant to work together?

It would need to be string.byte(' ')
Also, it doesn't work with a config, but you do need to bind the inbuilt orbwalk to the same key
  • 0

#18
Jouza

Jouza

    Advanced Member

  • Members
  • 97 posts
  • LocationCzech Republic

Your script looks very nice and advanced, however I have one suggestion for you.  Combo when supercharged:

if (_Q.IsReady) _Q.Cast

if (!_Q.IsReady && _W.IsReady) _W.Cast

if (!_Q.IsReady && _E.IsReady) _E.Cast

this will assure that Q is casted whenever it can, and W or E is casted only if it can reduce Q CD. This will prevent situations like:

Cast Q -> Cast W-> Q is off CD, we can cast it, but script continues to cast E.

I don't know if you already implemented it tho 


  • 1

#19
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

Your script looks very nice and advanced, however I have one suggestion for you.  Combo when supercharged:

if (_Q.IsReady) _Q.Cast

if (!_Q.IsReady && _W.IsReady) _W.Cast

if (!_Q.IsReady && _E.IsReady) _E.Cast

this will assure that Q is casted whenever it can, and W or E is casted only if it can reduce Q CD. This will prevent situations like:

Cast Q -> Cast W-> Q is off CD, we can cast it, but script continues to cast E.

I don't know if you already implemented it tho 

make a ryze script please Doge


  • 0

#20
jouzuna

jouzuna

    Advanced Member

  • Contributor
  • 73 posts

Your script looks very nice and advanced, however I have one suggestion for you. Combo when supercharged:
if (_Q.IsReady) _Q.Cast
if (!_Q.IsReady && _W.IsReady) _W.Cast
if (!_Q.IsReady && _E.IsReady) _E.Cast
this will assure that Q is casted whenever it can, and W or E is casted only if it can reduce Q CD. This will prevent situations like:
Cast Q -> Cast W-> Q is off CD, we can cast it, but script continues to cast E.
I don't know if you already implemented it tho

It is pretty much already do this, only if they are in range of w/e though

Thanks for suggestion though :)

EDIT: nvm, just understood what you wrote :D
Will add when I get back later, thanks
  • 0





Also tagged with one or more of these keywords: ryze, combo, smart, logic, ult, spell, rotation, jorj

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users