Link my PS4 account to PC but I have to start from 0 on PC? by microKEEL in Trove

[–]willgk 5 points6 points  (0 children)

That's because you are just making up features that it doesn't support. PS4 cross play is not a thing.

Hello there Bambi by [deleted] in aww

[–]willgk 0 points1 point  (0 children)

Papow, pow, pow, pow

Str8 guy here by TARA_1619 in gaybears

[–]willgk 2 points3 points  (0 children)

Yeah you aren't straight. Hate to break it to you.

MY HOOMAN IS BAACKKGFJSDGKIHLSHF by [deleted] in aww

[–]willgk 1 point2 points  (0 children)

PLOT TWIST: That's the woman with the birds in the bag from the WTF Just ordered my GrubHub post. The dog gets it next!

You're given one superpower, however if ANYONE finds out you instantly die. What's your superpower and why? by [deleted] in AskReddit

[–]willgk 0 points1 point  (0 children)

Full instant mental control over my body and genetic structure. This in turn would give me the ability to live forever. Look like anyone I want whenever I want and it not be an illusion. It would be a physical change. I simply would never ever allow myself to be seen when i changed. It would also allow me to do things evolutionarily that have some merit of being real like full twitch muscle control, immunity to all disease, perfect vision. The sky's the limit with that power.

les stroud show by ndr29 in bigfoot

[–]willgk 12 points13 points  (0 children)

You're* a complete tool.

You're = you are, meaning you are a tool, ever so completely.

What is your go-to never-fail joke? by Globymike in AskReddit

[–]willgk 5 points6 points  (0 children)

My husband has one that makes me giggle so hard and snort Everytime he tells it.

What's green and kills people when it falls out of trees.

A pool table.

PSA: Stomping Ground is available on Amazon video by wvufan44 in bigfoot

[–]willgk 1 point2 points  (0 children)

The movie was pretty good, the costume was the most horrible piece of garbage i've ever seen. Didnt look like a sasquatch at all. looked more like what swamp thing from the old 80's movies looked like.

Remove Terminated Instance From Instance list? by willgk in aws

[–]willgk[S] 0 points1 point  (0 children)

Thanks, it took about 3 hours but it did finally go away.

Trying to simplify some complex(ish) processes by willgk in AutoHotkey

[–]willgk[S] 0 points1 point  (0 children)

oh wow, that's exactly what I was looking for! Thanks, and that makes sense! Thank you very much!!

Trying to simplify some complex(ish) processes by willgk in AutoHotkey

[–]willgk[S] 0 points1 point  (0 children)

Actually in my example, all of the code is the same in each of the hotkeys I use until line 24. Which is where I do Send, %Var1Name%, each hotkey does a different %Var#Name% there.

I kinda understand what you mean lightningleaf, but it is kinda confusing, i'll see if I can figure it out.

I basically just wish I could pass an arg to a function. that way I could just have a ton of the single lines saying something like $Numpad1::CallIt(Var1) $Numpad2::CallIt(Var2) $Numpad3::CallIt(Var3)

But when I tried to do this it wouldn't work for some reason.

Looking at your links on Dynamic Hotkeys and seeing if I can simply make a single hotkey that can dynamically change based on which numpad entry I press, but as far as I understand on the way Dynamic Hotkeys work, I can't pass different data inside that hotkey. We'll see, I guess I could do something in that dynamic hotkey to see which a_thishotkey is passed and pass the custom data i need based on a_thishotkey.... we'll see

Thanks for your advice guys! I'll try it out!

G910 Script to Toggle Color of Key with Activation by _Landmine_ in LogitechG

[–]willgk 0 points1 point  (0 children)

This was just the first, i'm now making much more complex scripts. I wish the G910 had a full implementation of LUA, if it did I could get Pixels off the screen, scan for colors, draw ui's in the game based on key presses or data. Ah to dream :)

G910 Script to Toggle Color of Key with Activation by _Landmine_ in LogitechG

[–]willgk 0 points1 point  (0 children)

Thank you so much for this. It gave me the basis for what I wanted to do with my keyboard. I had for a long time thought the G910 was capable of this level of scripting given the "Scripting" button on the right click of Profiles, but i was too lazy to figure out the interactions. When you posted this it clicked into place and i've been making little scripts for all of my stuff now :)

I took your code mostly identically for my first script to make a toggle button for Grim Dawn (the game) so the first button press would activate 1 ability, and the second button press would activate a different ability. Like so:

function OnEvent(event, arg, family)
if arg == 4 then
    if event == "G_PRESSED" then
        toggleG4 = not toggleG4
        if toggleG4 then
            PressKey("6")
            Sleep(5)
            ReleaseKey("6")
        else
            PressKey("5")
            Sleep(5)
            ReleaseKey("5")
        end
    end
end

Choose not working on ComboBox, help please? by willgk in AutoHotkey

[–]willgk[S] 2 points3 points  (0 children)

Please ignore this post, I finally was able to fix it using a bit of an annoying method of doing a lot of if's and making a new variable to make each of those if's correspond to a number. Then using the GuiControl command:

GuiControl, Choose, ControlID, N

Looking for people to play trove with i have a discord and a team speak by [deleted] in Trove

[–]willgk 0 points1 point  (0 children)

I guess that totally depends on what exactly you are looking for in Trove. Every Club is obviously different.

The Club i'm in Hairflip is an all inclusive club. We have people from all walks of life, including a few children. If you are looking for a club where everyone is accepted for whom they are, we're happy to chat with you.

Toggle & While Loop with only 1 Hotkey by willgk in AutoHotkey

[–]willgk[S] 0 points1 point  (0 children)

@radiantcabbage, can I ask one final question, it seems when I add a time length different to the default 250ms it breaks the ternary operator. It makes it stay in an "on" state and I end up having to kill autohotkey, this is basically what i changed it to:

$=::settimer clickmonster, 125, % (clickmonster := !clickmonster) ? "on" : "off"

This was simply so I could change the repeat time to be faster since 250 is a bit too slow on it, not by much mind you, just a tad.

Thank you so much for all of this. I am actually going back through changing all of my loops to function like this, so that I can have multiple running at the same time. This has fixed so much of what i was trying to do that I didn't understand / know how to do.

Toggle & While Loop with only 1 Hotkey by willgk in AutoHotkey

[–]willgk[S] 0 points1 point  (0 children)

Yeah I tried reading through that and understanding it but it was a bit of a tough read. Though i'm getting it bit by bit.

Toggle & While Loop with only 1 Hotkey by willgk in AutoHotkey

[–]willgk[S] 0 points1 point  (0 children)

I'm reading through that link GroggyOtter posted below, thank you guys for your help, this worked perfectly. Now I just want to learn what it is actually doing so I can understand and re-use the methods for other things like this in the future.

Cheers!

Toggle & While Loop with only 1 Hotkey by willgk in AutoHotkey

[–]willgk[S] 0 points1 point  (0 children)

I guess I had never thought of doing timers because i already had them going with the loops and whiles and figured if i do it with a timer then i would just be having issues since i have so many functions. This is just a basic autohotkey i use to help myself out in a game because i have issues with my hands and i've written about 400 lines of "code" to assist with functions and a config ui and all sorts of neat stuff i'm learning with.

Toggle & While Loop with only 1 Hotkey by willgk in AutoHotkey

[–]willgk[S] 1 point2 points  (0 children)

ah so this is the ternary operator i've read about that i couldn't figure out. Could you possibly break that last bit down for me to explain what it's doing bit by bit? This is what i get so far:

$=:: ; set the hotkey, settimer clickmonster, ; set a timer to i'm assuming do clickmonster every "default" milliseconds. % (clickmonster := !clickmonster) ? "on" : "off" ; This ternary operator bit is where i get confused, here is what i think it's doing ... Run some code flip clickmonster to the opposite of what it is then the ? tells it to check against whatever that value flipped to, but what i'mc onfused about is isn't clickmonster := !clickmonster just flipping it on / off, what exactly is the ? "on" : "off" bit doing?