[Project]  Exploration Tutorial for WoW menu

User Tag List

Page 8 of 8 FirstFirst ... 45678
Results 106 to 116 of 116
  1. #106
    Dovah's Avatar Legendary The Explorer

    Reputation
    740
    Join Date
    Feb 2014
    Posts
    574
    Thanks G/R
    381/202
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Instead of a dc macro you can use alt-f4 that should fix your problem


    I rarely check Ownedcore nowadays. Need to contact me? Message me on Discord: dovvah

    [Project]  Exploration Tutorial for WoW
  2. #107
    SH4D0WS1N's Avatar Active Member
    Reputation
    22
    Join Date
    Jan 2008
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, the DMT glitch still works right? Also, does it have to be the tiger or can I grab like the Murloc for example?

  3. #108
    WizardTrokair's Avatar <Walks Through Walls>
    Reputation
    1520
    Join Date
    Sep 2010
    Posts
    2,949
    Thanks G/R
    192/148
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SH4D0WS1N View Post
    Hey, the DMT glitch still works right? Also, does it have to be the tiger or can I grab like the Murloc for example?
    You cannot go through just any wall with the DMT. That glitch is fixed.
    You can go through invisible walls when using a DMT while standing on an object that intersects the wall. Instructions are in this thread. Yes, a Murloc will work as well.

  4. #109
    Dovah's Avatar Legendary The Explorer

    Reputation
    740
    Join Date
    Feb 2014
    Posts
    574
    Thanks G/R
    381/202
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can add Ruby Slippers - Item - World of Warcraft to the list. They dont hearth you when you use character stuck but can be useful for classes without a mage/shaman second hearth spell (forget the name)
    Edit: Also zoning into other areas inside instances for example dalaran inside end time.
    Last edited by Dovah; 05-26-2014 at 10:38 PM.


    I rarely check Ownedcore nowadays. Need to contact me? Message me on Discord: dovvah

  5. #110
    jimmys96's Avatar Legendary
    Reputation
    757
    Join Date
    Aug 2008
    Posts
    1,170
    Thanks G/R
    224/210
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Some more info on the lock circle.. You can put it in a tight space, move out, use an enlargement potion or whatever (not mount) and then use the circle teleport and you've successfully bypassed the wall(err, roof...) without needing to DC

  6. #111
    WizardTrokair's Avatar <Walks Through Walls>
    Reputation
    1520
    Join Date
    Sep 2010
    Posts
    2,949
    Thanks G/R
    192/148
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ^^ Aye, DMT works the same way. Good tip.

  7. #112
    Horsebreed's Avatar Private
    Reputation
    5
    Join Date
    Jul 2013
    Posts
    4
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not sure if other people know about this or not, but there's an easy way to perform wall-jumps without needing to precisely time inputs within milliseconds. Two macros are needed for this trick. The first lowers the max fps so that you have more time per frame to input. The second just changes the maxfps back to default. This works very well for me as I can consistently wall-jump with a little bit of practice. Also, your machine's hardware may not allow the game to render as low as 1 fps, so your mileage may vary. Consequently, this means that the lower your fps is, the easier it will be to walljump. In particular, a game that runs at 20 fps will allow easier walljumping than a game running at 120 fps.

    I've tested this on a private server that I play on (3.3.5a 12340), so I'm not certain if it works on the latest patch. Although I really doubt this doesn't work on live, I have no way of checking.

    First Macro:
    /console maxfps 1

    Second Macro:
    /console maxfps 0

    EDIT: I've tested this on 6.0.x and it still works fine, if not better.
    Last edited by Horsebreed; 04-21-2017 at 07:37 PM.

  8. #113
    Ziozi's Avatar Contributor
    Reputation
    254
    Join Date
    Feb 2013
    Posts
    402
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I guess this should be thrown up here now,
    http://www.ownedcore.com/forums/worl...-speedrun.html (Death from Above through walls exploit/Jikun Speedrun)

    It's a glitch i've been having a lot of fun with myself, but didn't share as im afraid it will be fixed, anyways, with this tool you get through anything, as long as there is a mob! what i dont think he mentions in the post is that you have to use /cancelaura death from above in mid air to stay behind the walls. Have fun

  9. #114
    monsterrofl's Avatar Master Sergeant
    Reputation
    57
    Join Date
    Oct 2012
    Posts
    78
    Thanks G/R
    3/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A useful technique if you're exploring with 2 players. If one of the players are being behind a wall which the other cant get behind - the player who needs to get through the wall can destroy their hearthstone and then click the character unstuck button. After a short time it will kill them then they other player can mass res them on the other side of the wall.

  10. #115
    Woona's Avatar Contributor
    Reputation
    189
    Join Date
    Apr 2013
    Posts
    342
    Thanks G/R
    0/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    With a program called AutoIt v3, you can easily make keyboard macros that will help you with some of the more boring/menial exploration tasks.

    Take for example this script I use to climb sticky walls by simply holding down F1. No chance of failure, no painful hands from spamming space-w space-w space-w...

    Code:
    HotKeySet("{F1}", "jump")
    HotKeySet("{PAUSE}", "unbind")
    
    func jump() ; normal jump
        HotKeySet("{F1}")
        Send("{SPACE}")
        Sleep(100)
        Send("{W DOWN}")
        Send("{W UP}")
        Sleep(300)
        HotKeySet("{F1}", "jump")
        idle()
    EndFunc
    
    Func idle() ; idle, do nothing
        while 1
            Sleep(1000)
        WEnd
    EndFunc
    
    Func unbind() ; unbind keys
        HotKeySet("{F1}")
        HotKeySet("{PAUSE}", "rebind")
        idle()
    EndFunc
    
    
    Func rebind() ; rebind the keys
        HotKeySet("{F1}", "jump")
        HotKeySet("{PAUSE}", "unbind")
        idle()
    EndFunc
    
    
    
    idle()
    Last edited by Woona; 03-28-2015 at 09:25 AM.

  11. #116
    Dante's Avatar M.L.G. ╰ ╯╰ ╯ ╰ ╯ ╰ ╯ CoreCoins Purchaser
    Reputation
    1321
    Join Date
    Aug 2012
    Posts
    2,481
    Thanks G/R
    132/141
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Spatial rift is(void elf passive) a really strong tool for exploration lettiing you through object and walls.
    I don't have a skype account. Contact me through pms or through discord.



Page 8 of 8 FirstFirst ... 45678

Similar Threads

  1. [Tutorial] Video tutorials for 1.12 vanilla wow bot
    By Dronez in forum WoW Bot Maps And Profiles
    Replies: 0
    Last Post: 08-14-2016, 01:54 PM
  2. Replies: 0
    Last Post: 10-22-2015, 08:54 AM
  3. [Release] Open Souce Project for WoW 1.12.1
    By daCoder in forum World of Warcraft Bots and Programs
    Replies: 16
    Last Post: 03-27-2014, 10:52 AM
  4. [Release] Open Souce Project for WoW 1.12.1
    By daCoder in forum WoW EMU Programs
    Replies: 0
    Last Post: 10-30-2012, 03:52 AM
  5. WoW Font Tutorial (for the websites!)
    By xwinterx in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 10-07-2009, 09:32 PM
All times are GMT -5. The time now is 03:27 AM. 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