Results 1 to 11 of 11
  1. #1
    strangerdanger's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    454
    My Mood
    Aggressive

    How to write to a memory address with Visual studio C#?

    Hey guys, i'm new here and to coding but ive been working on a little trainer and ive been messing around with cheat engine and found a way to use assault killstreaks with support tier so i never lose my killstreaks after i die by changing the values in the memory address, so can i change a memory value to whatever i desire with visual studio C#? example i want to change 01 02 03 to 04 05 06, not really sure to explain it but if u need me to elaborate on something abit more plz let me know, cheers.

  2. #2
    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 strangerdanger View Post
    Hey guys, i'm new here and to coding but ive been working on a little trainer and ive been messing around with cheat engine and found a way to use assault killstreaks with support tier so i never lose my killstreaks after i die by changing the values in the memory address, so can i change a memory value to whatever i desire with visual studio C#? example i want to change 01 02 03 to 04 05 06, not really sure to explain it but if u need me to elaborate on something abit more plz let me know, cheers.
    Good that I have what you need
    https://www.mpgh.net/forum/586-call-d...e-video.html#1

     
    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

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

    strangerdanger (05-09-2012)

  4. #3
    strangerdanger's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    454
    My Mood
    Aggressive
    oh ive already watched that vid, its wat made me want to install visual C# and start learning to code, thanks btw , so do i do MW3.WriteInt(0x*insert address here* and then in the text box i put the value i want? soz im still learning lol

  5. #4
    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 strangerdanger View Post
    oh ive already watched that vid, its wat made me want to install visual C# and start learning to code, thanks btw , so do i do MW3.WriteInt(0x*insert address here* and then in the text box i put the value i want? soz im still learning lol
    Yes, and you have to convert the text in the box to an integer.
    Int.Parse(textBox1.Text) (I might spelled the Parse wrong but..)
    Or use: Convert.ToInt32(textBox1.Text)

    So you get:
    Code:
    MW3.WriteInt(0x*Offset/Address* , *One of the Convert Options*);

     
    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. #5
    strangerdanger's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    454
    My Mood
    Aggressive
    Quote Originally Posted by Jorndel View Post
    Yes, and you have to convert the text in the box to an integer.
    Int.Parse(textBox1.Text) (I might spelled the Parse wrong but..)
    Or use: Convert.ToInt32(textBox1.Text)

    So you get:
    Code:
    MW3.WriteInt(0x*Offset/Address* , *One of the Convert Options*);
    can you please write the code for me ill understand better here is wat i want to change https://i.imgur.com/queh1.png sorry for the trouble

    ---------- Post added at 07:34 PM ---------- Previous post was at 07:22 PM ----------

    ok i figured it out, i have to change the values in decimal tho, still gotta learn thanks heaps jorndel

  7. #6
    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 strangerdanger View Post
    can you please write the code for me ill understand better here is wat i want to change https://i.imgur.com/queh1.png sorry for the trouble

    ---------- Post added at 07:34 PM ---------- Previous post was at 07:22 PM ----------

    ok i figured it out, i have to change the values in decimal tho, still gotta learn thanks heaps jorndel
    Then you can just use the Write Bytes function
    And do a

    new Byte() = { &H03, &H00, &H08, &H00, &H12}

    ---------- Post added at 05:35 AM ---------- Previous post was at 05:35 AM ----------

    Quote Originally Posted by strangerdanger View Post
    can you please write the code for me ill understand better here is wat i want to change https://i.imgur.com/queh1.png sorry for the trouble

    ---------- Post added at 07:34 PM ---------- Previous post was at 07:22 PM ----------

    ok i figured it out, i have to change the values in decimal tho, still gotta learn thanks heaps jorndel
    Then you can just use the Write Bytes function
    And do a

    new Byte() = { &H03, &H00, &H08, &H00, &H12}

     
    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

  8. #7
    strangerdanger's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    454
    My Mood
    Aggressive
    Quote Originally Posted by Jorndel View Post
    Then you can just use the Write Bytes function
    And do a

    new Byte() = { &H03, &H00, &H08, &H00, &H12}

    ---------- Post added at 05:35 AM ---------- Previous post was at 05:35 AM ----------



    Then you can just use the Write Bytes function
    And do a

    new Byte() = { &H03, &H00, &H08, &H00, &H12}
    is there a tutorial anywhere that goes through all this stuff? like the write bytes function, i have no idea how to do that lawl

  9. #8
    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 strangerdanger View Post
    is there a tutorial anywhere that goes through all this stuff? like the write bytes function, i have no idea how to do that lawl
    Nope
    Suppose that would be my next part

    Well, going to go home now so

     
    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

  10. #9
    strangerdanger's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    454
    My Mood
    Aggressive
    here is what ive done so far (hack attached to post) im pretty proud of it since i never coded anything besides rainmeter widgets LOL

    https://virusscan.jotti.org/en/scanre...4b5f436c359b51

    https://www.virustotal.com/file/b86a...is/1336578340/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Nachos; 05-09-2012 at 10:48 AM. Reason: Added scans

  11. The Following User Says Thank You to strangerdanger For This Useful Post:

    mostafa2033 (06-12-2012)

  12. #10
    Nachos's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Between Equator and The North Pole
    Posts
    2,984
    Reputation
    176
    Thanks
    919
    My Mood
    Blah
    Quote Originally Posted by strangerdanger View Post
    here is what ive done so far (hack attached to post) im pretty proud of it since i never coded anything besides rainmeter widgets LOL

    MW3 hack.rar - Jotti's malware scan

    https://www.virustotal.com/file/b86a...is/1336578340/
    /Approved
    -Added virusscans

    Remember you always have to add virusscans. I added then for you this time.


    The lines in my Steam are i's

  13. #11
    strangerdanger's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    454
    My Mood
    Aggressive
    *Edit* the hack attached to this was a crappy version.
    Last edited by strangerdanger; 05-10-2012 at 08:39 AM.

  14. The Following User Says Thank You to strangerdanger For This Useful Post:

    Blitz (05-09-2012)

Similar Threads

  1. [Request] Memory address Logger...(Visual Basic)
    By sindacjohn in forum WarRock Hack Source Code
    Replies: 0
    Last Post: 03-14-2012, 09:32 AM
  2. [Help] How Do I Find Static Memory Addresses?
    By Phizo in forum C++/C Programming
    Replies: 22
    Last Post: 09-27-2011, 09:00 AM
  3. How to code together with Visual Studio 2010
    By A$IAN in forum CrossFire Help
    Replies: 0
    Last Post: 09-14-2010, 08:06 AM
  4. Adding and using Resources with Visual Studios Express
    By why06 in forum C++/C Programming
    Replies: 3
    Last Post: 04-02-2010, 09:08 AM
  5. how to write/Read game memory with vb 2008
    By CodeHPro in forum Visual Basic Programming
    Replies: 33
    Last Post: 11-08-2009, 09:50 PM