Results 1 to 10 of 10
  1. #1
    _Anonymous_'s Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    (Not Applicable)
    Posts
    71
    Reputation
    10
    Thanks
    1,043
    My Mood
    Drunk

    Simple Hack made by vb6.0

    This is simple hack feature read and right process memory


    form1:
    Code:
    Private Sub Command1_Click()
    
    If ReadALong("Alliance of Valiant Arms", &H7C5104E8, 1) Then
    Call WriteALong("Alliance of Valiant Arms", &H7C5104E8, 999)
    MsgBox "Hack successfully loaded!", vbInformation
    End If
    
    End Sub
    where the address
    Code:
    &H7C5104E8
    and quantity of 1
    where we change the value to 999


    module1:
    Code:
    Public Const PROCESS_ALL_ACCESS = &H1F0FFF
    Dim f1holder As Integer
    Dim timer_pos As Long
    
    Public Declare Function GetWindowThreadProcessId Lib "user32" (ByVal SomeValueIsStoredHere As Long, lpdwProcessId As Long) As Long
    Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
    Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
    Public Declare Function ReadProcessMem Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    
    Public Function WriteALong(TheGame As String, TheAddress As Long, ThisIsTheValue As Long)
    Dim SomeValueIsStoredHere As Long
    Dim SomeValueIsStoredHereToo As Long
    Dim SomeValue As Long
    SomeValueIsStoredHere = FindWindow(vbNullString, TheGame)
    GetWindowThreadProcessId SomeValueIsStoredHere, SomeValueIsStoredHereToo
    SomeValue = OpenProcess(PROCESS_ALL_ACCESS, False, SomeValueIsStoredHereToo)
    If (SomeValue = 0) Then
        Exit Function
    End If
    WriteProcessMemory SomeValue, TheAddress, ThisIsTheValue, 4, 0&
    CloseHandle hProcess
    End Function
    
    Public Function ReadALong(TheGame As String, TheAddress As Long, TheValue As Long)
    Dim SomeValueIsStoredHere As Long
    Dim SomeValueIsStoredHereToo As Long
    Dim SomeValue As Long
    SomeValueIsStoredHere = FindWindow(vbNullString, TheGame)
    GetWindowThreadProcessId SomeValueIsStoredHere, SomeValueIsStoredHereToo
    SomeValue = OpenProcess(PROCESS_ALL_ACCESS, False, SomeValueIsStoredHereToo)
    If (SomeValue = 0) Then
        Exit Function
    End If
    ReadProcessMem SomeValue, TheAddress, TheValue, 4, 0&
    CloseHandle hProcess
    End Function
    Note: if you compile this antivirus detects as it is TR/ATRAPS.GEN
    Just sharing and don't Hate pls

    source code and vb6.0 portable included
    credits to microsoft

    source code.rar - Jotti's malware scan
    https://www.virustotal.com/en/file/2...is/1373044123/
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Hunter; 02-02-2016 at 06:16 AM.

  2. The Following 51 Users Say Thank You to _Anonymous_ For This Useful Post:

    659916552 (08-26-2013),alex_4321 (08-13-2013),Angelbleak1 (07-14-2013),asdf0980 (07-09-2013),bizz1993 (07-13-2013),blackniger (07-16-2013),c4eu (07-11-2013),cehpxh (07-24-2015),clem2101 (08-18-2013),cmc5414 (10-16-2013),Commendera (06-23-2014),dakangoz (08-25-2013),david12345E (07-29-2013),DJLOKO (06-23-2014),DoranPro (06-23-2014),econl (08-06-2013),edgar27 (08-06-2013),eladrial (07-05-2013),fecskecsaba (01-26-2014),fesfs83 (08-26-2013),Frrozen (07-10-2013),gamer187 (07-09-2013),garciadrums (08-04-2013),Garina (07-06-2013),GlowingStone (07-09-2013),hacksava (01-06-2015),hazami (01-08-2015),ItA__AcHi (08-05-2013),Jamiez13 (08-23-2013),jhordano (04-02-2014),johnharim (07-18-2013),Laracroft353 (08-15-2013),liqixu222 (09-18-2014),Maxacador (08-20-2013),moriezz (07-22-2013),mr.dady (08-04-2013),ponguyen1999 (07-25-2013),PROSEGUR (02-09-2015),qq7767893311 (06-30-2015),shahar25 (07-09-2013),ShortTail (07-08-2013),soperking (07-14-2013),SpyroTheDragon (08-13-2013),steph31100 (07-11-2013),sugulino (06-23-2014),TheGermanMinerHD (06-23-2014),timo28469 (07-29-2013),tintin86510 (07-09-2013),TOWERZ (07-23-2013),xBlitzpanzerx (07-16-2013),ymannman (08-14-2013)

  3. #2
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    VB6 Portable removed. Not really needed.

    /Approved
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  4. #3
    dino42's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C++
    Posts
    343
    Reputation
    10
    Thanks
    223
    My Mood
    Sad
    What kind of hack is it when you compile it?

  5. #4
    edi689's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    3
    My Mood
    Worried
    Can someone teach me how to use these kind of hacks plese?

  6. #5
    _Anonymous_'s Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    (Not Applicable)
    Posts
    71
    Reputation
    10
    Thanks
    1,043
    My Mood
    Drunk
    Quote Originally Posted by edi689 View Post
    Can someone teach me how to use these kind of hacks plese?
    Quote Originally Posted by dino42 View Post
    What kind of hack is it when you compile it?
    if you modify it or you know how to find base memory and offset using CE then you can create:
    UAV hack
    SuperWeapons
    Euro 3BOX
    name changer and more with this can be posible

    but it's only work in 64bit while 32bit need to be inject

  7. #6
    Dare*'s Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    This is a noob question, but how do you compile it? Is there some program i need?

  8. #7
    Riddick's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Delusional
    Posts
    7,704
    Reputation
    529
    Thanks
    5,193
    My Mood
    Devilish
    Quote Originally Posted by Dare* View Post
    This is a noob question, but how do you compile it? Is there some program i need?
    Learn to use Cheat Engine in AVA (needs bypass) and then download Visual Basic and VisualC++, which allows you to compile the .exe or dll in C++

    Link here to MS sites: Download | Microsoft Visual Studio 2012

    Google "Cheat Engine 6.3" to find it........

  9. The Following User Says Thank You to Riddick For This Useful Post:

    Dare* (08-11-2013)

  10. #8
    Dare*'s Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Riddick View Post


    Learn to use Cheat Engine in AVA (needs bypass) and then download Visual Basic and VisualC++, which allows you to compile the .exe or dll in C++

    Link here to MS sites [Link]

    Google "Cheat Engine 6.3" to find it........
    Already got MSV Ultimate, but don't have Cheat Engine. Thank you!

  11. #9
    dino42's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    C++
    Posts
    343
    Reputation
    10
    Thanks
    223
    My Mood
    Sad
    Thanks! +Rep

  12. #10
    miauw1991's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    i dont know how to use this in cheat engine. i see form1 ( i see where it is) but then with the codes under it i dont understand what to do

Similar Threads

  1. [Patched] | MPGH Public Simple Hack | Made by ToXiC Coder
    By ToXiC Coder in forum CrossFire Hacks & Cheats
    Replies: 37
    Last Post: 01-30-2012, 08:43 AM
  2. [new]super hack made teurbz
    By joseus34 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 09-03-2007, 06:51 AM
  3. Small simple hack for the cho0bs
    By Grim09 in forum WarRock - International Hacks
    Replies: 25
    Last Post: 07-16-2007, 10:30 PM
  4. Simple GPS hack made by me ^^(first hack by me)
    By balour in forum WarRock - International Hacks
    Replies: 20
    Last Post: 07-08-2007, 08:32 PM
  5. All what we need simple hack for now.
    By sieko in forum WarRock - International Hacks
    Replies: 10
    Last Post: 05-24-2007, 11:08 AM