[100 - 110] Very Fast Leveling menu

User Tag List

Page 4 of 4 FirstFirst 1234
Results 46 to 59 of 59
  1. #46
    smithwicks's Avatar Member
    Reputation
    8
    Join Date
    Apr 2009
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by The.Ashbringer View Post
    You can use an Autohotkey. If you don't know autohotkey, its a simple program that lets your computer input keys without you actually pressing them. And you can even program it to make it input keys only to a specific application ( like WoW).

    Here is a script I used for autohotkey that makes my character jump every 20 seconds preventing AFK:

    #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

    WinGet, wowid, ID, World of Warcraft

    $^+F9::
    if (enable := !enable)
    setTimer, MoveAround, -1
    return

    MoveAround:
    while enable
    {
    ifWinExist, ahk_id %wowid%
    {


    ControlSend,, {Space}, ahk_id %wowid%

    Random, r, 5000, 60000
    Sleep r
    }
    }
    return

    When you jump up and down you look like an afk bot. Instead, press B for bags. You won't go afk and instead of looking like a bot it'll look like you went bio

    [100 - 110] Very Fast Leveling
  2. #47
    Raham's Avatar Contributor
    Reputation
    119
    Join Date
    Sep 2008
    Posts
    147
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nerfed I guess, Imps give only 50 exp now.

  3. #48
    Garneth's Avatar Contributor
    Reputation
    97
    Join Date
    Jul 2010
    Posts
    424
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Raham View Post
    Nerfed I guess, Imps give only 50 exp now.
    Anyone else care to check to verify? I still haven't hit 110 on any character and haven't touched WoW in months, but a quick-leveling strat might interest me in re-downloading.
    Last edited by Garneth; 07-15-2017 at 10:28 AM.

  4. Thanks Transdimensional (1 members gave Thanks to Garneth for this useful post)
  5. #49
    moniak's Avatar Active Member
    Reputation
    32
    Join Date
    Jun 2010
    Posts
    15
    Thanks G/R
    1/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's Nerfed imbs give only 25 exp when u exp with 110 ;/

  6. #50
    Wacon's Avatar Active Member
    Reputation
    24
    Join Date
    Apr 2013
    Posts
    24
    Thanks G/R
    4/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    At this point, this thread provides the group finder macro since the imp exp has been nerfed.

  7. Thanks HooHaaa (1 members gave Thanks to Wacon for this useful post)
  8. #51
    HooHaaa's Avatar Member
    Reputation
    2
    Join Date
    Jun 2017
    Posts
    7
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just wanted to say this works great with the Bloodgazer swarm WQ's.

    Thx a lot OP!

    And I wouldn't exactly say it's fast levelling- but anything AFK is worth it.

    If you don't want to bother with AHK, just mount and hover above aggro so you don't get ganked, then make a macro on you gaming k/b or mouse- toggle repeat 10000ms.

    Mine moves left, right, then spams the group macro.
    Last edited by HooHaaa; 07-26-2017 at 12:00 PM.

  9. #52
    buschaffe's Avatar Active Member

    Reputation
    15
    Join Date
    May 2009
    Posts
    41
    Thanks G/R
    11/12
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey and thank you for this thread. I use this to level with certain invasion quests and made a pixel-reading macro to automatically put up the group search while WOW is in the background! Hope it helps someone else too.


    Code:
    High Mountain:
    /run C_LFGList.CreateListing(421, "Borne of Fel", 0, 0, "", "Doing the world Quest [Borne of Fel]. Automatically created by World Quest Group Finder 0.26.33. #WQ:46193#PVP#", "",false,0, 46193)
    
    Broken Shore: only 414ep with heirlooms and rested per mob
    /run C_LFGList.CreateListing(469, "Stand!", 0, 0, "", "Doing the world quest [Stand!]. Automatically created by World Quest Group Finder 0.26.33. #WQ:46109#PVE#", "",false,0, 46109)
    
    
    Zone-IDs
    419 Azsuna
    420 Val'Shara
    421 Highmountain
    422 Stormheim
    423 Suramar
    469 Broken Shore

    PHP Code:
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    #Warn  ; Enable warnings to assist with detecting common errors.
    SendMode Input  Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.


    freq:=15000 15 Second Delay between Macro presses
    #MaxThreadsperHotkey 2
    $XButton2::                                  ;change XButton2 to whatever you want to toggle with F1F2 or whatever
    toggle 
    := !toggle
    Loop
    {
        if 
    toggle{
        
    CoordModePixelClient
        PixelGetColor
    clr51322

        
    if !(clr "0x63656B"){                 ;Change Color to whatever you pickedI take the lowest group frame border
            ControlSend
    ,,1,World of Warcraft  ;Send 1 to wow window
            sleep 
    %freq%    
        }
        }
        else{
            break
        }
    }
    return

    <+
    s::                                    ; Press Shift+S to get the Coordinates and Color of the lowest groupframe border
    mousegetpos
    mxmy                        don't know how to get rid of the window, just reload the script  
    pixelgetcolor, color, %mx%, %my%      
    tooltip %color%`n x: %mx% y: %my%
    clipboard = %color%
    return 
    Last edited by buschaffe; 07-27-2017 at 11:44 AM.

  10. Thanks smithwicks (1 members gave Thanks to buschaffe for this useful post)
  11. #53
    smithwicks's Avatar Member
    Reputation
    8
    Join Date
    Apr 2009
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this still work? Just getting back to wow after a long break. This seems not to work

  12. #54
    iinfii's Avatar Contributor
    Reputation
    91
    Join Date
    Aug 2009
    Posts
    151
    Thanks G/R
    40/36
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by smithwicks View Post
    Does this still work? Just getting back to wow after a long break. This seems not to work
    welcome to 2k18...

  13. #55
    smithwicks's Avatar Member
    Reputation
    8
    Join Date
    Apr 2009
    Posts
    68
    Thanks G/R
    3/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iinfii View Post
    welcome to 2k18...
    this kind of crap is sort of why i quit in the first place. welcome to being a dick

  14. #56
    samberg6160's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by smithwicks View Post
    this kind of crap is sort of why i quit in the first place. welcome to being a dick
    Or you could just not necro old threads and search for newer ones instead.

    Sent from my LG-H918 using Tapatalk

  15. #57
    doomexpt's Avatar Banned
    Reputation
    4
    Join Date
    May 2012
    Posts
    176
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know how to make this work again ?

  16. #58
    EazyLoot's Avatar Banned Diablo II: Resurrected CoreCoins Purchaser
    Reputation
    47
    Join Date
    Jun 2012
    Posts
    158
    Thanks G/R
    10/20
    Trade Feedback
    2 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by doomexpt View Post
    Anyone know how to make this work again ?
    Nice necro.

    It can't be fixed as Blizzard changed it, like all other "major" xp cheeses

  17. #59
    mopa1000's Avatar Banned
    Reputation
    1
    Join Date
    May 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SFI View Post
    Nice necro.

    It can't be fixed as Blizzard changed it, like all other "major" xp cheeses
    I actually did have that same issue and don't know the cause of it. Do you, perchance, have the World Quest Group Finder addon? If so, I believe that might be the cause and disabling it during the farming might solve the issue. If not, I don't know and can only tell you to keep an eye on the group finder eye to reinstate when it delists. Dafont 192.168.1.1 FileHippo
    Last edited by mopa1000; 05-03-2019 at 12:07 PM.

Page 4 of 4 FirstFirst 1234

Similar Threads

  1. [Selling] 100-110 manual power leveling &New BOE items of egion & TCG mounts cheap!
    By rzturner22 in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 09-17-2016, 01:12 PM
  2. [How-To] VERY! fast level-up from 10-60+
    By Phaek in forum World of Warcraft Guides
    Replies: 20
    Last Post: 11-03-2010, 09:33 PM
  3. Replies: 5
    Last Post: 08-02-2009, 09:09 PM
  4. Very very fast leveling...
    By spiderpigz in forum World of Warcraft Exploits
    Replies: 16
    Last Post: 11-03-2008, 05:07 AM
  5. Very FAST levelling around level 40!!!
    By Demonizer in forum World of Warcraft Guides
    Replies: 5
    Last Post: 11-21-2007, 10:51 AM
All times are GMT -5. The time now is 10:31 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