when i change the hotkey in Agility.cs now to NumPad1 im getting a compiler error, any idea why?
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.
Try archiving them in a .zip and then uploading.![]()
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.
Quick tap preparation on CD inbetween one of your GCDs (possibly shred but since stance switch GCD is only 0.75 seconds now it's not a big deal if you nest it in another GCD)
Still have to stance dance to proc Follow Up when you prep.
I'm having a problem getting Agility to register button presses. any ideas? View attachment 194104
it returned None
apparently i'm hallucinating the game?
OK, i tried it with it the switch on gray and orange, doesn't seem to make a difference...
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;
}