Close
Page 3 of 10 FirstFirst 1 2 3 4 5 ... LastLast
Showing results 21 to 30 of 99
  1. #21

    Default

    Quote Originally Posted by 'liqiud',index.php?page=Thread&postID=216073#post2 16073
    I currently use HotKeyNet for Mouse replication and Keyclone for the rest...I'll have to go back and try Keyclone for the mouse replication.
    Or just use HKN for the rest.
    Owltoid, Thatblueguy, Thisblueguy, Otherblueguy, Whichblueguy

  2. #22
    Senior Member
    Join Date
    Jul 2007
    Location
    Spokane, WA
    Posts
    656

    Default

    Welcome, and thank you for stepping up with your software!

    Hopefully you can get in touch with Ellay and you two can work out the details of getting your software on the forums, it looks to be a good contender for software multiboxing solutions.
    Quote Originally Posted by 'Aarelan',index.php?page=Thread&postID=216081#post 216081
    I realize the this is KeyClone's web site
    The only misconception is that this is his website. While it is not his website, www.solidice.com, this is where he does all of his business for Keyclone.

    No harm no foul though.
    Gurb Fan Club:
    #1 Fan - Zenthor

  3. #23

    Default

    Welcome to the forums!

  4. #24

    Default

    Quote Originally Posted by 'Simulacra',index.php?page=Thread&postID=215964#po st215964
    Hi - Keyclone does have mouse replication for each screen, I found it the other day by accident and it works well - each mouse pointer goes to exactly the same spot on each screen so you could easily use blizzard.
    Ehh.. how? :S

  5. #25

    Default GameCommanderPro Spell Rotations

    Quote Originally Posted by 'Fursphere',index.php?page=Thread&postID=216110#po st216110
    http://www.gamecommanderpro.com/createspellrotation

    Please help me understand how this program works.

    Based on the information on this page, it looks like the program is casting the spells for you, based on the rotation you pre-select? That looks a lot like automation to me.
    GameCommanderPro does not cast the spells for you. It creates a series of GCP commands, each command casts one spell for each character (which ever spell starts on the black line). It then generates a set of control commands which allow you to cast current spell then move to the next, repeat the last spell (in case the cast fails), skip the next step, or start at the beginning again. Each of these steps is initiated by a keypress. The user decides which key to press. Think of it as a /castsequence for multiple characters with graphical editing.
    Phil@GameCommanderPro.com
    www.GameCommanderPro.com
    Aarelan (Paladin), Barelan(Hunter), Carelan(warlock), Darelan(priest),Earelan(mage) - My "nearly" level 30 blood elf mixed team on Stormrage - current "mains"
    Akow, Bkow, CKow, Dkow - My lvl 70 tauren druids on Stormrage (I haven't had time for WOTLK as I've been working on the software)

  6. #26

    Default

    Quote Originally Posted by 'Fursphere',index.php?page=Thread&postID=216113#po st216113
    http://www.gamecommanderpro.com/node/57

    Explain this too. This looks like scripting to me.
    I assume you mean automations when you say scripting, as scripting is build into World of Warcraft, and is obviously not a problem (ie. macros, /script, mods via lua, etc.).

    Let me say now that GameCommanderPro is completely legal and uses no automation.

    GameCommanderPro only sends keystrokes to World of Warcraft. It only sends 1 keystroke to a window for each user keystroke. The fact that it looks like scripting is exactly the point we are making when we say that GameCommanderPro makes multi boxing more accessible. To take an example from your post,
    Self Buffs
    ----------
    KeyReset 6000
    <<Vindicaer,Callidaer,Eversaer,Culexaer,Venenaer >>
    if %KeyCount% = 1
    Cast Buffs On Vindicaer-Target
    <<Eversaer,Culexaer,Venenaer>>
    macro /script CancelItemTempEnchantment(1)
    endif

    if %KeyCount% > 1
    <<Vindicaer>>
    Cast Righteous Fury on Vindicaer-Target
    <<Eversaer, Culexaer, Venenaer>>
    macro /use Lesser Firestone
    macro /use 16 (16 is macro code for weapon hand one)
    KeyReset
    endif"
    Although this is edited as one script its broken down into several macro and generates key bindings for each. The names in "<<>>" simply tell the key mapper which windows to send to. The "Cast" command generates a macro for WoW and a keystroke to invoke it. The "if" and "keyreset" statements simply provide a mechanism for casting a different spell on each press (see /castsequence on WoW website for details of how to achieve this).
    Phil@GameCommanderPro.com
    www.GameCommanderPro.com
    Aarelan (Paladin), Barelan(Hunter), Carelan(warlock), Darelan(priest),Earelan(mage) - My "nearly" level 30 blood elf mixed team on Stormrage - current "mains"
    Akow, Bkow, CKow, Dkow - My lvl 70 tauren druids on Stormrage (I haven't had time for WOTLK as I've been working on the software)

  7. #27

    Default

    Quote Originally Posted by 'Fursphere',index.php?page=Thread&postID=216130#po st216130
    Alright, It sounds like you know the difference here. Thanks for spending time to clarify.
    If Fur had a stamp, I imagine it would be here.




  8. #28

    Default

    Hmm this actually looks promising. How do you guys handle window switching or does it? The time line feature is pretty nice. Alot faster than trying to set it up in excel hehe.

    Edit: Also how would you set up something like FTL with it?

  9. #29

    Default

    Quote Originally Posted by 'rahven32',index.php?page=Thread&postID=216181#pos t216181
    Hmm this actually looks promising. How do you guys handle window switching or does it? The time line feature is pretty nice. Alot faster than trying to set it up in excel hehe.

    Edit: Also how would you set up something like FTL with it?
    Window switching is built into GameCommanderPro. Your leader is wherever you mouse is pointed, when we talk about leader we mean the biggest window. You can also store a zoomed position and size and have a hotkey (default "CTRL-Z") to zoom the active window.
    Here's the follow command created by our setup wizard:
    <<All>>
    if %$LeaderChan% = 1
    Follow Aarelan
    endif
    if %$LeaderChan% = 2
    Follow Barelan
    endif
    if %$LeaderChan% = 3
    Follow Carelan
    endif
    if %$LeaderChan% = 4
    Follow Darelan
    endif
    if %$LeaderChan% = 5
    Follow Earelan
    endif


    "%LeaderChan%" is the window containing the mouse, so as you can see, making macros dependent on the "active" character is really simple.
    For example, in pvp, one tactic is to bust down a multiboxer's leader, but with GCP you could just point to the next window hit "CTRL-Z" and carry on fighting.

    Honestly we had to google FTL because we mainly use GCP and we've never come across the FTL problem.
    Phil@GameCommanderPro.com
    www.GameCommanderPro.com
    Aarelan (Paladin), Barelan(Hunter), Carelan(warlock), Darelan(priest),Earelan(mage) - My "nearly" level 30 blood elf mixed team on Stormrage - current "mains"
    Akow, Bkow, CKow, Dkow - My lvl 70 tauren druids on Stormrage (I haven't had time for WOTLK as I've been working on the software)

  10. #30

    Default

    So the active window is whatever the mouse is at? Now when you say zoom does that mean say I have my tank in the big window (leader) then I'd have to mouse over one of my smaller window's then hit CTRL-Z to make that window the big window? Or can I bind F8-F12 for each window?

Similar Threads

  1. GameCommanderPro in game addon free to download.
    By Aarelan in forum Software Tools
    Replies: 2
    Last Post: 07-16-2009, 08:54 PM
  2. comparison GameCommanderPro vs. KeyClone
    By shadoman in forum General WoW Discussion
    Replies: 0
    Last Post: 01-01-1970, 12:00 AM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •