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✔️]|ManlyXayah V2.0 |UPDATED 24/7/2023


  • Please log in to reply
58 replies to this topic

#41
cr1t

cr1t

    Member

  • Members
  • 19 posts

Hmmm. I've done near 30+ games. I've yet to get this error. Mind explaining what was going on at the time you got this error?

I think it happens when you tab out of the game. I've seen it once or twice, but it disappears and causes no real issues.


  • 1

#42
Crazie

Crazie

    Advanced Member

  • Members
  • 48 posts

I think it happens when you tab out of the game. I've seen it once or twice, but it disappears and causes no real issues.

Ahhh. Maybe that is why I've not seen it. I don't tab out of game. Hehe


  • 0

#43
Kleon

Kleon

    Advanced Member

  • Trial Developer
  • 181 posts

Hmmm. I've done near 30+ games. I've yet to get this error. Mind explaining what was going on at the time you got this error?

Of course!  ;)

local level = myHero:GetSpellData(_Q).level
local Qdamage = ({40, 60, 80, 100, 120})[level] * 2 + 0.5 * myHero.bonusDamage

local var., named "level" contains the level of your Q spell, when you start the game and you have not leveled the Q spell the var. "level" contains the number : 0, Lua tables starts with the index:1 and at the 226th line the script tries to get the table's 0 index. This is the Error. The reason you didn't get the error is simple. This line only gets runned if there is an enemy in your Q range, but you always level up Q first in games before you see anyone on the lane in Q range.

This is easily fixable if you change the line:

local level = myHero:GetSpellData(_Q).level

to:

local level = math.max(myHero:GetSpellData(_Q).level,1)

I hope i could help you guys( and you Manmode! :) )


  • 1

#44
Manmode

Manmode

    Advanced Member

  • Contributor
  • 427 posts
  • LocationSweden

Of course!  ;)

local level = myHero:GetSpellData(_Q).level
local Qdamage = ({40, 60, 80, 100, 120})[level] * 2 + 0.5 * myHero.bonusDamage

local var., named "level" contains the level of your Q spell, when you start the game and you have not leveled the Q spell the var. "level" contains the number : 0, Lua tables starts with the index:1 and at the 226th line the script tries to get the table's 0 index. This is the Error. The reason you didn't get the error is simple. This line only gets runned if there is an enemy in your Q range, but you always level up Q first in games before you see anyone on the lane in Q range.

This is easily fixable if you change the line:

local level = myHero:GetSpellData(_Q).level

to:

local level = math.max(myHero:GetSpellData(_Q).level,1)

I hope i could help you guys( and you Manmode! :) )

 

Thanks, haven't been able to look at it yet but that makes it a lot simpler to fix :) 

 

Cheers


  • 0

#45
Kleon

Kleon

    Advanced Member

  • Trial Developer
  • 181 posts

Thanks, haven't been able to look at it yet but that makes it a lot simpler to fix :)

 

Cheers

I am always here to help ;) (Even if i am not a real developer  <_< lol )


  • 0

#46
Crazie

Crazie

    Advanced Member

  • Members
  • 48 posts

Of course!  ;)

local level = myHero:GetSpellData(_Q).level
local Qdamage = ({40, 60, 80, 100, 120})[level] * 2 + 0.5 * myHero.bonusDamage

local var., named "level" contains the level of your Q spell, when you start the game and you have not leveled the Q spell the var. "level" contains the number : 0, Lua tables starts with the index:1 and at the 226th line the script tries to get the table's 0 index. This is the Error. The reason you didn't get the error is simple. This line only gets runned if there is an enemy in your Q range, but you always level up Q first in games before you see anyone on the lane in Q range.

This is easily fixable if you change the line:

local level = myHero:GetSpellData(_Q).level

to:

local level = math.max(myHero:GetSpellData(_Q).level,1)

I hope i could help you guys( and you Manmode! :) )

Gonna try it right now man! Thanks for the work!


  • 0

#47
Crazie

Crazie

    Advanced Member

  • Members
  • 48 posts

I am noticing that my Qs and Rs are randomly (not often - But enough) shooting off into the opposite direction? Is there a conflict with ICs? Or is that something others are experiencing here with this script?


  • 0

#48
Manmode

Manmode

    Advanced Member

  • Contributor
  • 427 posts
  • LocationSweden

I am noticing that my Qs and Rs are randomly (not often - But enough) shooting off into the opposite direction? Is there a conflict with ICs? Or is that something others are experiencing here with this script?

 

Dunno about that, never seen it myself, You actually using the R feature atm?

 

btw i should hopefully have a small update out today, sorry for the delays

 

edit: Jungle and laneclear Q W support with mana managing added, no E usage yet as i need to figure out how to do it without killing the fps.


  • 0

#49
Crazie

Crazie

    Advanced Member

  • Members
  • 48 posts

Dunno about that, never seen it myself, You actually using the R feature atm?

 

btw i should hopefully have a small update out today, sorry for the delays

 

edit: Jungle and laneclear Q W support with mana managing added, no E usage yet as i need to figure out how to do it without killing the fps.

Sweet! Thanks for the work you are putting into it!

Yeah. I'm using the R feature. During team fights - Sometimes it will randomly Q & R away.

That may be because of the mouse pos whlie moving though. Because the mouse doesn't always go back to where it was while orbwalking.


  • 0

#50
Kleon

Kleon

    Advanced Member

  • Trial Developer
  • 181 posts

The error is still not fixed  :DansGame:  :lol2:


  • 0

#51
Manmode

Manmode

    Advanced Member

  • Contributor
  • 427 posts
  • LocationSweden

The error is still not fixed  :DansGame:  :lol2:

 

 

LOL i forgot about it xD,  shiet son, its just because ive never had it kek, will fix in a min 

 

Edit: fixed, thanks Kleon <3


  • 0

#52
Manmode

Manmode

    Advanced Member

  • Contributor
  • 427 posts
  • LocationSweden

Sweet! Thanks for the work you are putting into it!

Yeah. I'm using the R feature. During team fights - Sometimes it will randomly Q & R away.

That may be because of the mouse pos whlie moving though. Because the mouse doesn't always go back to where it was while orbwalking.

 

 

Well i always disable the orbwalker before casting a skillshot and re enable it after so that cant happen because of the orbwalker, dunno whats causing it and ive never seen it myself, soz

 

EDIT: It appears im retarded and didnt realize i lost that part when power went out a while back, Huge thanks to Tocsin for being a good guy finding that for me  :wub:

will be fixed in next release

 

EDIT: Screw that, fixed it and uploaded it just now, didnt test the code beforehand so please spam the thread and me in pm if i screwed something up, cheers


  • 0

#53
Manmode

Manmode

    Advanced Member

  • Contributor
  • 427 posts
  • LocationSweden

As ive said before i was gonna stick with league only untill my main got hit by external and now it has happend, i dont feel salty about that as i was expecting it to happen,

i do still have a smurf and i might (no promises) stay untill it gets banned as well but for now this is the end for me and GoS so dont expect any updates - 

 

We had a good run, Cya around


  • 0

#54
Crazie

Crazie

    Advanced Member

  • Members
  • 48 posts

 

As ive said before i was gonna stick with league only untill my main got hit by external and now it has happend, i dont feel salty about that as i was expecting it to happen,

i do still have a smurf and i might (no promises) stay untill it gets banned as well but for now this is the end for me and GoS so dont expect any updates - 

 

We had a good run, Cya around

 

Hmmm. Are you saying that External is detected now?

Edit: Nvm. I saw the post from Feretorix. Man. That sucks. I'm sorry bro.


  • 0

#55
mecalec

mecalec

    Member

  • Members
  • 17 posts

doesnt support main orbwalking ? cuz it doesnt do any speels at all ? just farming on basic :D 


  • 0

#56
Manmode

Manmode

    Advanced Member

  • Contributor
  • 427 posts
  • LocationSweden

bump


  • 2

#57
P0PCAT

P0PCAT

    Member

  • Members
  • 26 posts

is this updated and good now


  • 0

#58
Aristo

Aristo

    You donut

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

is this updated and good now

yep its updated


  • 0

#59
amazon2

amazon2

    Advanced Member

  • Premium
  • 45 posts

is it possible to put WR logic for the ulty in this? everything else with this one is amazing but the ulty would be huge


  • 0




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users