• Visit Rebornbuddy
  • Agility

    Discussion in 'Botbases' started by Deathdisguise, May 19, 2015.

    1. shapesforms

      shapesforms New Member

      Joined:
      Apr 10, 2014
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      0

      it would be much cooler if we could just toggle it on/off instead of holding a button...
       
    2. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      Yeah, I'm dedicating today to going through all the classes I have available and attempting to fix a lot of these little cooldown/resource issues. Hopefully by the end of the day, there will be a nice update for everyone. :)


      I have considered adding a toggle feature, but it is pretty low on the priority list, and would have several features to protect the users from any 'botty' behaviors. Ultimately, no ETA. :)
       
      Last edited: Oct 7, 2015
    3. Angully

      Angully Member

      Joined:
      Sep 19, 2010
      Messages:
      764
      Likes Received:
      1
      Trophy Points:
      18
      Yes
       
    4. Buttseckz

      Buttseckz Member

      Joined:
      Jun 6, 2012
      Messages:
      65
      Likes Received:
      0
      Trophy Points:
      6
      Considering the state of the routines today (hopefully you will all get an update from DD soon), you are better off holding down one button. Ie.: Playing Medic, sometimes the routine gets stuck trying to cast skills without the necessary resources for it and the solution is to release the button and press it down again. Having a toggle option would make things harder. I believe its the correct decision to optimize all the routines first and then start to think about new functionalities.
       
    5. ravenmage

      ravenmage New Member

      Joined:
      Jul 31, 2012
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      1
      Thanks for the replies. I am just having a hard time holding down a button while moving and trying to dodge, just feels clunky. Any tips?
       
    6. Buttseckz

      Buttseckz Member

      Joined:
      Jun 6, 2012
      Messages:
      65
      Likes Received:
      0
      Trophy Points:
      6
      I'm at work so I don't recall the configuration interface exactly. Do we have an option to change the default binding keys? If we do, maybe you could bind it to a key more confortable to your play style.

      If it doesn't, the only solution for you is to open the Agility.cs file and manually edit the bindings. You would have to do it based on this list right here.

      For instance, the current key for the dps routine would be "D1", which means key "1". If you wanna change it to "Shift" you would change it to "ShiftKey" or "LButton" for mouse left button. Most keys are pretty intuitive.


      Code:
       public enum Keys
          {
              // Summary:
              //     The bitmask to extract modifiers from a key value.
              Modifiers = -65536,
              //
              // Summary:
              //     No key pressed.
              None = 0,
              //
              // Summary:
              //     The left mouse button.
              LButton = 1,
              //
              // Summary:
              //     The right mouse button.
              RButton = 2,
              //
              // Summary:
              //     The CANCEL key.
              Cancel = 3,
              //
              // Summary:
              //     The middle mouse button (three-button mouse).
              MButton = 4,
              //
              // Summary:
              //     The first x mouse button (five-button mouse).
              XButton1 = 5,
              //
              // Summary:
              //     The second x mouse button (five-button mouse).
              XButton2 = 6,
              //
              // Summary:
              //     The BACKSPACE key.
              Back = 8,
              //
              // Summary:
              //     The TAB key.
              Tab = 9,
              //
              // Summary:
              //     The LINEFEED key.
              LineFeed = 10,
              //
              // Summary:
              //     The CLEAR key.
              Clear = 12,
              //
              // Summary:
              //     The ENTER key.
              Enter = 13,
              //
              // Summary:
              //     The RETURN key.
              Return = 13,
              //
              // Summary:
              //     The SHIFT key.
              ShiftKey = 16,
              //
              // Summary:
              //     The CTRL key.
              ControlKey = 17,
              //
              // Summary:
              //     The ALT key.
              Menu = 18,
              //
              // Summary:
              //     The PAUSE key.
              Pause = 19,
              //
              // Summary:
              //     The CAPS LOCK key.
              CapsLock = 20,
              //
              // Summary:
              //     The CAPS LOCK key.
              Capital = 20,
              //
              // Summary:
              //     The IME Kana mode key.
              KanaMode = 21,
              //
              // Summary:
              //     The IME Hanguel mode key. (maintained for compatibility; use HangulMode)
              HanguelMode = 21,
              //
              // Summary:
              //     The IME Hangul mode key.
              HangulMode = 21,
              //
              // Summary:
              //     The IME Junja mode key.
              JunjaMode = 23,
              //
              // Summary:
              //     The IME final mode key.
              FinalMode = 24,
              //
              // Summary:
              //     The IME Kanji mode key.
              KanjiMode = 25,
              //
              // Summary:
              //     The IME Hanja mode key.
              HanjaMode = 25,
              //
              // Summary:
              //     The ESC key.
              Escape = 27,
              //
              // Summary:
              //     The IME convert key.
              IMEConvert = 28,
              //
              // Summary:
              //     The IME nonconvert key.
              IMENonconvert = 29,
              //
              // Summary:
              //     The IME accept key. Obsolete, use System.Windows.Forms.Keys.IMEAccept instead.
              IMEAceept = 30,
              //
              // Summary:
              //     The IME accept key, replaces System.Windows.Forms.Keys.IMEAceept.
              IMEAccept = 30,
              //
              // Summary:
              //     The IME mode change key.
              IMEModeChange = 31,
              //
              // Summary:
              //     The SPACEBAR key.
              Space = 32,
              //
              // Summary:
              //     The PAGE UP key.
              Prior = 33,
              //
              // Summary:
              //     The PAGE UP key.
              PageUp = 33,
              //
              // Summary:
              //     The PAGE DOWN key.
              Next = 34,
              //
              // Summary:
              //     The PAGE DOWN key.
              PageDown = 34,
              //
              // Summary:
              //     The END key.
              End = 35,
              //
              // Summary:
              //     The HOME key.
              Home = 36,
              //
              // Summary:
              //     The LEFT ARROW key.
              Left = 37,
              //
              // Summary:
              //     The UP ARROW key.
              Up = 38,
              //
              // Summary:
              //     The RIGHT ARROW key.
              Right = 39,
              //
              // Summary:
              //     The DOWN ARROW key.
              Down = 40,
              //
              // Summary:
              //     The SELECT key.
              Select = 41,
              //
              // Summary:
              //     The PRINT key.
              Print = 42,
              //
              // Summary:
              //     The EXECUTE key.
              Execute = 43,
              //
              // Summary:
              //     The PRINT SCREEN key.
              PrintScreen = 44,
              //
              // Summary:
              //     The PRINT SCREEN key.
              Snapshot = 44,
              //
              // Summary:
              //     The INS key.
              Insert = 45,
              //
              // Summary:
              //     The DEL key.
              Delete = 46,
              //
              // Summary:
              //     The HELP key.
              Help = 47,
              //
              // Summary:
              //     The 0 key.
              D0 = 48,
              //
              // Summary:
              //     The 1 key.
              D1 = 49,
              //
              // Summary:
              //     The 2 key.
              D2 = 50,
              //
              // Summary:
              //     The 3 key.
              D3 = 51,
              //
              // Summary:
              //     The 4 key.
              D4 = 52,
              //
              // Summary:
              //     The 5 key.
              D5 = 53,
              //
              // Summary:
              //     The 6 key.
              D6 = 54,
              //
              // Summary:
              //     The 7 key.
              D7 = 55,
              //
              // Summary:
              //     The 8 key.
              D8 = 56,
              //
              // Summary:
              //     The 9 key.
              D9 = 57,
              //
              // Summary:
              //     The A key.
              A = 65,
              //
              // Summary:
              //     The B key.
              B = 66,
              //
              // Summary:
              //     The C key.
              C = 67,
              //
              // Summary:
              //     The D key.
              D = 68,
              //
              // Summary:
              //     The E key.
              E = 69,
              //
              // Summary:
              //     The F key.
              F = 70,
              //
              // Summary:
              //     The G key.
              G = 71,
              //
              // Summary:
              //     The H key.
              H = 72,
              //
              // Summary:
              //     The I key.
              I = 73,
              //
              // Summary:
              //     The J key.
              J = 74,
              //
              // Summary:
              //     The K key.
              K = 75,
              //
              // Summary:
              //     The L key.
              L = 76,
              //
              // Summary:
              //     The M key.
              M = 77,
              //
              // Summary:
              //     The N key.
              N = 78,
              //
              // Summary:
              //     The O key.
              O = 79,
              //
              // Summary:
              //     The P key.
              P = 80,
              //
              // Summary:
              //     The Q key.
              Q = 81,
              //
              // Summary:
              //     The R key.
              R = 82,
              //
              // Summary:
              //     The S key.
              S = 83,
              //
              // Summary:
              //     The T key.
              T = 84,
              //
              // Summary:
              //     The U key.
              U = 85,
              //
              // Summary:
              //     The V key.
              V = 86,
              //
              // Summary:
              //     The W key.
              W = 87,
              //
              // Summary:
              //     The X key.
              X = 88,
              //
              // Summary:
              //     The Y key.
              Y = 89,
              //
              // Summary:
              //     The Z key.
              Z = 90,
              //
              // Summary:
              //     The left Windows logo key (Microsoft Natural Keyboard).
              LWin = 91,
              //
              // Summary:
              //     The right Windows logo key (Microsoft Natural Keyboard).
              RWin = 92,
              //
              // Summary:
              //     The application key (Microsoft Natural Keyboard).
              Apps = 93,
              //
              // Summary:
              //     The computer sleep key.
              Sleep = 95,
              //
              // Summary:
              //     The 0 key on the numeric keypad.
              NumPad0 = 96,
              //
              // Summary:
              //     The 1 key on the numeric keypad.
              NumPad1 = 97,
              //
              // Summary:
              //     The 2 key on the numeric keypad.
              NumPad2 = 98,
              //
              // Summary:
              //     The 3 key on the numeric keypad.
              NumPad3 = 99,
              //
              // Summary:
              //     The 4 key on the numeric keypad.
              NumPad4 = 100,
              //
              // Summary:
              //     The 5 key on the numeric keypad.
              NumPad5 = 101,
              //
              // Summary:
              //     The 6 key on the numeric keypad.
              NumPad6 = 102,
              //
              // Summary:
              //     The 7 key on the numeric keypad.
              NumPad7 = 103,
              //
              // Summary:
              //     The 8 key on the numeric keypad.
              NumPad8 = 104,
              //
              // Summary:
              //     The 9 key on the numeric keypad.
              NumPad9 = 105,
              //
              // Summary:
              //     The multiply key.
              Multiply = 106,
              //
              // Summary:
              //     The add key.
              Add = 107,
              //
              // Summary:
              //     The separator key.
              Separator = 108,
              //
              // Summary:
              //     The subtract key.
              Subtract = 109,
              //
              // Summary:
              //     The decimal key.
              Decimal = 110,
              //
              // Summary:
              //     The divide key.
              Divide = 111,
              //
              // Summary:
              //     The F1 key.
              F1 = 112,
              //
              // Summary:
              //     The F2 key.
              F2 = 113,
              //
              // Summary:
              //     The F3 key.
              F3 = 114,
              //
              // Summary:
              //     The F4 key.
              F4 = 115,
              //
              // Summary:
              //     The F5 key.
              F5 = 116,
              //
              // Summary:
              //     The F6 key.
              F6 = 117,
              //
              // Summary:
              //     The F7 key.
              F7 = 118,
              //
              // Summary:
              //     The F8 key.
              F8 = 119,
              //
              // Summary:
              //     The F9 key.
              F9 = 120,
              //
              // Summary:
              //     The F10 key.
              F10 = 121,
              //
              // Summary:
              //     The F11 key.
              F11 = 122,
              //
              // Summary:
              //     The F12 key.
              F12 = 123,
              //
              // Summary:
              //     The F13 key.
              F13 = 124,
              //
              // Summary:
              //     The F14 key.
              F14 = 125,
              //
              // Summary:
              //     The F15 key.
              F15 = 126,
              //
              // Summary:
              //     The F16 key.
              F16 = 127,
              //
              // Summary:
              //     The F17 key.
              F17 = 128,
              //
              // Summary:
              //     The F18 key.
              F18 = 129,
              //
              // Summary:
              //     The F19 key.
              F19 = 130,
              //
              // Summary:
              //     The F20 key.
              F20 = 131,
              //
              // Summary:
              //     The F21 key.
              F21 = 132,
              //
              // Summary:
              //     The F22 key.
              F22 = 133,
              //
              // Summary:
              //     The F23 key.
              F23 = 134,
              //
              // Summary:
              //     The F24 key.
              F24 = 135,
              //
              // Summary:
              //     The NUM LOCK key.
              NumLock = 144,
              //
              // Summary:
              //     The SCROLL LOCK key.
              Scroll = 145,
              //
              // Summary:
              //     The left SHIFT key.
              LShiftKey = 160,
              //
              // Summary:
              //     The right SHIFT key.
              RShiftKey = 161,
              //
              // Summary:
              //     The left CTRL key.
              LControlKey = 162,
              //
              // Summary:
              //     The right CTRL key.
              RControlKey = 163,
              //
              // Summary:
              //     The left ALT key.
              LMenu = 164,
              //
              // Summary:
              //     The right ALT key.
              RMenu = 165,
              //
              // Summary:
              //     The browser back key (Windows 2000 or later).
              BrowserBack = 166,
              //
              // Summary:
              //     The browser forward key (Windows 2000 or later).
              BrowserForward = 167,
              //
              // Summary:
              //     The browser refresh key (Windows 2000 or later).
              BrowserRefresh = 168,
              //
              // Summary:
              //     The browser stop key (Windows 2000 or later).
              BrowserStop = 169,
              //
              // Summary:
              //     The browser search key (Windows 2000 or later).
              BrowserSearch = 170,
              //
              // Summary:
              //     The browser favorites key (Windows 2000 or later).
              BrowserFavorites = 171,
              //
              // Summary:
              //     The browser home key (Windows 2000 or later).
              BrowserHome = 172,
              //
              // Summary:
              //     The volume mute key (Windows 2000 or later).
              VolumeMute = 173,
              //
              // Summary:
              //     The volume down key (Windows 2000 or later).
              VolumeDown = 174,
              //
              // Summary:
              //     The volume up key (Windows 2000 or later).
              VolumeUp = 175,
              //
              // Summary:
              //     The media next track key (Windows 2000 or later).
              MediaNextTrack = 176,
              //
              // Summary:
              //     The media previous track key (Windows 2000 or later).
              MediaPreviousTrack = 177,
              //
              // Summary:
              //     The media Stop key (Windows 2000 or later).
              MediaStop = 178,
              //
              // Summary:
              //     The media play pause key (Windows 2000 or later).
              MediaPlayPause = 179,
              //
              // Summary:
              //     The launch mail key (Windows 2000 or later).
              LaunchMail = 180,
              //
              // Summary:
              //     The select media key (Windows 2000 or later).
              SelectMedia = 181,
              //
              // Summary:
              //     The start application one key (Windows 2000 or later).
              LaunchApplication1 = 182,
              //
              // Summary:
              //     The start application two key (Windows 2000 or later).
              LaunchApplication2 = 183,
              //
              // Summary:
              //     The OEM 1 key.
              Oem1 = 186,
              //
              // Summary:
              //     The OEM Semicolon key on a US standard keyboard (Windows 2000 or later).
              OemSemicolon = 186,
              //
              // Summary:
              //     The OEM plus key on any country/region keyboard (Windows 2000 or later).
              Oemplus = 187,
              //
              // Summary:
              //     The OEM comma key on any country/region keyboard (Windows 2000 or later).
              Oemcomma = 188,
              //
              // Summary:
              //     The OEM minus key on any country/region keyboard (Windows 2000 or later).
              OemMinus = 189,
              //
              // Summary:
              //     The OEM period key on any country/region keyboard (Windows 2000 or later).
              OemPeriod = 190,
              //
              // Summary:
              //     The OEM question mark key on a US standard keyboard (Windows 2000 or later).
              OemQuestion = 191,
              //
              // Summary:
              //     The OEM 2 key.
              Oem2 = 191,
              //
              // Summary:
              //     The OEM tilde key on a US standard keyboard (Windows 2000 or later).
              Oemtilde = 192,
              //
              // Summary:
              //     The OEM 3 key.
              Oem3 = 192,
              //
              // Summary:
              //     The OEM 4 key.
              Oem4 = 219,
              //
              // Summary:
              //     The OEM open bracket key on a US standard keyboard (Windows 2000 or later).
              OemOpenBrackets = 219,
              //
              // Summary:
              //     The OEM pipe key on a US standard keyboard (Windows 2000 or later).
              OemPipe = 220,
              //
              // Summary:
              //     The OEM 5 key.
              Oem5 = 220,
              //
              // Summary:
              //     The OEM 6 key.
              Oem6 = 221,
              //
              // Summary:
              //     The OEM close bracket key on a US standard keyboard (Windows 2000 or later).
              OemCloseBrackets = 221,
              //
              // Summary:
              //     The OEM 7 key.
              Oem7 = 222,
              //
              // Summary:
              //     The OEM singled/double quote key on a US standard keyboard (Windows 2000
              //     or later).
              OemQuotes = 222,
              //
              // Summary:
              //     The OEM 8 key.
              Oem8 = 223,
              //
              // Summary:
              //     The OEM 102 key.
              Oem102 = 226,
              //
              // Summary:
              //     The OEM angle bracket or backslash key on the RT 102 key keyboard (Windows
              //     2000 or later).
              OemBackslash = 226,
              //
              // Summary:
              //     The PROCESS KEY key.
              ProcessKey = 229,
              //
              // Summary:
              //     Used to pass Unicode characters as if they were keystrokes. The Packet key
              //     value is the low word of a 32-bit virtual-key value used for non-keyboard
              //     input methods.
              Packet = 231,
              //
              // Summary:
              //     The ATTN key.
              Attn = 246,
              //
              // Summary:
              //     The CRSEL key.
              Crsel = 247,
              //
              // Summary:
              //     The EXSEL key.
              Exsel = 248,
              //
              // Summary:
              //     The ERASE EOF key.
              EraseEof = 249,
              //
              // Summary:
              //     The PLAY key.
              Play = 250,
              //
              // Summary:
              //     The ZOOM key.
              Zoom = 251,
              //
              // Summary:
              //     A constant reserved for future use.
              NoName = 252,
              //
              // Summary:
              //     The PA1 key.
              Pa1 = 253,
              //
              // Summary:
              //     The CLEAR key.
              OemClear = 254,
              //
              // Summary:
              //     The bitmask to extract a key code from a key value.
              KeyCode = 65535,
              //
              // Summary:
              //     The SHIFT modifier key.
              Shift = 65536,
              //
              // Summary:
              //     The CTRL modifier key.
              Control = 131072,
              //
              // Summary:
              //     The ALT modifier key.
              Alt = 262144,
          }
       
      Last edited: Oct 7, 2015
    7. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      Hotkey customization is on the way slowly thru the Agility Settings menu, but for now, this is pretty much all you've got!

      While I don't currently support this action, you are indeed able to modify Agility.cs and replace the key values. (Change Keys.D1 to Key.WhateverEtc) and it will effectively change the hotkey "1" to whatever you chose from the above enumeration.

      PS: It'll revert itself on every Agility update, which won't be ideal for most.
       
    8. Buttseckz

      Buttseckz Member

      Joined:
      Jun 6, 2012
      Messages:
      65
      Likes Received:
      0
      Trophy Points:
      6
      Yeah, maybe I should stop teaching people how to potentially mess up the whole thing, right? Sorry about that. :eek:
       
    9. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      Not at all! I don't mind! I'm just letting people know that I don't support it (when it comes to fixes and technical support, etc). :)
       
    10. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      An update has just been pushed to the SVN that fixes a lot (not all) of the rotation issues!

      What's still broken and being worked on:

      - Abilities with different phases (Engineer pet attacks).
      - Cooldown detection on certain abilities.

      If you notice any issues with the bot attempting to spam an ability it can not use, please post a complete log and description to assist me!

      Thanks!
       
      Last edited: Oct 7, 2015
    11. lab185

      lab185 New Member

      Joined:
      Oct 12, 2012
      Messages:
      7
      Likes Received:
      0
      Trophy Points:
      1
      nice Deathdisguise ty for your work <333
       
    12. MCHammer87

      MCHammer87 New Member

      Joined:
      Aug 30, 2015
      Messages:
      56
      Likes Received:
      0
      Trophy Points:
      0
      Deathdisguise : do you mind tell me what you changed on the warrior ? :) saw that it was a update on svn so:)
       
    13. eng1ish

      eng1ish New Member

      Joined:
      Oct 10, 2011
      Messages:
      99
      Likes Received:
      1
      Trophy Points:
      0
      please please PLEASE as a matter of urgency, please change it so we dont have to hold down number 1, let us choose which button, its a pain in the ass, much respect for the bot tho, tnx
       
    14. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      With the new change I placed to check if an ability is useable, some parts of the Warrior routine were no longer required and redundant, so I removed them (partially as a test, but it'll also improve performance by a tiny amount for users)

      Yessir! It's on the to-do list, but my first priority is fixing the broken before I continue on with regular development! :(
       
    15. Angully

      Angully Member

      Joined:
      Sep 19, 2010
      Messages:
      764
      Likes Received:
      1
      Trophy Points:
      18
      Holding 1 on warrior does nothing now?

      After further testing this only applies to tanking spec :/
       
      Last edited: Oct 8, 2015
    16. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      :eek:

      Log me! Haha
       
    17. Angully

      Angully Member

      Joined:
      Sep 19, 2010
      Messages:
      764
      Likes Received:
      1
      Trophy Points:
      18
      No information on log its empty its as if its not registering the 1 key at all.

      Code:
      2015-10-08 22:18:58,655 [1] DEBUG Hotkeys - Registered hotkey TargetDump to Alt, Shift + D
      2015-10-08 22:18:58,664 [1] DEBUG Hotkeys - Registered hotkey Inventory to Alt, Shift + I
      2015-10-08 22:18:58,664 [1] DEBUG Hotkeys - Registered hotkey QuestDump to Alt, Shift + Q
      2015-10-08 22:18:58,664 [1] DEBUG Hotkeys - Registered hotkey OffmeshConnection to Alt, Control, Shift + C
      2015-10-08 22:18:58,664 [1] DEBUG Hotkeys - Registered hotkey ShowClickLocation to Alt, Shift + C
      2015-10-08 22:18:58,665 [1] DEBUG Hotkeys - Registered hotkey PDT_Interact to Alt, Control + I
      2015-10-08 22:18:58,665 [1] DEBUG Hotkeys - Registered hotkey PDT_TurnIn to Alt, Control + T
      2015-10-08 22:18:58,665 [1] DEBUG Hotkeys - Registered hotkey PDT_PickUp to Alt, Control + P
      2015-10-08 22:18:58,665 [1] DEBUG Hotkeys - Registered hotkey PDT_MoveTo to Alt, Control + O
      2015-10-08 22:18:58,665 [1] DEBUG Hotkeys - Registered hotkey PDT_GrindHotspot to Alt, Control + H
      2015-10-08 22:18:58,665 [1] INFO  MainWindowViewModel - WildbuddyBETA 0.1.546.258 starting...
      2015-10-08 22:18:58,666 [1] INFO  MainWindowViewModel - CPU Architecture: x64
      2015-10-08 22:18:58,666 [1] INFO  MainWindowViewModel - Process Architecture: x64
      2015-10-08 22:18:58,669 [1] INFO  MainWindowViewModel - OS: Windows 8.1 Professional x64
      2015-10-08 22:18:58,669 [1] INFO  MainWindowViewModel - OS Version: Microsoft Windows NT 6.2.9200.0
      2015-10-08 22:18:58,669 [1] INFO  MainWindowViewModel - .NET Runtime Version: 4.0.30319.42000
      2015-10-08 22:18:58,670 [1] INFO  MainWindowViewModel - System Memory: 15.94 GB Available
      2015-10-08 22:18:58,670 [1] INFO  MainWindowViewModel - CPU Cores: 4
      2015-10-08 22:18:58,670 [1] INFO  MainWindowViewModel - Application Uri: D:\Users\<User>\Desktop\Wildbuddy
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey TargetDump to Alt, Shift + D
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey Inventory to Alt, Shift + I
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey QuestDump to Alt, Shift + Q
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey OffmeshConnection to Alt, Control, Shift + C
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey ShowClickLocation to Alt, Shift + C
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey PDT_Interact to Alt, Control + I
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey PDT_TurnIn to Alt, Control + T
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey PDT_PickUp to Alt, Control + P
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey PDT_MoveTo to Alt, Control + O
      2015-10-08 22:18:58,777 [1] DEBUG Hotkeys - Registered hotkey PDT_GrindHotspot to Alt, Control + H
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - WildbuddyBETA 0.1.546.258 starting...
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - CPU Architecture: x64
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - Process Architecture: x64
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - OS: Windows 8.1 Professional x64
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - OS Version: Microsoft Windows NT 6.2.9200.0
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - .NET Runtime Version: 4.0.30319.42000
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - System Memory: 15.94 GB Available
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - CPU Cores: 4
      2015-10-08 22:18:58,778 [1] INFO  MainWindowViewModel - Application Uri: D:\Users\<User>\Desktop\Wildbuddy
      2015-10-08 22:18:58,819 [1] DEBUG TypeFinder<IBot> - Type ProfileBot implements interface IBot
      2015-10-08 22:18:59,085 [1] INFO  MainWindow - Logging in...
      2015-10-08 22:18:59,342 [1] INFO  MainWindow - T: 5247485413818305283 H: 1208677667
      2015-10-08 22:18:59,649 [1] DEBUG ProcessWrapper - Mutex.TryOpenExisting on PID 8740
      2015-10-08 22:18:59,662 [1] DEBUG ProcessWrapper - Mutex.TryOpenExisting on PID 8740
      2015-10-08 22:18:59,886 [1] DEBUG MainWindow - Game Process Hook Type: Other hook short
      2015-10-08 22:18:59,887 [1] INFO  GameEngine - Attached to game: [8740] WildStar64 (Hash: F0DEFCC3)
      2015-10-08 22:18:59,890 [1] DEBUG Hotkeys - Initialized hotkeys to window handle + 2C0578
      2015-10-08 22:18:59,907 [1] DEBUG GameManager - Base Addr 7FF74C810000
      2015-10-08 22:18:59,914 [1] INFO  MainWindow - Local Player is a level 13 Granok Warrior Soldier
      2015-10-08 22:18:59,940 [1] INFO  MainWindow - Location: X:4094.804 Y:-1051.851 Z:-3946.514 (Area: 3847) on Eastern [51]
      2015-10-08 22:19:00,147 [1] DEBUG TypeFinder<IBot> - Type Agility implements interface IBot
      2015-10-08 22:19:00,361 [1] DEBUG TypeFinder<ICombatRoutine> - Type DefaultRoutine implements interface ICombatRoutine
      2015-10-08 22:19:00,490 [1] DEBUG TypeFinder<ICombatRoutine> - Type DebugRoutine implements interface ICombatRoutine
      2015-10-08 22:19:00,658 [1] DEBUG TypeFinder<IPlugin> - Type AutoEquipPlugin implements interface IPlugin
      2015-10-08 22:19:00,676 [1] INFO  MainWindow - Selected new bot: Agility v0.5 by Deathdisguise
      2015-10-08 22:19:00,680 [1] DEBUG MainWindow - Last Routine Used: Default Combat Routine
      2015-10-08 22:19:00,680 [1] DEBUG MainWindow - Found last used routine! Setting it as selected...
      2015-10-08 22:19:00,702 [1] INFO  SpellManager - Setting game spell cast behavior to Normal
      2015-10-08 22:19:00,705 [1] INFO  MainWindow - Selected Default Combat Routine version 1.0 as the current combat routine!
      2015-10-08 22:19:00,705 [1] DEBUG MainWindow - Routine is a button provider, showing config button...
      2015-10-08 22:19:00,705 [1] INFO  MainWindow - Plugin Auto Equip (version 1.0.0.0) by Apoc enabled.
      2015-10-08 22:19:00,746 [1] DEBUG Events - Registering Lua event LootedItem to Buddy.Wildstar.Game.LuaEventCallback
      2015-10-08 22:19:00,764 [1] DEBUG Events - Registering Lua event UpdateInventory to Buddy.Wildstar.Game.LuaEventCallback
      2015-10-08 22:19:04,270 [Pulsator Thread] DEBUG Agility [VariableController] - Saving original combat settings.
      2015-10-08 22:19:04,369 [Pulsator Thread] DEBUG Agility [VariableController] - Loading preferred combat settings.
      2015-10-08 22:19:04,369 [Pulsator Thread] INFO  SpellManager - Setting game spell cast behavior to Normal
      2015-10-08 22:19:04,482 [Pulsator Thread] WARN  Agility - Agility Hotkeys:
      2015-10-08 22:19:04,482 [Pulsator Thread] WARN  Agility - 1 - Full DPS
      2015-10-08 22:19:04,482 [Pulsator Thread] WARN  Agility - 2 - Slow DPS
      2015-10-08 22:19:04,482 [Pulsator Thread] WARN  Agility - 3 - Stun
      2015-10-08 22:19:04,482 [Pulsator Thread] WARN  Agility - 4 - Heal
      1 Key has been pressed. Slow DPS works without issue.
       
    18. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      Well that's awkward. I'll finally get around to putting more debugging into the next version! Till then, check your hotkeys in the Agility Settings! See if anything has gone astray?
       
    19. Angully

      Angully Member

      Joined:
      Sep 19, 2010
      Messages:
      764
      Likes Received:
      1
      Trophy Points:
      18
      Solved the issue by copying over Warrior_DPS with the Warrior_Tank script and changing.

      "class Warrior_Tank : IAgilityRoutine" into "class Warrior_DPS : IAgilityRoutine"

      So somewhere in Agility there is an issue with using the 1 Key for two scripts.
       
      Last edited: Oct 8, 2015
    20. Deathdisguise

      Deathdisguise Community Developer

      Joined:
      Mar 7, 2015
      Messages:
      678
      Likes Received:
      6
      Trophy Points:
      0
      I suspect you have your Agility Settings hotkey set to the tank routine, and were attempting to run the DPS routine. :eek:
      None the less, I shall add more logging goodness!
       

    Share This Page