April 17, 2024, 08:19:14 pm

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Vyvanne

Pages: [1]
1
General Discussion / Inventory AutoHotKey script - easily modifiable
« on: November 29, 2018, 01:57:19 pm »
I've had a couple requests for the script I use for inventory hotkeys, so here it is below. It's very easily modifiable to whatever keys you want to use. AHK scripting is pretty straightforward and easy to learn, I have no programming background/experience and was able to understand things pretty quickly.

Basically what I created was a very simple script that substitutes a keypress to map to the numpad key.  I'll flesh this out later and add some pictures for the visual learners, but hopefully it should be understandable in text.

Wc3's inventory hotkeys use the numpad as we all know-

78
45
12

These six numpad buttons correspond to each slot.  The system I use should be familiar to moba players, it's what is used in Dota and I assume in League as well- alt + hotkey = numpad key.

I use Q, alt Q, alt W, alt E, alt A, alt S, and alt D. 

-Important links-
https://autohotkey.com/docs/Hotkeys.htm
https://autohotkey.com/docs/KeyList.htm

Useful links to understanding the syntax of the code and making it as clean as possible - for instance, !A means using the hotkey alt + A. 


Code: [Select]
; Inventory Keys:
 
F5::
Suspend, Toggle
 
Q::SendInput, {Numpad7}
!Q::SendInput, {Numpad8}
!A::SendInput, {Numpad4}
!W::SendInput, {Numpad5}
!D::SendInput, {Numpad1}
!E::SendInput, {Numpad2}
 

Copy the code into a notepad file and save it as a .AHK extension and name it whatever you like.  A program like Notepad++ is far infinitely better than Windows notepad and makes organizing things very nice.  Run it whenever you're playing Wc3, but remember to close the script down if you're doing other things (or even more importantly other games that use those hotkeys!)



The net result is that if I press F5, it starts and ends the script - this is a very useful thing to have for those of you who want to substitute a regular letter instead of using a letter + modifier (ctrl A and alt A instead of just A, for instance).

If you don't have this toggle and you do use regular letters for hotkeys, then it will mess up your chatting. I really like mine because it doesn't affect my chat except if the word has the letter Q in it. So "require" looks like "re7uire." 

Let me know if anyone has questions or issues adapting this script for your own. I'll continue to flesh out this post with some images later for ez understanding.

Cheers.

2
General Discussion / Patch 129 Warcraft 3 clean install quick guide
« on: April 11, 2018, 03:31:32 pm »
Some folks seem to be having issues with patching to 129 as many of us used 126a for W3arena.  Here's a short guide on what worked for me. Your mileage may vary, but hopefully this is helpful for people.


Step 1 - Back up your maps/downloads and replays folder, as well as anything else you want to keep (screenshots, customkeys, etc).

Step 2 - Uninstall every version of Wc3 you have on your computer. After running uninstall, go back to c:/program files and completely delete the Warcraft III folder as well. Uninstall does not remove everything, so you will want to make sure to have a 100% clean slate.

Step 3 - If you have physical CDs, install RoC/TFT that way.  If you purchased online thru Blizzard's site, go to battle.net and log into your account, download the game client.  Blizzard should just give 1 client to install RoC and TFT.

Step 4 - Run Wc3, select gateway + login to bnet to download 129. 

Step 5 - Copy back downloads/replays/keys into the new Wc3 folder.


MOUSE ISSUES - some people (including me) have reported mouse issues with 129.  Remo has posted a possible workaround that seems to help. You make a shortcut to your Wc3 executable and add -opengl to the shortcut path.

https://www.reddit.com/r/WC3/comments/8b7l05/game_feels_sluggish_on_bnet_help_required_i_got/


2nd solution to mouse issues - If "-opengl" does not work, try " -graphicsapi OpenGL2"



If you want to continue to keep running w3a in a separate 126a folder, let me know and I can walk you through those steps. I have both running currently with no issues.
 

3
Social Media / Q9 and Q10 casting tonight!
« on: November 24, 2014, 12:42:15 pm »
I'm planning on casting tonight for Q9 and Q10.  Anyone like to cast together? I prefer to be the co-caster and do the analysis style of commentary rather than the hype/play by play/main caster :)


4
General Discussion / Streaming Wc3 - problem with cut off
« on: November 16, 2014, 01:36:53 am »
For those of you folks who Stream Wc3, how do you set it so that you get the full window streamed? For some reason my game is cutting off the bottom inch of my screen.

http://www.twitch.tv/vyvanne/b/589335607

you'll see that you can't see the very bottom row of items, hp/mana numbers, etc.

I use OBS and run Wc3 in a window, then use Fullscreenizer to make it full screen.


OBS settings :

http://imgur.com/taIUyb4
http://imgur.com/6Q4xL8P

Any insight would be appreciated, thanks!

Pages: [1]