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

Shout-Out

User Tag List

Page 10 of 21 FirstFirst ... 67891011121314 ... LastLast
Results 136 to 150 of 311
  1. #136
    xdarkaix's Avatar Member
    Reputation
    4
    Join Date
    May 2009
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by s4lly View Post
    turn it off when u change zone
    Haha yea ive learned to do that now thanks :P

    S4lly's FREE war teleporter+speedhack+nofalldmg, flat style
  2. #137
    Valex's Avatar Member
    Reputation
    6
    Join Date
    Apr 2007
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works good, I like how Pickled's original program has gone so far. The wallhack is extremely helpful. NFD/GroundHack does not work for me, though.

  3. #138
    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)
    NFD works but does not if you fall too high. Only S4lly/HansW can fix it.
    GroundHack, I'm not sure how it works actually. S4lly just gave me the info on how to do it.

    Groundhack on: 0x50fb14 909090
    Groundhack off: 0x50fb14 8b4e2c

    NFD on: 0x50fc30 9090909090909090
    NFD off: 0x50fc30 F30F119E90000000
    Last edited by rockman319; 05-21-2009 at 12:21 PM.

  4. #139
    s4lly's Avatar Member
    Reputation
    31
    Join Date
    Nov 2008
    Posts
    164
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i posted 2 versions of the NFD

  5. #140
    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)
    Originally Posted by s4lly View Post
    i posted 2 versions of the NFD
    Yes you did.
    Well my work place's latest ver is 0.5d not 0.5e (0.5e is at home)... so I don't want to modify old version (though not much changed).

    Please use war extender (hansw dll injected) to try S4lly's nfd 2nd version:

    nfd v2 off:
    0x50fc42 0x9090909090

    nfd v2 on:
    0x50fc42 0xE8D60FFAFF

    HansW, what would be the command...
    WriteMemEx(0x50fc42, 3, 0x9090909090)
    ?

    If so you can even put this in DrifterBars as a button.

  6. #141
    PharmerPhale's Avatar Member
    Reputation
    54
    Join Date
    Mar 2009
    Posts
    415
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If so you can even put this in DrifterBars as a button.
    I don't see why not.
    From admin: Buy advertising if you wish to advertise

  7. #142
    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)
    Right. PharmerPhale... this may be a trivial lua question but how do you implement "toggle button"? I assume using global variable, but I haven't learned LUA so I don't know how to do if then and etc. Would be nice to have one button to do speed:
    button_one press -> speed normal -> press -> speed flee -> press speed super -> press -> speed normal etc

    button_two press -> wallhack on -> press -> wallhack off -> press -> wallhack on
    etc

  8. #143
    PharmerPhale's Avatar Member
    Reputation
    54
    Join Date
    Mar 2009
    Posts
    415
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    UNTESTED CODE Example using button 4

    Insert under section, "Local Variables" at top of DrifterBars.Lua
    Code:
    WallHackToggle = false
    Change the "none" to "wh" or whatever
    Code:
    ButtonSetText("DrifterBarsButtonFour", L"none")
    replace ButtonFour() function of DrifterBars.Lua
    Code:
    function DrifterBars.ButtonFour()
    	if WallHackToggle == true then
    		EA_ChatWindow.Print(L"WallHack: Disabled")
    		WriteMemEx(0x50fc42, 3, 0x9090909090)
    		WallHackToggle = false
    	else
    		EA_ChatWindow.Print(L"WallHack: Enabled")
    		WriteMemEx(0x50fc42, 3, 0xE8D60FFAFF)
    		WallHackToggle = true
    	end
    end
    Edit: Ooops. those WriteMemEx lines were for no fall damage, but you get the idea - yah?
    Last edited by PharmerPhale; 05-21-2009 at 03:00 PM.
    From admin: Buy advertising if you wish to advertise

  9. #144
    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)
    Yah. Thank joo.

  10. #145
    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)
    WriteMemEx(0x50fc42, 3, 0x9090909090) will not work. DWORD ( Type 3 ) has a size of 4 Bytes. you need to split it to 2 write mem calls and increment the address with each call.

    like this:

    WriteMemEx(0x50fc42, 3, 0x90909090) -- DWORD
    WriteMemEx(0x50fc46, 1, 0x90) -- BYTE
    Last edited by HansW; 05-21-2009 at 04:59 PM.

  11. #146
    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)
    Ok would these be correct?
    WriteMemEx(0x506F89, 2, 0xeb7a) --Wallhack on
    WriteMemEx(0x53bccf, 1, 0xeb) --LOSHack on
    WriteMemEx(0x50fb14, 3, 0x909090) --Groundhack on

  12. #147
    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)
    Think so. The problem is, that the functions did not make it into the 0.97 release. Sorry for that. I will release 0.98 shortly. That should fix the "is not working" problem.

  13. #148
    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)
    Oh, so in the meantime, would WriteMem() work? (same parameter etc)

  14. #149
    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)
    Originally Posted by rockman319 View Post
    Oh, so in the meantime, would WriteMem() work? (same parameter etc)
    It will now. download 0.97 again. I removed WriteMemEx and now there is only WriteMem.

  15. #150
    PharmerPhale's Avatar Member
    Reputation
    54
    Join Date
    Mar 2009
    Posts
    415
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I downloaded the new DLL and thought I'd try running some of them through the Lua Shell. However, I couldn't get any of these hacks to work with WriteMem.
    From admin: Buy advertising if you wish to advertise

Page 10 of 21 FirstFirst ... 67891011121314 ... 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 10:24 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