Results 1 to 9 of 9
  1. #1
    Bamsemaster's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed

    Question Need help with trainer, float writing.

    So i am having problems with overwriting values in floats.
    I am using ReadWritingMemory.vb
    All other games that i don't find floats in works perfect...
    Please help me!
    Code:
    Dim tp As String = "10" 
            Try 
                WriteDMAFloat("ac_client", &H10F418, Offsets:={&HB8, &H360, &HE0, &H5C8, &H29C}, Value:=tp, Level:=1, nsize:=4) 
    
            Catch ex As Exception 
    
            End Try
    https://www.virustotal.com/en/file/7...is/1478090011/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Hunter; 11-02-2016 at 06:34 AM. Reason: Updated the virus scan.

  2. #2
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    Just a VB.NET source code.

    /Approved. Post back results and as always, use at your own risk.

  3. #3
    skycool07's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0
    Change Your WriteDMAFloat To This :

    Code:
        Public Function WriteDMAFloat(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Value As Single, ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Boolean
            Try
                Dim lvl As Integer = Address
                For i As Integer = 1 To Level
                    lvl = ReadInteger(Process, lvl, nsize) + Offsets(i - 1)
                Next
                WriteFloat(Process, lvl, Value, nsize)
                Return True
            Catch ex As Exception
                Return False
            End Try
        End Function
    For ReadDMAFloat :

    Code:
        Public Function ReadDMAFloat(ByVal Process As String, ByVal Address As Integer, ByVal Offsets As Integer(), ByVal Level As Integer, Optional ByVal nsize As Integer = 4) As Single
            Try
                Dim lvl As Integer = Address
                For i As Integer = 1 To Level
                    lvl = ReadInteger(Process, lvl, nsize) + Offsets(i - 1)
                Next
                Dim vBuffer As Single
                vBuffer = ReadInteger(Process, lvl, nsize)
                Return vBuffer
            Catch ex As Exception
    
            End Try
        End Function

  4. #4
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    You are writing a string value?!
    Why don't declare tp as single?

  5. #5
    infidel_'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    blah
    Posts
    184
    Reputation
    10
    Thanks
    138
    My Mood
    Twisted
    The variable is incorrect. ^ Follow what that guy said.

  6. #6
    H4X0RL33TT's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    4
    To get ReadWritingMemory of Float try
    ReadWritingMemory(Of Single)

  7. #7
    Bamsemaster's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Thank you all

  8. #8
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    Quote Originally Posted by Bamsemaster View Post
    Thank you all
    So did it work?

  9. #9
    Hugo Boss's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    28,752
    Reputation
    4790
    Thanks
    5,902
    My Mood
    Angelic
    No response for more than a week, assuming solved since user said "thank you all".

     
    Super User since 08-29-2017
    Global Moderator from 10-02-2016 - 08-29-2017
    Premium Seller since 11-16-2016
    Moderator from 09-24-2015 - 01-09-2016
    Alliance of Valiant Arms Minion from 11-12-2015 - 01-09-2016
    Market place Minion from 09-24-2015 - 01-09-2016
    Crossfire Minion from 09-11-2015 - 01-09-2016

    Middleman from 07-07-2015 - 01-09-2016
    Market Place Minion from 03-03-2014 - 08-01-2014
    Middleman from 01-30-2014 - 08-01-2014
    Moderator from 03-29-2013 - 04-04-2013
    Market Place Minion from 03-07-2013 - 04-04-2013
    Premium Member since 01-25-2013
    Middleman from 12-04-2012 - 04-04-2013
    Registered since 10-9-2011

Similar Threads

  1. Need Help with Trainer
    By turdhunter in forum C++/C Programming
    Replies: 4
    Last Post: 04-21-2014, 11:47 AM
  2. I need help with Maplestory Bots/Hacks/Trainers.
    By flegi in forum MapleStory Help
    Replies: 6
    Last Post: 06-20-2011, 12:49 AM
  3. NEED HELP WITH TRAINER
    By JonathanTBM in forum Vindictus Discussions
    Replies: 0
    Last Post: 02-23-2011, 01:50 PM
  4. Need help with trainer, its also posted inside
    By usabball7 in forum Combat Arms Hacks & Cheats
    Replies: 0
    Last Post: 08-06-2008, 11:45 AM