Macros? menu

User Tag List

Thread: Macros?

Results 1 to 10 of 10
  1. #1
    stfufag's Avatar Active Member
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    293
    Thanks G/R
    46/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Macros?

    Anyone know macros to set up, maybe with autohotkey since autolooping will be disabled?

    Macros?
  2. #2
    Veritable's Avatar OwnedCore News Correspondent
    Reputation
    326
    Join Date
    Apr 2007
    Posts
    372
    Thanks G/R
    52/123
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The only macro's I have done are the ones with my mouse/keyboard software. It worked before, so unless they change something to disallow it, it should work again.

    I used it for combo's as well as crafting / gathering loops when I needed to do something productive for 15 minutes.

  3. #3
    arenawarrior's Avatar Active Member
    Reputation
    76
    Join Date
    Jan 2008
    Posts
    283
    Thanks G/R
    41/24
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know I got an error trying to log in with either Keyclone or Naga software

  4. #4
    Ehnoah's Avatar Elite User
    Reputation
    398
    Join Date
    Sep 2006
    Posts
    1,027
    Thanks G/R
    16/96
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Naga Software and any autohotkey work fine. Did some bots with yet.

  5. #5
    stfufag's Avatar Active Member
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    293
    Thanks G/R
    46/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I`m kinda bad at this, how to set up autohotkey to hit a key in bdo every 30 minutes fore example?

  6. #6
    Wetop's Avatar Elite User
    Reputation
    370
    Join Date
    Jan 2008
    Posts
    486
    Thanks G/R
    15/22
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would rep people for some useful macros they made. All i've done is bind skill combos to naga buttons so i don't use the quickslots.

  7. #7
    Seminko's Avatar Contributor
    Reputation
    226
    Join Date
    Aug 2010
    Posts
    507
    Thanks G/R
    35/89
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I made one yesterday. But probably not what you're looking for... It mutes BDO sound when it is not the active window, since I didn't find any disable / enable sound in background tickbox in options.

    However, if you explain what you want I can take a look...
    Don't just say thanks, click thanks!

  8. #8
    stfufag's Avatar Active Member
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    293
    Thanks G/R
    46/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could you make one that runs in circles or just from a to b (does not have to be far) just to level up strength or stamina.

    And one that presses a certain key every 30 minutes - to level up health

  9. #9
    Veritable's Avatar OwnedCore News Correspondent
    Reputation
    326
    Join Date
    Apr 2007
    Posts
    372
    Thanks G/R
    52/123
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well here's one that will go through fishing rods every 12 minutes and cycle through them. You will lose an extra durability when it swaps because razer software can't detect anything, just send.
    Which is why you use other software to do other things.

    Instructions:

    1. Buy 8 Fishing Poles From Vendor
    2. Assign them to slots 3 through 0
    3. Make a new macro in Synapse
    4. Edit macro located in your programdata/razer/synapse/accounts/etc... (find the right macro)
    5. Paste the following into the macro after the "UUID" section and save it.
    6. Make sure you have a weapon equipped instead of a fishing rod, and go to where you want to fish.
    7. Start Macro


    ** NOTE ** If this doesn't work, then it's probably the keystrokes and the hardware ID's. You might have to re-enter all of the keystrokes which means copying this is useless, and you just have to learn how to make them yourself

    This macro will use a rod (equips) and then press Space to start fishing. Wait for 12 minutes and then repeat using the next one. It starts at slot 0 and goes backwards to slot 3.

    Code:
        <EventList>
            <Event id="KEYBOARD">
                <HID>070027</HID>
                <Mod>30000B008B</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070027</HID>
                <Mod>30000B008B</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070026</HID>
                <Mod>39000A008A</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070026</HID>
                <Mod>39000A008A</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070025</HID>
                <Mod>3800090089</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070025</HID>
                <Mod>3800090089</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070024</HID>
                <Mod>3700080088</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070024</HID>
                <Mod>3700080088</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070023</HID>
                <Mod>3600070087</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070023</HID>
                <Mod>3600070087</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070022</HID>
                <Mod>3500060086</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070022</HID>
                <Mod>3500060086</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070021</HID>
                <Mod>3400050085</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070021</HID>
                <Mod>3400050085</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070020</HID>
                <Mod>3300040084</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>070020</HID>
                <Mod>3300040084</Mod>
                <State>1</State>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>0</State>
            </Event>
            <Event id="DELAY">
                <Delay>1000</Delay>
            </Event>
            <Event id="KEYBOARD">
                <HID>07002C</HID>
                <Mod>20003900B9</Mod>
                <State>1</State>
            </Event>
            <Event id="DELAY">
                <Delay>720000</Delay>
            </Event>
        </EventList>
    </Macro>

  10. #10
    nikolas75's Avatar Member
    Reputation
    1
    Join Date
    Mar 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Veritable,
    thank you for your example of fishing script. I have one question: I tried to increase the delay to 1 hour (3600000) but I saw that my char didnt switch to all rod ( I think he switch between 2 rod and not more). Do you know why? (Maybe I need to auto sort my inventory or other else but only 2 rod was consumed).

    thank you in advance.

Similar Threads

  1. How to chain 2+ spells into a macro
    By Matt in forum World of Warcraft Exploits
    Replies: 22
    Last Post: 07-03-2007, 12:33 AM
  2. How to make Macro's
    By oninuva in forum World of Warcraft Guides
    Replies: 21
    Last Post: 11-20-2006, 01:02 PM
  3. [Macro] Trick players to think your going a different way..
    By janzi9 in forum World of Warcraft Exploits
    Replies: 40
    Last Post: 08-14-2006, 03:46 PM
  4. Druid: Macro
    By oninuva in forum World of Warcraft Guides
    Replies: 0
    Last Post: 04-23-2006, 01:38 PM
  5. AutoIt Macro for WoW AFK Bot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 04-06-2006, 06:01 AM
All times are GMT -5. The time now is 12:55 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search