NoFallDamage with CE made easy menu

Shout-Out

User Tag List

Results 1 to 10 of 10
  1. #1
    unknown405's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    NoFallDamage with CE made easy

    First of all, since this is my first post I'll go ahead and give a little background information. I'm a very well known and experienced coder for the old game Everquest, I actually just recently made a cheat not thought possible (summoning items.) As well as owning my own website (CorruptionPlugins.com) to sell these powerful EQ cheats. Well recently I've decided to move on with the times, and even though I still code for EQ frequently, I've decided to move onto WoW codes.

    I've already gotten a WardenBypass (seems good at this point) and a small trainer. I'm still building a library that I call CorruptionWoW.DLL which contains all of the necessary offsets and structures to edit just about anything in the game. I'm still finishing up my packet sending, but onto the small tutorial. I've gotten a few people asking how to make a NoFall Damage with CE so I figured I would post it. I'm not sure how much this is requested, but here it is anyway.

    1.) Obviously, you will need CheatEngine. Go download it if you don't already have it.
    2.) Load up WoW and CheatEngine (make sure that you have Settings->Extra->Both stealth modes checked at the bottom.)
    3.) Click "Add address manually" and add these 3 addresses.
    -Address: 7BA4C0 || Description: NoFallOne || Type: 2 Bytes
    -Address: 7BA4C5 || Description: NoFallTwo || Type: Byte
    -Address: 7BA4C6 || Description: NoFallThree || Type: 2 Bytes
    4.) Right click all 3 of these addresses and then click "Show as hexadecimal value."
    5.) Change NoFallOne to 0x06EB
    6.) Change NoFallTwo to 0x90
    7.) Change NoFallThree to 0x1E74

    Gratz, your invulnerable to fall damage! Throw me some rep please so I'm not classified as a leecher.

    NoFallDamage with CE made easy
  2. #2
    unknown405's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C++ Coded right now in this post, untested. Please let me know if it doesn't work and I'll fix it up. Like I said, I just coded this in the post, so I may have made an error or two in formatting.

    Code:
    ***EDIT***
    Code is not good enough for the elite hackers of MMOwned.
    Last edited by unknown405; 08-25-2008 at 01:21 PM.

  3. #3
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't mean to sound harsh,

    But that code is ****ing terrible. Secondly, Don't ask for rep. Its not the best way to _Earn_ a reputation around here.

    What's wrong with:

    Code:
    ///NoFall Offsets
    #define NoFall 0x007BA4C0
    
    //Setup function
    VOID MemoryChange(DWORD, DWORD, BYTE*);
    
    //Uses the MemoryChange function to activate the NoFallDamage hack
    VOID DoNoFall()
    {
        MemoryChange(NoFall,2,(BYTE*)"\xEB\x06");
    }
    
    //Function used to edit games memory
    VOID MemoryChange(DWORD address, DWORD length, BYTE* cData)
    { 
        DWORD ap = 0;
        FlushInstructionCache(GetCurrentProcess(),(LPCVOID)address, length); 
        VirtualProtectEx(GetCurrentProcess(), (LPVOID)address, length,PAGE_EXECUTE_READWRITE, &ap);
        WriteProcessMemory(GetCurrentProcess(), (LPVOID)address,cData,length, NULL);
        VirtualProtectEx(GetCurrentProcess(), (LPVOID)address, length, ap, &ap); 
    }
    Last edited by kynox; 08-25-2008 at 03:34 PM.

  4. #4
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This was already posted multiple times just in a different format. Please give credit where credit is due.

    [WoW] No Falling Damage - Game Deception - Forums

    Furthermore, your change will most likely cause disconnects due to the fact you're changing the value without dong a flag check (as is present in the C++ detours).

    I wouldn't talk yourself up so much if I were you caus your code sucks ass.

    PS. Lrn2use auto-assemble. And don't ask for rep.

    You fail, that is all..
    Last edited by Cypher; 08-25-2008 at 12:26 AM.

  5. #5
    unknown405's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol alright guys first of all, CALM DOWN!! I scribbled that code up as I made the post, like I said it's not great but it works. I didn't have any intentions of "talking myself up" - I was simply giving some background information on myself as it is my first post. You won't have to worry about it anymore though, MMOwned does clearly not deserve my help if I am going to have to listen to this abuse for simply trying to help out. You can use CorruptionWoW when it's released, and continue to hate if you feel it's necessary. Obviously, God blessed the world and this website with your talents and it's just not big enough for the both of us. So I'll let you continue to act like your God's gift to the world and continue to insult every contributer that stops by and I'll get out of your hair. I stated at the very top of that post, before I even wrote the code, that I am writing this in the post off the top of my head and it may have some errors or issues and to just let me know if it does and I'll fix it. It's not like I spent days, weeks, months or years on this little snippet and it's my best work - but you seem to think it is.

    /end wall of text
    /exit
    Last edited by unknown405; 08-25-2008 at 01:37 PM.

  6. #6
    object's Avatar Member
    Reputation
    5
    Join Date
    Aug 2008
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by unknown405 View Post
    You won't have to worry about it anymore though, MMOwned does clearly not deserve my help if I am going to have to listen to this abuse for simply trying to help out. You can use CorruptionWoW when it's released, and continue to hate if you feel it's necessary. Obviously, God blessed the world and this website with your talents and it's just not big enough for the both of us. So I'll let you continue to act like your God's gift to the world and continue to insult every contributer that stops by and I'll get out of your hair.
    Still not helping your rep...

    My twocents - don't go into a new place saying "Hey everybody, look at me! Give me some candy!" Show a little respect.

    It's very clear that you posted for the sole purpose of getting rep, not to contribute. Want rep? Post something new/useful or answer an unanswered question. The best part about it... is that you don't have to ask for rep.

    EDIT:

    WTF... you charge people a membership to your forums? The pieces are coming together. You want to be able to use the search feature here, so that you can take this FREE information and sell it on your forum. What an *******.

    Just went to your website...
    Last edited by object; 08-25-2008 at 08:32 PM.

  7. #7
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by unknown405 View Post
    Lol alright guys first of all, CALM DOWN!! I scribbled that code up as I made the post, like I said it's not great but it works. I didn't have any intentions of "talking myself up" - I was simply giving some background information on myself as it is my first post. You won't have to worry about it anymore though, MMOwned does clearly not deserve my help if I am going to have to listen to this abuse for simply trying to help out. You can use CorruptionWoW when it's released, and continue to hate if you feel it's necessary. Obviously, God blessed the world and this website with your talents and it's just not big enough for the both of us. So I'll let you continue to act like your God's gift to the world and continue to insult every contributer that stops by and I'll get out of your hair. I stated at the very top of that post, before I even wrote the code, that I am writing this in the post off the top of my head and it may have some errors or issues and to just let me know if it does and I'll fix it. It's not like I spent days, weeks, months or years on this little snippet and it's my best work - but you seem to think it is.

    /end wall of text
    /exit
    Uhhh. Why the hell would we want your "help" when all you've done so far is steal code from other people. Try ACTUALLY CONTRIBUTING, and you might get some respect.

    The fact you wrote it off the top of your head makes no difference, its still obvious from the code that you're a terrible programmer.

    We don't insult every contributor that comes by, here are the flaws in that statement:
    1. You're not a contributor, you're a douche.
    2. You asked for rep
    3. What you 'contributed' you just stole from elsewhere and changed a bit

    Fact of the matter is we don't need you here. Go back to your own forums kthx.

  8. #8
    unknown405's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol I stole code? That's just beautiful man, because I come up with a ridiculously simple and easy code that someones obviously come up with before that makes me a thief? I didn't even use the same method as you clearly pointed out, if I were to steal code that was written in assembly then I would have used that same method as you, again, clearly pointed out that it was a more effective method. As for selling cheats - MMOBugs.com, NotAddicted.com, MMOPlugins.com, EQSlayer.com, DeathToPixels.com, CorruptionPlugins.com - Everquest cheats aren't free unless you want the extremely basic ones.

    I came up with a cheat in EQ recently that allowed you to summon any item in the entire game (even ones that couldn't normally be bought, as long as it had an ItemID, which every item does.) I am the only person in the history of EQ to make this cheat, so it couldn't have been stolen - I am not a copy/paste coder, thanks. I have the highest quality and most powerful cheats of any Everquest coding website, which is why I charge what I do - even though it is less than some of the lower quality websites.

    The main reason that I have prices set up at all is because I sell a cheat called "GhostKill/NoDelay" which allows you to attack your target from anywhere in the entire zone (hence Ghostkill) with absolutely zero attack delay and set your hits per second (hence NoDelay.) This can be used to solo raid mobs, if all I provided was simple memory offsets I wouldn't be charging a price.

    PS: On a side note to Object, what could I possibly do with the information on this website? I've found nothing useful here that can't be found anywhere else, much less by me. Do you seriously think I would get more than 1 or 2 hopeful idiots subscribe to my website if the only WoW information I had was what is found on this website? I have an entire library for WoW with structures and offsets that you don't have - so don't give me that crap that you think I'm trying to sell the small amount of information you provide here.
    Last edited by unknown405; 08-25-2008 at 11:21 PM.

  9. #9
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by unknown405 View Post
    Lol I stole code? That's just beautiful man, because I come up with a ridiculously simple and easy code that someones obviously come up with before that makes me a thief? I didn't even use the same method as you clearly pointed out, if I were to steal code that was written in assembly then I would have used that same method as you, again, clearly pointed out that it was a more effective method. As for selling cheats - MMOBugs.com, NotAddicted.com, MMOPlugins.com, EQSlayer.com, DeathToPixels.com, CorruptionPlugins.com - Everquest cheats aren't free unless you want the extremely basic ones.

    I came up with a cheat in EQ recently that allowed you to summon any item in the entire game (even ones that couldn't normally be bought, as long as it had an ItemID, which every item does.) I am the only person in the history of EQ to make this cheat, so it couldn't have been stolen - I am not a copy/paste coder, thanks. I have the highest quality and most powerful cheats of any Everquest coding website, which is why I charge what I do - even though it is less than some of the lower quality websites.

    The main reason that I have prices set up at all is because I sell a cheat called "GhostKill/NoDelay" which allows you to attack your target from anywhere in the entire zone (hence Ghostkill) with absolutely zero attack delay and set your hits per second (hence NoDelay.) This can be used to solo raid mobs, if all I provided was simple memory offsets I wouldn't be charging a price.

    PS: On a side note to Object, what could I possibly do with the information on this website? I've found nothing useful here that can't be found anywhere else, much less by me. Do you seriously think I would get more than 1 or 2 hopeful idiots subscribe to my website if the only WoW information I had was what is found on this website? I have an entire library for WoW with structures and offsets that you don't have - so don't give me that crap that you think I'm trying to sell the small amount of information you provide here.

    Noone cares about you talking yourself up. This is the WOW SECTION, not the EQ section. Also I highly doubt you're the only person in history to do a certain hack, you'd be surprised what goes on in the underground of games, there are lots of private WoW hacks that have features that have never seen the light of day either.

    Errr, how do you know you have more information than I have? Given you obviously fail at programming and reversing WoW, and I already have a LOT of information, I don't think so.

    Also, if it's ridiculously easy why don't you tell us how the function you're modifying works and what class it's modifying. Furthermore, how about another example, something really easy, like accessing PLAYER_FIELD_KILLS. I'll happily post what I'm doing after you give us an example of your 'entire library'.

    PS. Just face it, noone wants your here, so either prove your worth or go away.

  10. #10
    dvann's Avatar Member
    Reputation
    2
    Join Date
    Apr 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's called a mage get one.

Similar Threads

  1. Que-ing for low level dungeons (Made easy with HH).
    By Zongfoo in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 10-20-2011, 03:16 AM
  2. The Emerald Forest (Made Easy)
    By Ensui in forum World of Warcraft Model Editing
    Replies: 50
    Last Post: 07-03-2010, 05:05 AM
  3. With Open Arms (Kologarn) made easy
    By Omaster in forum World of Warcraft Exploits
    Replies: 10
    Last Post: 07-23-2009, 11:03 AM
  4. Al'ar Made Easy With Troll Priest
    By impulse102 in forum World of Warcraft Exploits
    Replies: 13
    Last Post: 08-25-2007, 03:55 AM
All times are GMT -5. The time now is 12:44 PM. 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