Page 6 of 6 FirstFirst ... 456
Results 76 to 88 of 88
  1. #76
    Womanizer`'s Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    1,438
    Reputation
    103
    Thanks
    1,593
    My Mood
    Angelic
    still doesn't work. what the hell <.<

    Code:
            If GetAsyncKeyState(Keys.Alt) = -32767 Then
    
                MW3.Process_Handle("iw5sp")
                Dim AddThis As Integer = MW3.ReadInteger(&H1D2FF68)
                Dim Addr As Integer = AddThis + &HC
                MW3.WriteInteger(Addr, Form4.TextBox3.Text)

  2. #77
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,668
    My Mood
    Breezy
    You need to be writing a float, not an integer!
    Last edited by master131; 05-25-2012 at 12:38 AM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  3. The Following User Says Thank You to master131 For This Useful Post:

    barata55 (05-25-2012)

  4. #78
    Womanizer`'s Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    1,438
    Reputation
    103
    Thanks
    1,593
    My Mood
    Angelic
    @Jorndel 's base doesn't have that :<[COLOR="Silver"]

    ---------- Post added at 09:30 AM ---------- Previous post was at 09:30 AM ----------

    [/COLOR @Jorndel 's base doesn't have that :<

  5. #79
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by ineedwarrockhack View Post
    @Jorndel 's base doesn't have that :<[COLOR="Silver"]

    ---------- Post added at 09:30 AM ---------- Previous post was at 09:30 AM ----------

    [/COLOR @Jorndel 's base doesn't have that :<
    I know, because I didn't see the need for that in a started "Base".
    Why don't you try to make one?

    It's mainly made to help you learn to code, not to leech and collect.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  6. #80
    Womanizer`'s Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    1,438
    Reputation
    103
    Thanks
    1,593
    My Mood
    Angelic
    Quote Originally Posted by Jorndel View Post
    I know, because I didn't see the need for that in a started "Base".
    Why don't you try to make one?

    It's mainly made to help you learn to code, not to leech and collect.
    I've never been into doing stuff like this. I guess I'll just drop the thing.

  7. #81
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic

    Quote Originally Posted by ineedwarrockhack View Post
    I've never been into doing stuff like this. I guess I'll just drop the thing.
    Are you giving up?

    Ok, if you want to give one more shot, add this to Jorndel Class and it might work, but I haven't tested it, so let me know if its right ;D

    Code:
    public void WriteFloat(int Address, float value)
            {
                byte[] Buffer = BitConverter.GetBytes(value);
                IntPtr Zero = IntPtr.Zero;
                WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
            }
    Last edited by MarkHC; 05-25-2012 at 10:21 AM.


    CoD Minion from 09/19/2012 to 01/10/2013

  8. #82
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by General Shepherd View Post

    Are you giving up?

    Ok, if you want to give one more shot, add this to Jorndel Class and it might work, but I haven't tested it, so let me know if its right ;D

    Code:
    public void WriteFloat(int Address, float value)
            {
                byte[] Buffer = BitConverter.GetBytes(value);
                IntPtr Zero = IntPtr.Zero;
                WriteProcessMemory(pHandel, (IntPtr)Address, Buffer, (UInt32)Buffer.Length, out Zero);
            }
    He code VB.Net. (If I remember right tho.)

    But I didn't want to give him the answer, else... Why learn to code when you just google. And Copy & Paste what you find and just re-write it a little.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  9. #83
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Quote Originally Posted by Jorndel View Post
    He code VB.Net. (If I remember right tho.)

    But I didn't want to give him the answer, else... Why learn to code when you just google. And Copy & Paste what you find and just re-write it a little.
    If it's a class i guess don't matter in which language its coded... (I GUESS)

    I wouldn't give the answer as well, but between giving up, or see the code, i think the second option its better... Anyway, @ineedwarrockhack, Jorndel is right, you will not be able to do some more advanced hacks, if you're not able to code by yourself


    CoD Minion from 09/19/2012 to 01/10/2013

  10. #84
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,112
    My Mood
    Angelic
    Quote Originally Posted by General Shepherd View Post

    If it's a class i guess don't matter in which language its coded... (I GUESS)

    I wouldn't give the answer as well, but between giving up, or see the code, i think the second option its better... Anyway, @ineedwarrockhack, Jorndel is right, you will not be able to do some more advanced hacks, if you're not able to code by yourself
    Well, if it was to be a debugged Class no.
    But this is a code class
    Class = DLL file

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  11. #85
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Quote Originally Posted by Jorndel View Post
    Well, if it was to be a debugged Class no.
    But this is a code class
    Class = DLL file
    Hmm, I've never thought about that... and never used too good to know


    CoD Minion from 09/19/2012 to 01/10/2013

  12. #86
    Womanizer`'s Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    1,438
    Reputation
    103
    Thanks
    1,593
    My Mood
    Angelic
    Quote Originally Posted by Jorndel View Post
    He code VB.Net. (If I remember right tho.)

    But I didn't want to give him the answer, else... Why learn to code when you just google. And Copy & Paste what you find and just re-write it a little.
    The thing is I'm lazy,busy, and almost out of free time. I can't afford looking into this stuff.

  13. #87
    barata55's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    120
    Reputation
    12
    Thanks
    3,012
    My Mood
    Lonely
    So are we but we still find time, you need to learn, giving excuses about time, lazy wont help you to do so...

    Thanks Barata...

    ---------- Post added at 01:04 PM ---------- Previous post was at 12:32 PM ----------

    Mw3 just updated but relax guys, seems that only no recoil and no spread that are not working, the rest its ok.

    Thanks Barata...

    ---------- Post added at 01:42 PM ---------- Previous post was at 01:04 PM ----------

    I updated very quickly the no recoil:

    Nop 5 bytes here 0x429306;

    Thanks Barata...

  14. The Following 3 Users Say Thank You to barata55 For This Useful Post:

    Jorndel (05-25-2012),killstreak (06-12-2012),Womanizer` (05-25-2012)

  15. #88
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,668
    My Mood
    Breezy
    /updated

    Fixed No Recoil, No Spread, Instand ADS and Instant Reload as well as the Armour Pattern.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  16. The Following User Says Thank You to master131 For This Useful Post:

    barata55 (05-26-2012)

Page 6 of 6 FirstFirst ... 456

Similar Threads

  1. [Request] Always Host for spec-ops
    By jorricks in forum Call of Duty Modern Warfare 3 Discussions
    Replies: 3
    Last Post: 12-17-2011, 06:29 AM
  2. [Request] Someone know some address for the no recoil?
    By darkyng in forum All Points Bulletin Reloaded Hacks
    Replies: 11
    Last Post: 12-06-2011, 12:42 PM
  3. need a profile all unlock max lv for spec ops
    By adu.12 in forum Call of Duty Modern Warfare 3 Help
    Replies: 0
    Last Post: 11-23-2011, 03:47 PM
  4. [Source Code] Some addresses for supercaveopk etc. and aimbot!
    By jajarem64 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 51
    Last Post: 02-07-2011, 06:09 PM
  5. Updated addresses for some hacks.
    By sp0tie in forum Gunz Hacks
    Replies: 3
    Last Post: 02-22-2006, 08:18 AM