S4lly's FREE war teleporter+speedhack+nofalldmg, flat style menu

User Tag List

Page 14 of 21 FirstFirst ... 101112131415161718 ... LastLast
Results 196 to 210 of 311
  1. #196
    jester_im's Avatar Member
    Reputation
    2
    Join Date
    Oct 2008
    Posts
    157
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tested it. Everything i tried, including speedhacking, while they work, they work only for a few seconds. A crash is ineviteble a few seconds after activating them.

    S4lly's FREE war teleporter+speedhack+nofalldmg, flat style
  2. #197
    xanupox's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The speed hack works, however the problem is that when the hack loads, "No Fall Damage is ENABLED" by default. I think if you change that then the hack will be usable. the current work around, is to load the hack first, disable no fall damage, then load WAR.

  3. #198
    gundir's Avatar Member
    Reputation
    12
    Join Date
    May 2009
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Filebeam - Free Fast File Hosting
    I have freely change the window size, I code on Notebook end it's more easy to me

    Just added Los and Wallhack to the previous hack added by rockman319
    - SpeedHack
    - Zoom Hack

    - LoS Hack
    - Wallhack (not full functionnal at all, don't turn it Off after use it )

    I'll will delet it if rockman319 or HansW want and thanks to all to make Hack easy

  4. #199
    jester_im's Avatar Member
    Reputation
    2
    Join Date
    Oct 2008
    Posts
    157
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will be trying it as soon as i come back from some stuff i got to take care off. Rep pending.

    It certainly works. Well deserved rep indeed. +
    Last edited by jester_im; 06-22-2009 at 01:04 PM.

  5. #200
    csxtitan's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gundir View Post
    Filebeam - Free Fast File Hosting
    I have freely change the window size, I code on Notebook end it's more easy to me

    Just added Los and Wallhack to the previous hack added by rockman319
    - SpeedHack
    - Zoom Hack

    - LoS Hack
    - Wallhack (not full functionnal at all, don't turn it Off after use it )

    I'll will delet it if rockman319 or HansW want and thanks to all to make Hack easy
    LOS Works, all i care about!

  6. #201
    rockman319's Avatar Member
    Reputation
    20
    Join Date
    Mar 2009
    Posts
    354
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How did you fix it ? pm or post please.

  7. #202
    gundir's Avatar Member
    Reputation
    12
    Join Date
    May 2009
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    With the Help of HansW for Address:

    Code:
    //private int wallhack_1 = 0x00506F89;
            private int wallhack_1 = 0x4feedb;
            //private int loshack_1 = 0x0053bccf;
            private int loshack_1 = 0x5350bc;
    for LoS Hack:
    Code:
            private void b_loshack_Click(object sender, EventArgs e)
            {
                if (loshack_on == false)
                {
                    //turn it on
                    byte[] NOPS1 = { 0x90,0xE9 };
                    this.Player.PatchMemory(loshack_1+0x09, NOPS1);
                    this.b_loshack.BackColor = Color.FromArgb(0, 0xff, 0);
                    loshack_on = true;
                }
                else
                {
                    //turn it off
                    byte[] YES1 = { 0x0F, 0x84 };
                    this.Player.PatchMemory(loshack_1+0x09, YES1);
                    this.b_loshack.BackColor = Color.FromName("Window");
                    loshack_on = false;
                }
            }
    For Wallhack
    Code:
            private void b_wallhack_Click(object sender, EventArgs e)
            {
                //0x00506F89
                if (wallhack_on == false)
                {
                    //turn it on
                    byte[] NOPS = { 0xEB, 0x7A };
                    this.Player.PatchMemory(wallhack_1+0x64C, NOPS);
                    byte[] NOPSZ = { 0x90, 0xE9 };
                    this.Player.PatchMemory(wallhack_1 + 0x758, NOPSZ);
                    this.b_wallhack.BackColor = Color.FromArgb(0, 0xff, 0);
                    wallhack_on = true;
                }
                else
                {
                    //turn it off
                    byte[] YES1 = { 0x74, 0x34 };
                    this.Player.PatchMemory(wallhack_1+0x64c, YES1);
                    byte[] YESZ = { 0x0F, 0x84 };
                    this.Player.PatchMemory(wallhack_1+0x758, YESZ);
                    this.b_wallhack.BackColor = Color.FromName("Window");
                    wallhack_on = false;
                }
            }
    Actually the Wallhack work, but:
    - Player make some tiny jump instead of the real one
    - If you turn it off, when you hit a structure you zone to your bind


    Based on your v0.5f Source Code
    For SpeedHack, just change pointer listed in the New Pointer thread
    same way for Zoom.

    I also have disable this:
    Code:
                activate nofalldmg
                 byte[] NFD = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
                 this.Player.PatchMemory(nofalldmg_1, NFD);
                 nofalldmg_on = true;
    if not this hack is turned On at the Warper launch and the game crash


    Just need to fix:
    - GroundHack
    - Teleport
    - Clear Target
    - Lazarus
    - Fly
    - No Fall Damage
    Last edited by gundir; 06-22-2009 at 01:59 PM. Reason: miss address :x

  8. #203
    rockman319's Avatar Member
    Reputation
    20
    Join Date
    Mar 2009
    Posts
    354
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks!

    +Rep

    Edit: Edited first post with update v0.5f2
    Thanks to Gundir for the fix of wallhack and loshack
    Last edited by rockman319; 06-23-2009 at 09:29 PM.

  9. #204
    HansW's Avatar Active Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    310
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    to fix the problem with disableing the collision hack, just check the original bytes at the addresses and use them to patch back, instead of the ones i posted ( i was too lazy to recheck ).

  10. #205
    gundir's Avatar Member
    Reputation
    12
    Join Date
    May 2009
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    mmm ok values are
    Code:
    //turn it off
     byte[] YES1 = { 0x74, 0x29 };
    instead of 0x34 and works.
    Last edited by gundir; 06-22-2009 at 03:58 PM.

  11. #206
    rockman319's Avatar Member
    Reputation
    20
    Join Date
    Mar 2009
    Posts
    354
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  12. #207
    lamers's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rockman319 View Post
    help this file not run :confused:

  13. #208
    gundir's Avatar Member
    Reputation
    12
    Join Date
    May 2009
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lamers View Post
    help this file not run :confused:
    Just tested and works.

  14. #209
    rockman319's Avatar Member
    Reputation
    20
    Join Date
    Mar 2009
    Posts
    354
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lamers, please post your system spec including operating system (windows xp/vista/7)? 32-bit or 64? are you logged in as admin? what error message do you get? etc.

    "help this file not run" is very hard to help.

  15. #210
    Fookmi's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    speed doesn't work on Rockman's version, checking Gundir's



    edit:

    Gundir's is working fine, thanks for changing window size btw.
    Last edited by Fookmi; 06-22-2009 at 05:55 PM.

Page 14 of 21 FirstFirst ... 101112131415161718 ... LastLast

Similar Threads

  1. [WAR] Tele/SpeedHack ~ Free
    By luciferc in forum MMO Exploits|Hacks
    Replies: 23
    Last Post: 04-03-2009, 09:08 PM
  2. MMOViper Free WAR Hunting Bot / Radar
    By mmoviper in forum MMO Exploits|Hacks
    Replies: 45
    Last Post: 01-12-2009, 05:18 AM
  3. [Hypothetical] Free WAR beta key?
    By Frost2 in forum Gaming Chat
    Replies: 4
    Last Post: 08-25-2008, 08:17 PM
  4. Experimental/Free Hearthstone Teleport
    By ClearFlare in forum World of Warcraft Exploits
    Replies: 20
    Last Post: 05-16-2008, 06:39 AM
All times are GMT -5. The time now is 12:03 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