Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I'd like to add that this is great for memory, but if you want speed, there's already another program built into RoN that can help you as well.
If you go to Main->Tools and Extras -> Skills Test, there are some good practice arenas to help a player out, one of them being "Hotkey Handling". The one thing this will have over your macro is that it is more based upon speed (i.e a fixed time).
Though, your program helps to teach the hotkeys, so that's also good.
I think if you want to improve upon this, I would offer two suggestions.
1. Some sort of Time Trial mode, to make sure that speed is a factor (just like in the Skills Test)
2. Figure out Combinations. I mean selecting a market with N is all nice and helpful, but how about disabling a gather point? Or creating 5 of something? Or a hotkey siege attack? These are also very helpful during battle and economics, and I think would be a great add-on to your project. Alt, Shift, and Crtl are 3 important and overlooked keys on the keyboard, and are crucial for improving player speed.
With that being said, great work so far! I'm a software developer myself by profession, so lemme know if you need any help if you wanna improve this in the future.
Some kind of time trial has been on my mind. I'd llike to be able to provide the user stats with which hotkeys they are fastest or slowest with. And also possibley incorporate those stats into the random question generator (thus hotkeys the user gets wrong would be asked more frequently).
Combinations would be nice, I am just not yet quite sure how to implement them. The OnKey method with Excel seems to have some limitations. For example I can't figure out how to capture just a click of the CTRL key by itself (this is more of a key stroke that you see in FPS games than RTS games). That said, CTRL+Letter should definitley be doable. And I'll have to see if I can make it work for ALT and SHIFT as well.
I only know VBA but I have been meaning to learn either VB or C#, so perhaps if I find Excel too limiting I might try achieving something with a few more features using a proper language like VB or C# and makiing a stand-alone application. But that will be some time away. I have a lot to learn.
The Hotkey groups (on the data sheet) could probably do with better organization too. The Compnay of Heroes listings, especiallly are all over the place.
One thing that has been on my mind, is to make it easeir for users to easily create new hotkeys. One trouble I always find with changing the hotkeys is you have to be careful not to over-write otherr hotkey. But with the simulated keyboard in this application the user can easily see which keys are avaialbe to be used.... I'l have to think about that some more.
I work in Market Research. VBA is just something that I taught myself to make it easier to analyse data. I am not a proper programmer, more of an Excel power-user.
But I enjoy the little programming I do, and I am trying to get better at it. If try doing something in another language, I might just ask you a few questions.
What sort of software do you develop? What languages do you typically use? If I wanted to make a stand alone application, what language would you recommend?
If you wanted to make a stand-alone application, I think the easiest way to get a simple .exe file to do what you want (like if you wanted to practice or something) is in C or C++. But honestly you can make a standalone program in most any language. Actually these days, I think it's more about what IDE you use (like Visual Studio or Eclipse or Netbeans).
I'm a Java man myself, and if you wanted to make a Simple GUI for this, the Javax.swing library would be easy enough to use....
But yea the language isn't really the hard part, it's all about if you need to import certain libraries or whatever. I'm sure it might be POSSIBLE to do all the other stuff in VBA, but at least for a guy like me, it'd be easier to plan out and develop something in something like one of the C's or Java or whatever.