evSpeed (variable speedhack) menu

User Tag List

Results 1 to 12 of 12
  1. #1
    Evieh's Avatar Contributor
    Reputation
    92
    Join Date
    Aug 2006
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    evSpeed (variable speedhack)

    Hello, this is a very simple variable speedhack (coded by me) for the latest WoW patch, works on retail.

    You will need a DLL injector which supports calling exports, I use Cypher's DLL Injector. I couldn't find binaries of it anywhere but the source is available here link, I will also include the binaries I downloaded from his old blog (hope that's okay).

    Status:
    Should be undetected, I can't guarantee anything though.
    Works on WoW 4.1.0.14007

    Download: (WoW 4.1.0.14007)
    Filebeam
    Megaupload

    Virus scans:
    Virustotal (DLL scan)
    Virustotal (.rar scan)

    You need to have Microsoft Visual C++ 2010 Redistributable Package installed link (atleast I think this is the correct one..).

    How to use:
    • Open the DLL Injector (LoaderGui.exe)
    • Choose the Wow process (to inject to)
    • Path is the DLL to inject (evSpeed.dll)
    • Export is "Initialize" without " " (to unload the hack choose Eject and export "Unload")
    • press Inject/Eject IA32


    To change the speed multiplier: /console speed 1

    Still don't understand? Here's a picture on how to! (also included in the download)

    Credits:
    Azorbix - DetourFunction/RetourFunction
    Cypher - His awesome DLL Injector

    Notes:
    I have only tested this on Vista however it should work on XP/W7 as well.
    Make sure you got administrator privileges when using this hack.

    I hope I didn't forget anything..

    gonna fix this once I can be bothered to re-install WoW
    Last edited by Evieh; 06-06-2011 at 01:40 PM.

    evSpeed (variable speedhack)
  2. #2
    mhollier117's Avatar Active Member
    Reputation
    38
    Join Date
    May 2011
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    testing will report

    i cant seam to get it working, wow crashes after the cmd prompt runs for a few seconds. would u like me to post the crash report from wowerror (or whatever the program that pops up is called). ive tryed using the proc id, process, open wow.exe with the hack, and window name none works


    edit: just reread op and noticed, did u include the injector you have used? or an old one u found on his blog? (obviously it says u included the old one but im jus curious it thats also th one u used :P)
    Last edited by mhollier117; 05-31-2011 at 07:50 PM. Reason: also tryed having it start wow.exe with the hack

  3. #3
    QtDemon's Avatar Contributor
    Reputation
    180
    Join Date
    Nov 2010
    Posts
    498
    Thanks G/R
    50/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can't get it to work on Windows 7. As soon as CMD starts running the game freezes up, when its finished it crashes and gives error report blah blah.

  4. #4
    Krustigutz's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone tried this, considering speed hacks were broken by Blizz?

    Won't run for me either, crashes after injecting on Windows 7 x64-Bit.
    Last edited by Krustigutz; 06-01-2011 at 01:41 AM.

  5. #5
    Evieh's Avatar Contributor
    Reputation
    92
    Join Date
    Aug 2006
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah crap, I think I found out why it crashes (I assume all 3 of you got W7), uploading a version which should work in a sec.
    I should get Windows 7 but I'm too lazy to format.

    Yes I included the same loader I use myself, I downloaded it from his old blog which seems to be down now.

    New links are in original post. If it still crashes I'm gonna have to get W7.
    Last edited by Evieh; 06-01-2011 at 07:07 AM.

  6. #6
    LogicWin's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Mar 2011
    Posts
    103
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Got error this error when i injected
    (wow error)

    Vista 32bit
    Code:
    The instruction at "0x1C472D78" referenced memory at "0x1C472D78".
    The memory could not be "executed".

  7. #7
    Evieh's Avatar Contributor
    Reputation
    92
    Join Date
    Aug 2006
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah well, screw this then.

    Jens updated his multihack with a variable speedhack so you can use that, probably safer as well.

    Or if you want to make your own, hook 0x3E6E50 (OsGetAsyncTimeMs) or replace the call @ 0x18F712.

    (I suck at C/C++)
    Code:
    int Hooked_OsGetAsyncTimeMs()
    {
    	if ( _ReturnAddress() == (void*)((DWORD)hMod + 0x18F717) )
    	{
    		int v1; 
    		int v2; 
    		int v3;
    
    		static DWORD t1;
    		static DWORD t2;
    
    		v1 = pOsGetAsyncTimeMs(); 
    
    		v2 = v1;		
    		v3 = v1 - t1; 
    
    		t1 = v2;		
    		t2 += speedMultiplier * v3;
    
    		return t2;
    	}
    
    	return pOsGetAsyncTimeMs();
    }

  8. #8
    sitnspinlock's Avatar Elite User CoreCoins Purchaser
    Reputation
    398
    Join Date
    Sep 2010
    Posts
    439
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you did okay

    I got yours to work writing my own loader, then manually calling your exported initialize function.

    (module addr + 0x10f0)

  9. #9
    mhollier117's Avatar Active Member
    Reputation
    38
    Join Date
    May 2011
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any chance u can upload and explain your version of it? it would be greatly appreciated

  10. #10
    Stige's Avatar Contributor
    Reputation
    115
    Join Date
    May 2009
    Posts
    1,325
    Thanks G/R
    7/13
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works fine on Win XP for me.

    Too bad it seems to speed up the mobs too (not server side, just visually), makes for some hard BOT trash farms
    Super Unicum

  11. #11
    Evieh's Avatar Contributor
    Reputation
    92
    Join Date
    Aug 2006
    Posts
    191
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It works fine for me on W7 64bit, make sure you have entered the world, I think it will crash if you inject at login/character screen.

    Warden guy has been busy lately and I don't know if this is undetected or not.

  12. #12
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The call at 0x18F712 is checked by warden now

Similar Threads

  1. [Tested] Invisable speedhacking!
    By cow level in forum World of Warcraft Bots and Programs
    Replies: 17
    Last Post: 02-09-2007, 12:56 AM
  2. LF speed hack, no windows speed ups, but a nice WoW speedhack:)
    By grond in forum World of Warcraft General
    Replies: 3
    Last Post: 01-31-2007, 01:32 PM
  3. CE speedhack and process guard tut (vid)
    By twitch101 in forum World of Warcraft Bots and Programs
    Replies: 2
    Last Post: 01-11-2007, 08:14 PM
  4. Speedhacking in instances
    By scoobyray in forum World of Warcraft General
    Replies: 2
    Last Post: 01-09-2007, 02:35 PM
  5. Banned for speedhack or mountain climber?
    By mantalcore in forum World of Warcraft General
    Replies: 7
    Last Post: 11-27-2006, 04:37 AM
All times are GMT -5. The time now is 01:52 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