Would probably be easier if I saw a log containing said error. Wait... I just reread that. Stop changing it in the source file and just use the in app options, keys are configurable now!
Just downloaded the bot and started the game, however my character will not attack while using the CR. I attemepted to attach the logs from the log folder but I cannot as i get a error message saying the files are in the incorrect format. Please help.
Hey just took a break from fallout to update and test some stuff. Agility is looking nice but my settings don't seem to be loading properly after I quit out. They all revert back to default one I reload it. Anyways I update my SpellSlinger mod and it can be found here.
You may have to delete your WB/Settings/Agility folder if it's causing conflicts with your current settings (it went through a bunch of object changes as well)
@Deathdisguise, i know, you're probably not going to invest extra time to polish any specific combat routine, but, if you actually can do it, would be cool if you would update DPS stalker to use a priority system, based on: Punish+AW (while under 35 SP) Impale (under 55-60SP) Concussive Kicks (2 if Punish is above 4 seconds CD, 1 CK 1Cripple if Punish is Below 4s CD followed by 2nd CK right after Punish) Cripple (first charge) Impale(over 55-60SP) Cripples at 2 or less charges Shred and an extra: That can currently net a potential 1 impale per second, which is currently the highest possible damage done by stalker. Thanks and cheers! <3 P.S - 2 minute video of stalker performing described actions: https://www.youtube.com/watch?v=VSeLDLbCX-Y&feature=youtu.be
I love when people submit stuff like this! I'd love to spend time on all the classes but I have a considerable amount of difficulty finding the time to level classes right now, so I depend on posts like yours! I'll update Stalker Default to include these aspects, and push it to the beta svn soon!
I'm having a problem getting Agility to register button presses. any ideas? View attachment Wildbuddy 6092 2015-12-07-00.29.23.log.zip
Do me a favor and type this in the PEC and let me know what it spits out: Log(GameManager.CurrentOpenWindowType)
Haha! Next suggestion I have is - Go into the Agility settings (top) , and disable 'Requires Foreground' in the debug section and let me know how that goes!
Interesting! Other than making sure your hotkey settings match what you are trying to press, I'm not sure what could be wrong!
i've tried changing it, clearing the keybinding in WildStar, but nothing =( and i've gotten other stuff to work such as QuestHelper (which it did wonderfully btw) but the whole key press thing is stumping me. do any of the other routine/profile/bots use in game key presses? maybe i can try one of those tomorrow and see if the problem persists.
Code: private bool CanFire(Keys key) { // Key hasn't been pressed. if (GetAsyncKeyState(key) == 0) return false; // Not focused? Do nothing. if (AgilitySettings.Settings.RequiresForeground && GameManager.Memory.Process.MainWindowHandle != GetForegroundWindow()) return false; // Don't do anything unless you're loaded into game. if (GameManager.WorldLoadState != WorldLoadState.InWorld) return false; // Don't do anything if a window is open. if ((int)GameManager.CurrentOpenWindowType != 99) return false; return true; } As you may be able to see, we've basically gone down the list of all the things it checks to see if it's able to use a routine! It uses the same method the game uses to detect key presses, so it is likely working, something is just stopping it from getting there! I suppose you could try to close your bot, delete your WB/Settings/Agility/<Character> folder, and then restart the bot (in that order) to see if it's just a buggered up json setting? But we're just shooting in the dark at this point.