Results 1 to 7 of 7
  1. #1
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused

    Making Hack in Visual Basic?

    Well i was AMAZED AT: freedompeace Sunrise new hack, go check it and THANKS HIM!

    ----------
    Well how can make hack in visual Basic, or did use something different?

  2. #2
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Wtf is this..

  3. #3
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    ikr close!!!!!!!!!!!!!!!!

  4. #4
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by ultahackers View Post
    Well i was AMAZED AT: freedompeace Sunrise new hack, go check it and THANKS HIM!

    ----------
    Well how can make hack in visual Basic, or did use something different?
    Why yes, I did.

  5. #5
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool

  6. #6
    ultahackers's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    139
    Reputation
    9
    Thanks
    73
    My Mood
    Amused
    Visual Basic TA program maker... go check freedompeace Sunrise hack, ta new one....

  7. #7
    Dewerong's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Inside a Packet
    Posts
    59
    Reputation
    10
    Thanks
    2
    ASM

    .386
    .model flat,stdcall
    option casemap:none

    include \masm32\include\windows.inc
    include \masm32\include\kernel32.inc
    include \masm32\include\masm32.inc
    include \masm32\include\user32.inc
    include \masm32\include\debug.inc
    include \masm32\include\masm32rt.inc
    includelib \masm32\lib\kernel32.lib
    includelib \masm32\lib\masm32.lib
    includelib \masm32\lib\debug.lib
    includelib \masm32\lib\user32.lib

    include HotYang.Inc
    include Security.inc
    include Events.inc

    .data

    .data?
    ThreadID dd ?
    pid dd ?
    SC2 dd ?
    handle dd ?
    .code

    start:
    print "Looking for Game...", 13, 10

    ;Do SC2 Code
    invoke FindWindow, CTEXT("StarCraft II"), 0
    mov SC2, eax
    .if eax == 0
    print "Unable to locate StarCraft II"
    .else
    invoke GetWindowThreadProcessId, SC2, addr pid
    invoke OpenProcess, PROCESS_ALL_ACCESS, 0, pid
    mov handle, eax
    .if eax == 00h
    print "Unable to get StarCraft II process ID"
    .else
    invoke CloseHandle, handle
    .endif
    .endif
    .endif

    inkey
    END start
    Or in C++

    #include "StdAfx.h"
    #include <windows.h>
    #include <Tlhelp32.h>
    #include <iostream>
    #include "calls.h"
    using namespace std;

    HWND SC2 = FindWindow("StarCraft II", 0);
    DWORD PID;
    ;void EnableDebugPriv();

    int main()
    {
    cout << "Hooking to StarCraft II..." << endl;

    //Hooks to SC2
    if(FindWindow("StarCraft II", 0) == 0)
    {
    cout << "StarCraft II was not found" << endl;
    exit(0);
    }

    EnableDebugPriv();
    GetWindowThreadProcessId(SC2, &PID);
    HANDLE phandle = OpenProcess(PROCESS_ALL_ACCESS, 0, PID);

    //Modify SC2
    WriteProcessMemory(phandle, (LPVOID)0x0A5C6DF, "\x3D", 1, NULL);

    return 0;
    }
    I also made one in VB but I forgot where I put the code for it. Just convert those to VB. It isn't hard. Replace the class names with "Combat_Arms", then replace the WriteProcessMemory with the hack offsets you wanna modify. Don't forget to click that "Thanks" button for my post .

Similar Threads

  1. Coding hacks with Visual Basic, C#, F# anyone?
    By freedompeace in forum Combat Arms Coding Help & Discussion
    Replies: 24
    Last Post: 02-12-2011, 04:29 PM
  2. Creating a Moden warfare 2 hack win Visual Basics 2008
    By MasterJ in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 01-27-2010, 06:49 PM
  3. Hacks in Visual Basic 2008 Express Edition
    By Exotiq in forum WarRock Discussions
    Replies: 4
    Last Post: 08-18-2009, 07:00 AM
  4. Replies: 28
    Last Post: 03-02-2009, 07:44 AM
  5. Video tutorial: Making WarRock hack in Visual Basic
    By Darky in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-12-2009, 02:47 PM