OHack - An open-source multihack menu

User Tag List

Page 10 of 51 FirstFirst ... 67891011121314 ... LastLast
Results 136 to 150 of 763
  1. #136
    l0l1dk's Avatar Elite User

    Reputation
    499
    Join Date
    Sep 2010
    Posts
    342
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aftiagouras View Post
    Have you tried "teleporting" by sending startmove/stopmove packets with fake timestamps?
    Does it still work?
    Doesn't work anymore.

    OHack - An open-source multihack
  2. #137
    Discipline's Avatar Contributor ALADEEN MOTHERFUCKER! CoreCoins Purchaser
    Reputation
    128
    Join Date
    Dec 2007
    Posts
    253
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Enabling Tracking = crash.

    this is the error i got from WowError
    http://pastebin.com/XhQPbTYW
    Last edited by Discipline; 03-03-2012 at 06:15 PM. Reason: censored my char/acc info from the log

  3. #138
    westnile1214's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know what Wall Climb hack you use, but it doesn't work at all for me. Have you looked at WHack's way of doing it? It works really well...

  4. #139
    wilosoft's Avatar Member
    Reputation
    14
    Join Date
    Sep 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by D1sc1pl1n3 View Post
    Enabling Tracking = crash.

    this is the error i got from WowError
    ============================================================================== - Pastebin.com
    Ye my game is crashing now like this

  5. #140
    Syleno's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will try it, thanks man

  6. #141
    Richie33's Avatar Member Authenticator enabled
    Reputation
    3
    Join Date
    Mar 2011
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Woot I got it to work! The front page link was 4.3.2 but I downloaded the one om page 5 and it works! If i had rep I would rep you all day long.

  7. #142
    driftz's Avatar Member
    Reputation
    4
    Join Date
    Mar 2012
    Posts
    34
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i use LuaUnlocker exactly?

  8. #143
    l0l1dk's Avatar Elite User

    Reputation
    499
    Join Date
    Sep 2010
    Posts
    342
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by driftz View Post
    How do i use LuaUnlocker exactly?
    It is enabled when you load OHack, so if OHack is load then protected Lua functions will be usable.

  9. #144
    driftz's Avatar Member
    Reputation
    4
    Join Date
    Mar 2012
    Posts
    34
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    and where can i find a list of these functions?

  10. #145
    l0l1dk's Avatar Elite User

    Reputation
    499
    Join Date
    Sep 2010
    Posts
    342
    Thanks G/R
    1/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by driftz View Post
    and where can i find a list of these functions?
    WoWProgramming.com has a list of Lua functions, and the protected ones are labeled.

  11. #146
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)

  12. #147
    _Mike's Avatar Contributor
    Reputation
    310
    Join Date
    Apr 2008
    Posts
    531
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work. Just wanted to let you know about a few bugs I found while porting it to x64.

    FailInjector
    Your WNDPROC callback should have the return type 'LRESULT' instead of 'long' or it breaks when compiling as x64

    UI.cpp : UI::MainUIProc
    Code:
    ProcessList = CreateWindowEx(0, "combobox", "Process List",
    				WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST,
    				5, 5, 142, 20, Window, nullptr, nullptr, nullptr);
    Increase the height to fix the "combo box not showing any processes" issue. Around 200 or so seems like a decent size although I'm using a smaller than default font size so you might want to increase it even more. You also might want to add the WS_VSCROLL style.

    OHack
    Misc.cpp : line 72
    Code:
    delete Contents;
    Contents is allocated with new[]. Causes a crash when running with the debug CRT and a mem leak with release.

    Hacks.cpp : line 11
    Code:
    Write(WoWBase + CGGameUI__CanPerformAction + 0x20, LuaUnlock, 2);
    Does not unprotect (list is taken from 15211 so it might have changed)
    • CancelLogout
    • GuildInvite
    • InteractUnit
    • PortGraveyard
    • ReloadUI
    • SetCVar
    • SetCVarBitfield
    • SetCurrentTitle
    • TargetDirection*
    • TargetNearest*

    See http://www.ownedcore.com/forums/worl...ml#post2200401 ([Question] LUA protection disabler for 4.0.6a) for a generic fix. (I haven't tested if it still works for 15354 but I'm assuming it does)

    You also seem to like to store pointers in uints. Not really a problem for you since you're only targeting x86 but it makes porting it to 64bit a bit more complicated
    I'll post a diff here when I get a bit closer to getting it working. Am a bit short on time atm though

  13. #148
    Subset's Avatar Vanaka
    Reputation
    355
    Join Date
    Nov 2009
    Posts
    603
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work, I used this cause Blizzard wouldn't let me delete my DK cause I had mail >.<
    Apparently, you can't jump off the DK start zone anymore; you gotta do the quests.
    So this worked wonders and saved me a good couple minutes.
    +5 from me, keep up the good work.

  14. #149
    wilosoft's Avatar Member
    Reputation
    14
    Join Date
    Sep 2006
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gr8 hack indeed, but can we have a keybind function by any chance? or can the hack be placed Always on top somehow? thx

  15. #150
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,563
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how does this help you del toons?

Page 10 of 51 FirstFirst ... 67891011121314 ... LastLast

Similar Threads

  1. Wow hack for 2.3.3 [Open Source] Delphi
    By robotkid in forum WoW Memory Editing
    Replies: 15
    Last Post: 05-23-2018, 10:53 PM
  2. MMOGLIDER is going OPEN SOURCE!
    By Premium-mmo in forum Community Chat
    Replies: 9
    Last Post: 09-26-2013, 11:37 PM
  3. DampeBot (Open source)
    By swollen in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 03-23-2008, 10:03 AM
  4. Glider Status in your signature *OPEN SOURCE*
    By Marlo in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 09-16-2007, 05:12 PM
All times are GMT -5. The time now is 07:51 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search