Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 15
  1. #1

    Default set Framerate when changing Main Window

    Hello @ all,

    i read that you can change the fps of the wow client with a simple macro ...

    so what i want to do is ..

    when i press F1 get wow1 in foreground and get the button shift f1 get pushed on the other windows and ctrl F1 on the main window...

    what i have is the following

    <Hotkey F1>
    <ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
    <SendPC local>
    <SendWinM wow2, wow3, wow4, wow5>
    <Key Shift F1>
    <SendWin wow1>
    <Key CTRL F1>
    <Key %trigger%>
    <Hotkey F2>
    <ResizeAndPosition WoW2 WoW1 WoW3 WoW4 WoW5>
    <Key %trigger%>
    <Hotkey F3>
    <ResizeAndPosition WoW3 WoW2 WoW1 WoW4 WoW5>
    <Key %trigger%>
    <Hotkey F4>
    <ResizeAndPosition WoW4 WoW2 WoW3 WoW1 WoW5>
    <Key %trigger%>
    <Hotkey F5>
    <ResizeAndPosition WoW5 WoW2 WoW3 WoW4 WoW1>
    <Key %trigger%>
    but i don't get any further ..

    have anyone maybe an solution ?! this would be very nice

    sincery spud

  2. #2

    Default

    fastes way to do this is to incorporate the keypressed in the <ResizeAndPosition>-Command, so could you please post the one you are using?
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  3. #3

    Default

    or on another thought to give you an idea:

    -If you use the <ResizeAndPosition> from the HKN-Guide on this forum, you may alter it like this:

    Code:
    <Command ResizeAndPosition>
      	<SendPC Local>
         	<SendWin %1%>
              	<SetWinRect 0 0 1280 1024>              
              	<Key ctrl F1>
         	<SendWinM %2%>
             	<SetWinRect 1280 0 640 512>  
             	<Key shift F1>
        	<SendWinM %3%>
             	<SetWinRect 1280 512 640 512>     
             	<Key shift F1>
        	<SendWinM %4%>
             	<SetWinRect 1920 0 640 512>     
             	<Key shift F1>
        	<SendWinM %5%>
            	<SetWinRect 1920 512 640 512>
             	<Key shift F1>
    (you would have tto customize your resolutions here)

    and call it simply with:
    Code:
    <Hotkey F1>
         <ResizeAndPosition WoW1 WoW2 WoW3 WoW4 WoW5>
    <Hotkey F2>
         <ResizeAndPosition WoW2 WoW1 WoW3 WoW4 WoW5>
    <Hotkey F3>
         <ResizeAndPosition WoW3 WoW2 WoW1 WoW4 WoW5>
    <Hotkey F4>
         <ResizeAndPosition WoW4 WoW2 WoW3 WoW1 WoW5>
    <Hotkey F5>
         <ResizeAndPosition WoW5 WoW2 WoW3 WoW4 WoW1>
    if you now bind a macro containing:
    /console setmaxfps XX (with XX the framerate you want for the big window) to 'ctrl F1' on all 5 wows,
    and a macro with '/console setmaxbkfps XX' to 'shift F1' on all 5 wows, this should work.
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  4. #4

    Default

    ..argh, sorry, but thinking about it, there is even a faster way to do this, which doesn'T need HKN:

    Simply set the maxfps and maxbkfps in the config-file of you wow (WTF-dir).
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  5. #5

    Default

    You only need to tell each WoW window once its maximum foreground and maximum background fps numbers.

    Once you do that, each WoW window will change from one number to the other as it moves between foreground and background. You don't have to change anything. WoW does the changing.

    There are several ways that you can tell these numbers to WoW. Like Olipcs said, one way is to do it in the config file.
    �Author of HotkeyNet and Mojo

  6. #6

    Default

    ..well even if the above is not necessary for maxfps/maxbkfps, you could use an approach like it, to change some other graphical details to improve performance. (for more on graph details you might want to look at: http://www.dual-boxing.com/wiki/inde...Graphic_Detail )
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  7. #7

    Default

    That's a good idea.
    �Author of HotkeyNet and Mojo

  8. #8

    Default

    thanks for the fast responds

    you are genius

    btw where do i find the stuff for *when in background use this maxfps*

    just find this ... *can i just add SET maxbkFPS "20"?*
    ...
    SET gxWindow "1"
    SET maxFPS "300"
    ...
    but the other option to send key when you switch windows looks also very interresting

    sincery spud

  9. #9

    Default

    Quote Originally Posted by 'spudstar99',index.php?page=Thread&postID=201868#p ost201868
    just find this ... *can i just add SET maxbkFPS "20"?*
    WoW itself writes the config file like this:

    Code:
    SET maxFPS "60; /console maxfpsbk 60"
    Probably both ways work. You can try and see in a minute.
    �Author of HotkeyNet and Mojo

  10. #10

    Default

    ok then i have to set them with a macro ...

    but i think he stated that i can add this to the config.wtf

    and thats what i want to go for

    sincery spud

Similar Threads

  1. Quad Client (Main Window Problem)
    By warwizard in forum General WoW Discussion
    Replies: 7
    Last Post: 04-24-2009, 01:43 AM
  2. changing main toon, how ?
    By Goodguy in forum Macros and Addons
    Replies: 6
    Last Post: 08-03-2008, 12:56 AM
  3. Keyclone - Switch Main window with Slave Window
    By Dinnie in forum New Multi-Boxers & Support
    Replies: 3
    Last Post: 07-03-2008, 11:09 AM
  4. Changing Main problems
    By Dinkydau in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 03-29-2008, 10:54 PM
  5. Keyclone main window PiP trouble
    By Brexin in forum New Multi-Boxers & Support
    Replies: 5
    Last Post: 02-29-2008, 11:44 PM

Posting Rules

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