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

[OKAY✔️][Patch:13.x] GG Series - AIO | Orbwalker | Prediction | Jhin, Blitzcrank, Taric, ...


Best Answer Aristo , 16 July 2023 - 02:59

-GGAIO updated to version 1.9581!: Tested Kogmaw works fine. If you haven't received the update, re-install it manually: https://raw.githubus...aster/GGAIO.lua

 

-GGorbwalker updated to version 3.006!: You should have it automatically once you get into a game and hit f6-key twice.

If you haven't received it, re-install it manually: https://raw.githubus...GGOrbwalker.lua

 

Change-log:

  • New Champ Naafiri added for Target selector
  • 18teruh.png

Thanks to Hightail and Icebar for the input and updates. 

Go to the full post »


  • Please log in to reply
570 replies to this topic

#321
JS1

JS1

    Newbie

  • Members
  • 7 posts

wrong post


  • 0

#322
tayxiloon01

tayxiloon01

    Advanced Member

  • Members
  • 62 posts

Suggestion:

 

Add an option for vayne to use Q only after AA


  • 0

#323
SnRolls

SnRolls

    Newbie

  • Members
  • 6 posts

Could you add Jinx please? <3


  • 0

#324
nkz

nkz

    Advanced Member

  • Members
  • 40 posts

First of all, scripts working mostly very nice. Using the Morgana and Blitzcrank when playing support ;)

 

A feature that I could see as a huge upgrade is a toggle hotkey for Auto spells.

 

For Blitz: Auto Q /on/off

Morgana: Auto Q on/off

 

Sometimes you might not wanna auto stun/ try to stun and can only disable when going thru the menu. A simple hotkey as in pussyAIO f.e. would be amazing.


  • 0

#325
jd1boo

jd1boo

    Member

  • Banned
  • PipPip
  • 25 posts

seraphine csing is off.  Will not last hit


  • 0

#326
JSN

JSN

    Advanced Member

  • Members
  • 76 posts

I wish CSing was better in general, especially under turret

 

Also, Ezreal's Q last hit seem to ignore collision


  • 2

#327
thefreijlord

thefreijlord

    Newbie

  • Members
  • 3 posts

manually cs and sbtw in fights is the best thing atm


  • 0

#328
JSN

JSN

    Advanced Member

  • Members
  • 76 posts

I am lazy and CSing is probably the main reason for me to use GoS :)


  • 0

#329
loko978

loko978

    Advanced Member

  • Premium
  • 68 posts

fixed


  • 0

#330
Yerav

Yerav

    Newbie

  • Members
  • 1 posts

fixed

fixed


  • 0

#331
Raine

Raine

    ‌‌

  • Contributor
  • 468 posts

Posting it here since I haven't found a thread dedicated to GGOrbwalker in the Utilities section:

 

The attack reset function specifically made for Riven is what's actually causing people disconnections because it has no delay at all. Would you mind fixing it?  :)

 

There seem to be two chunks of code related to Riven animation cancelling:

                --print("Attack Reset")
                -- RIVEN
                if Object.IsRiven then
                    X = X + 1
                    if X == 1 then
                        T = GetTickCount()
                    end
                    if X == 3 then
                        --print(GetTickCount() - T)
                    end
                    local isThree = Buff:HasBuff(myHero, 'riventricleavesoundtwo')
                    if isThree then
                        X = 0
                    end
                    local riven_start = GetTickCount() + 450 + (isThree and 100 or 0) - LATENCY
                    Action:Add(function()
                        if GetTickCount() < riven_start then
                            if Cursor.Step == 0 then
                                Movement.MoveTimer = 0
                                Control.Move()
                            end
                            return false
                        end
                        Orbwalker:SetAttack(true)
                        Attack.Reset = true
                        return true
                    end)
                    Orbwalker:SetAttack(false)
                    return
                end
            if (Object.IsRiven or spellData.mana <= myHero.mana) and spellData.currentCd == 0 and (not AttackResetName or spellData.name == AttackResetName) then
                if AttackResetActiveSpell then
                    self.AttackResetTimer = GetTickCount()
                    local startTime = GetTickCount() + 400
                    Action:Add(function()
                        local s = myHero.activeSpell
                        if s and s.valid and s.name == AttackResetSpellName then
                            self.AttackResetTimer = GetTickCount()
                            self.AttackResetSuccess = true
                            --print("Attack Reset ActiveSpell")
                            --print(startTime - GetTickCount())
                            return true
                        end
                        if GetTickCount() < startTime then
                            return false
                        end
                        return true
                    end)
                    return
                end

If you go in-game as Riven with only GGOrbwalker enabled and cast Q you will notice the movement click spam (tens or hundreds of clicks in a very short time window). 

 

A provisional fix for those willing to play Riven in the meantime is to increase the "Clicker sleep delay" option from the general GoS settings. Values like 15-20 do the job for me already and I can perform the Q1-Q2-Q3 combo consistently, but not the minimum allowed in the settings (11). The higher this value is, the more consistently you will play with no disconnections (at the risk of making the script become unable to cancel animations properly if this value is too high). Tweak your settings and experiment a little bit in training mode until you find a clicker sleep delay that suits you. 

 

Cheers and thanks for the amazing job!  :D


  • 3

#332
Raine

Raine

    ‌‌

  • Contributor
  • 468 posts

I really felt like playing Riven so I made a spaghetti workaround that seems to fix the Riven issue. Basically it adds a delay between movement clicks while performing the post-Q reset, and so far it doesn't seem to trigger the disconnect thing from Riot: 

 

https://raw.githubus...GGOrbwalker.lua

 

This version of GGOrbwalker also allows you to set CursorDelay to 0 and humanizer clicking delays to 30 milliseconds in case you feel like limit testing the Riven combo efficiency. 

 

Please keep in mind that I made this in just a few minutes and we are still waiting for an actual solution from the script's author. 


  • 0

#333
krumboy

krumboy

    Newbie

  • Members
  • 5 posts

I really felt like playing Riven so I made a spaghetti workaround that seems to fix the Riven issue. Basically it adds a delay between movement clicks while performing the post-Q reset, and so far it doesn't seem to trigger the disconnect thing from Riot: 

 

https://raw.githubus...GGOrbwalker.lua

 

This version of GGOrbwalker also allows you to set CursorDelay to 0 and humanizer clicking delays to 30 milliseconds in case you feel like limit testing the Riven combo efficiency. 

 

Please keep in mind that I made this in just a few minutes and we are still waiting for an actual solution from the script's author. 

Just downloaded your version of orbwalker, do I need to change something ? If so , can u send prints ? Kinda dumb here haha. Which Riven script you are using?


  • 1

#334
Raine

Raine

    ‌‌

  • Contributor
  • 468 posts

Just downloaded your version of orbwalker, do I need to change something ? If so , can u send prints ? Kinda dumb here haha.

Hey there! 

 

  • For the Riven fix you don't need to change anything, just go in-game with her and one of the scripts from the community and try spamming Q and see if it keeps you from getting disconnected (as it happened with Riven Q before)
  • If you want to test the 0ms cursor delay and the 30ms humanizer go into GGOrbwalker settings and change the two sliders that I've highlighted in the screenshot: 

image.png

 

Then hold any of the orbwalker hotkeys (spacebar, C, V, X, A...) and you'll see the clicking speed in action.  :D

 

Cheers and I hope you like it!  :lol:


  • 0

#335
krumboy

krumboy

    Newbie

  • Members
  • 5 posts

Hey there! 

 

  • For the Riven fix you don't need to change anything, just go in-game with her and one of the scripts from the community and try spamming Q and see if it keeps you from getting disconnected (as it happened with Riven Q before)
  • If you want to test the 0ms cursor delay and the 30ms humanizer go into GGOrbwalker settings and change the two sliders that I've highlighted in the screenshot: 

image.png

 

Then hold any of the orbwalker hotkeys (spacebar, C, V, X, A...) and you'll see the clicking speed in action.  :D

 

Cheers and I hope you like it!  :lol:

Thank you! Gonna try it. And personally which Riven script u prefer?


  • 1

#336
Raine

Raine

    ‌‌

  • Contributor
  • 468 posts

Thank you! Gonna try it. And personally which Riven script u prefer?

Anytime! :D

To be honest both are good, I would suggest you trying both and see which one fits your playstyle better. Personally I use pussykate's because I like the fact that it has 2 popular combos implemented (Shy and Wehrli).

However if you want to discuss about Riven scripts let's better switch to private messages though, as some people may consider it's not related to the topic of the thread and they may find it annoying.

Have a nice day! :)
  • 1

#337
vaynegodqt

vaynegodqt

    Member

  • Members
  • 24 posts

It's only me or gg orbwalker is too slow? It feel so slow to this point that bronze player can kite better?


  • 0

#338
Aristo

Aristo

    You donut

  • Moderator
  • 12,711 posts
  • LocationSomewhere over the rainbow

It's only me or gg orbwalker is too slow? It feel so slow to this point that bronze player can kite better?

It is now slow, just make sure you enable GGorbwalker + a champion script and cdtracker, because when you enable many scripts they drop ext fps and that ruins the performance, myself hit to diamond with ext, and I know people who reached to grandmaster/challenger with EXT, so it's not even close to bronze. You just gotta make sure fps is ok, and you are using the proper scripts and you can also disable drawings. 


  • 0

#339
cosminele

cosminele

    Newbie

  • Members
  • 3 posts

fixed


  • 0

#340
loko978

loko978

    Advanced Member

  • Premium
  • 68 posts

It is now slow, just make sure you enable GGorbwalker + a champion script and cdtracker, because when you enable many scripts they drop ext fps and that ruins the performance, myself hit to diamond with ext, and I know people who reached to grandmaster/challenger with EXT, so it's not even close to bronze. You just gotta make sure fps is ok, and you are using the proper scripts and you can also disable drawings. 

Which champs did you use to reach diamond? or lane role bro?


  • 0




7 user(s) are reading this topic

0 members, 7 guests, 0 anonymous users