League Tools V6.05 - 05-07-18

Post gaming related scripts
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.3 - 04-01-16

05 Apr 2016, 20:15

So I'm trying to set up this script for my friend but I'm running into a weird issue. During the login process, it WILL double click on the Username field, but it doesn't send anything (confirmed that u is not empty with msgbox %u%). Then it never clicks on the password field either, but skips directly to the following loop block where it's waiting for the colorcross check to return true, but it never does since it's still on the login screen. Latest AHK, running everything as admin, all the usual checks done. Not sure what's going on and i've been at it for an hour now. Any ideas?
User avatar
Gorgrak
Posts: 23
Joined: 07 Dec 2015, 16:34

Re: League Tools V4.3 - 04-01-16

08 Apr 2016, 00:57

my best advice is to play with the sleeps and increase them to see if that helps?
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.3 - 04-01-16

08 Apr 2016, 11:05

Try changing these two lines. His version of the script might be defaulting to a different version of the send command. Also you could try disabling UAC as it is known to cause issues with AHK.

Change this:

Code: Select all

SendRaw, %u%
to this:

Code: Select all

SendInput {Raw}%u%
There is some info in the FAQ about this kind of issue here.
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.3 - 04-01-16

08 Apr 2016, 16:15

I believe his UAC is disabled, but we'll try that edit later and get back to you on that. thanks
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.3 - 04-01-16

08 Apr 2016, 18:18

Other than adjusting the sleeps I am not sure how to troubleshoot this one as I can't seem to reproduce the issue! I hope this works for you.

As a side note, any Singed players using this script? I am working an a couple addons designed to tilt enemies a bit... :D
User avatar
Gorgrak
Posts: 23
Joined: 07 Dec 2015, 16:34

Re: League Tools V4.3 - 04-01-16

13 Apr 2016, 19:07

Hey check this out! I figured out how to get the Mobafire menu to work again. It will take you to the guide page for that champion. If you want to view ability scaling for them, you click the "view champion" button underneath the champion icon. Here is the coding:

Code: Select all

;Not case sensitive, spaces become -, no punctuation
IfEqual, A_ThisMenuItem, LOLNexus, Run, http://www.lolnexus.com/champions/%n%
IfEqual, A_ThisMenuItem, MobaFire, Run, http://www.mobafire.com/league-of-legends/%n%-guide

randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.3 - 04-01-16

13 Apr 2016, 19:27

Gorgrak wrote:Hey check this out! I figured out how to get the Mobafire menu to work again. It will take you to the guide page for that champion. If you want to view ability scaling for them, you click the "view champion" button underneath the champion icon. Here is the coding:

Code: Select all

;Not case sensitive, spaces become -, no punctuation
IfEqual, A_ThisMenuItem, LOLNexus, Run, http://www.lolnexus.com/champions/%n%
IfEqual, A_ThisMenuItem, MobaFire, Run, http://www.mobafire.com/league-of-legends/%n%-guide

Wow. I completely forgot those pages were there. lmao
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.3 - 04-01-16

13 Apr 2016, 20:55

Ok I think I realized what happened with those. I started linking too far into the guide pages. Working on getting that incorporated. Also messing with the champ sales dates as they seem to work one moment and not the next. Rewrote the menu items for the skin sales, mildly different method of matching skin name to URL. I have one last item to test before the next update and testing is tonight. Should be up in the next day or two.
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.4 - 04-15-16

15 Apr 2016, 10:58

Updates:

Skin sales date/Regex adjustments
Mobafire re-incorporated
Irritator Mode added
--Enables laugh-spam-while-idle
--Taunt spam mode partially added(work in progress)
_hotkeys.ini updated on exitsub
All .ini values given hard defaults on ERROR
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.4 - 04-15-16

15 Apr 2016, 13:19

Ruevil2 wrote:Updates:

Skin sales date/Regex adjustments
Mobafire re-incorporated
Irritator Mode added
--Enables laugh-spam-while-idle
--Taunt spam mode partially added(work in progress)
_hotkeys.ini updated on exitsub
All .ini values given hard defaults on ERROR
You forgot Mastery spam :P

Laugh spam even better for lux players than singed players >:)

EDIT
If you had a version of this script before, and you upgrade, does it automatically add any new parameters to the config file (like new hotkeys)?

EDIT
just an idea that popped into my head. make the champion sales list items link to riot's info page on that champion?
Last edited by randomguy9472 on 15 Apr 2016, 14:40, edited 1 time in total.
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.4 - 04-15-16

15 Apr 2016, 14:37

randomguy9472 wrote: EDIT
If you had a version of this script before, and you upgrade, does it automatically add any new parameters to the config file (like new hotkeys)?
It does as of this update(4.4), hotkeys are now rewritten in the ExitSub. Config saving to come in the next update.
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.4 - 04-15-16

15 Apr 2016, 14:44

Oh I see. I didn't notice this since I never actually exit the script. Only open/reload haha
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.4 - 04-15-16

15 Apr 2016, 14:49

No worries. The Exit sub is actually still called upon reload. It runs unless you use something like taskmanager or process killer to close it.


I'm looking for some feedback on the laugh spam feature. I am tempted to add more and tweak it a bit so let me know if it feels smooth and easy to use.
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.4 - 04-15-16

15 Apr 2016, 15:49

Ruevil2 wrote:No worries. The Exit sub is actually still called upon reload. It runs unless you use something like taskmanager or process killer to close it.


I'm looking for some feedback on the laugh spam feature. I am tempted to add more and tweak it a bit so let me know if it feels smooth and easy to use.
Oh actually I think it's cause I was running the old version of the script, rewrote the file, and just ran it. So the new version was never reloaded to run the exitsub. :P

The only problem I see is that since it relies on mouse movements, the only way to activate it is to keep the mouse still, which I rarely do. Activation based on time since last mouse click was my second thought, but that would be annoying for when you're walking to lane and looking at another lane or something as you'd keep stopping to laugh. I've seen in the past people binding laugh emotes to the ability keys but that would be dangerous for champs who depend on being able to move while casting (Xerath, Soraka, et al.). So I'm honestly not sure what the best would be. The current setting is certainly the least disruptive, but like I said, it'd probably never trigger for me, as I'm usually moving my mouse around, even when standing still.

I did run into a big problem though. The hotkey remains active when the chatbox is open, making you unable to type whatever letter the hotkey is bound to into chat.

EDIT
Mastery emote is a lot easier for spamming as it doesn't interrupt anything. I've seen people bind this to all their abilities and movement commands.
Matis
Posts: 1
Joined: 19 May 2016, 01:13

Re: League Tools V4.4 - 04-15-16

19 May 2016, 01:20

Hello,

It is possible bind camera lock/unlock like hotkey Lctrl?
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.4 - 04-15-16

19 May 2016, 11:58

Matis wrote:Hello,

It is possible bind camera lock/unlock like hotkey Lctrl?
It is possible, the difficult part is that it will always perform this action(probably clicking or holding the spacebar) even when you are in the shop, or click while the chat box is open. In this case it may or may not present an issue, this is just a typical problem with forcibly rebinding keys outside of the league client.

Even though the options for this are not present in the client interface. It is possible to rebind the LButton key from inside the client via the file located here.

League of Legends\Config\input.ini.


There is a small tutorial about this here.
https://www.reddit.com/r/leagueoflegend ... ick_attack
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.4 - 04-15-16

19 May 2016, 14:35

Ruevil2 wrote:
Matis wrote:Hello,

It is possible bind camera lock/unlock like hotkey Lctrl?
Even though the options for this are not present in the client interface. It is possible to rebind the LButton key from inside the client via the file located here.

League of Legends\Config\input.ini.


There is a small tutorial about this here.
https://www.reddit.com/r/leagueoflegend ... ick_attack
I thought rebinding keys outside of the client had to be done on persistedsettings.json while the client is open now, otherwise the server-side settings rewrite them.
Ruevil2
Posts: 173
Joined: 14 Jul 2014, 10:39

Re: League Tools V4.4 - 04-15-16

19 May 2016, 17:06

randomguy9472 wrote:
Ruevil2 wrote:
Matis wrote:Hello,

It is possible bind camera lock/unlock like hotkey Lctrl?
Even though the options for this are not present in the client interface. It is possible to rebind the LButton key from inside the client via the file located here.

League of Legends\Config\input.ini.


There is a small tutorial about this here.
https://www.reddit.com/r/leagueoflegend ... ick_attack
I thought rebinding keys outside of the client had to be done on persistedsettings.json while the client is open now, otherwise the server-side settings rewrite them.

You are correct, a few patches ago input.ini was left behind in favor of persistedSettings.JSON, although if you delete persistedSettings.JSON a new one will be generated and uploaded based on the settings inside input.ini.
Chichigami

Re: League Tools V4.4 - 04-15-16

23 May 2016, 21:17

http://puu.sh/p30to/5335a1a329.png
I get this error when trying to start League and I don't know why. Everything works fine even detecting if League is open and I can't find anything about it. D:
randomguy9472
Posts: 28
Joined: 27 Jan 2016, 12:20

Re: League Tools V4.4 - 04-15-16

24 May 2016, 09:49

looks like it's having trouble detecting where the client is installed? what is your installation directory?

Return to “Gaming Scripts (v1)”

Who is online

Users browsing this forum: No registered users and 27 guests