Results 1 to 5 of 5
  1. #1
    edups yellow homie's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    iDubbbz
    Posts
    1,265
    Reputation
    33
    Thanks
    140
    My Mood
    Bitchy

    Need help with orbi hack (beginner)

    Hey everyone,
    All the orbi/radar hacks here are either detected/outdated, so I was wondering how I can code one myself. I've never tried coding before but I hope it's generally easy. I noticed a couple threads related to orbi hack code or something along those lines, but how can I utilize that? What program do I need? Should I create an external radar or one that's on the default radar in-game? How can I bypass TAC screenshot and VAC? Is there a program I can use to test if something's VAC detected?

    Please don't be too rude because I know almost nothing about creating hacks or anything of the like.
    Thanks guys, looking forward to your replies.

  2. #2
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,161
    My Mood
    Angelic
    Without basic programming knowledge, just making somebody tell you how to code VSAT isn't gonna really work, as you're just copying from the person telling you how to. Gain basic programming knowledge (for either VB.net, C++ or C#, I prefer C# and C++) and then ask again. (Yes these hacks only take up 15 lines of code and are extremely easy to make.)

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



  3. #3
    dani-pro2's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    36
    Reputation
    11
    Thanks
    1,288
    Everything is stores in memory, and every process has a process id

    first u need the process Id of the window
    then u need: the window to get it from

    HWND Gamename = FindWindowA(("Name of the window), 0);

    there u have the window handle stored in Gamename, so now u need to use that to get process id

    DWORD ProcessID;
    We need a variable to store it in, the process id
    GetThreadProcessId(GameName , &ProcessID);

    GetThreadProcessId gets the process id from the handle to window and stores it in ProcessID

    then we need to open the process, we need:

    type of access, and the loacation to get access, that is the ProcessID

    HANDLE pHandle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, ProcessID);

    Now we have to write to memory

    WriteProcessMemory(pHandle, (LPVOID)AddressForVSAT, &Variable that stores new value, sizeof(Varialbe that stores new value), 0);

    Hope This Helps u on the way

    - - - Updated - - -

    this was in c++ btw
    Last edited by dani-pro2; 10-28-2015 at 04:04 AM. Reason: stuff got censored

  4. #4
    sikerman's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by dani-pro2 View Post
    Everything is stores in memory, and every process has a process id

    first u need the process Id of the window
    then u need: the window to get it from

    HWND Gamename = FindWindowA(("Name of the window), 0);

    there u have the window handle stored in Gamename, so now u need to use that to get process id

    DWORD ProcessID;
    We need a variable to store it in, the process id
    GetThreadProcessId(GameName , &ProcessID);

    GetThreadProcessId gets the process id from the handle to window and stores it in ProcessID

    then we need to open the process, we need:

    type of access, and the loacation to get access, that is the ProcessID

    HANDLE pHandle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, ProcessID);

    Now we have to write to memory

    WriteProcessMemory(pHandle, (LPVOID)AddressForVSAT, &Variable that stores new value, sizeof(Varialbe that stores new value), 0);

    Hope This Helps u on the way

    - - - Updated - - -

    this was in c++ btw
    If i see it right there are some mistakes etc.

    To boogleBalls:

    First learn the syntax you wanna code your hack in, I prefer C++.
    Then learn how VAC and TAC exactly works, for a vsat hack you wont need to bypass Screenshots.

  5. #5
    Hydra's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    7,250
    Reputation
    1004
    Thanks
    7,470
    My Mood
    Psychedelic
    Quote Originally Posted by BoogleBalls View Post
    Hey everyone,
    All the orbi/radar hacks here are either detected/outdated, so I was wondering how I can code one myself. I've never tried coding before but I hope it's generally easy. I noticed a couple threads related to orbi hack code or something along those lines, but how can I utilize that? What program do I need? Should I create an external radar or one that's on the default radar in-game? How can I bypass TAC screenshot and VAC? Is there a program I can use to test if something's VAC detected?

    Please don't be too rude because I know almost nothing about creating hacks or anything of the like.
    Thanks guys, looking forward to your replies.
    No hacks are undetected, unless you are absolute professional hacker

    btw don't bother with TAC bypass, I heard people got banned for it, btw u can't predict if a hack is detected or not, because VAC bans randomly dates to prevent that.
    Goal: Reached 1000+ Rep (YeY)

Similar Threads

  1. [Help Request] need help with ava hacking with perx inject...
    By icefire89 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 6
    Last Post: 05-05-2013, 10:48 PM
  2. [Help Request] Need help with starting hacks please.
    By soggietriscuit1 in forum WarRock Help
    Replies: 6
    Last Post: 10-03-2012, 08:20 AM
  3. [Help Request] Need help with these hacks..
    By mgelmo11 in forum Vindictus Help
    Replies: 4
    Last Post: 07-28-2011, 10:50 PM
  4. [Help Request] i need help with the hack im using
    By kingster626 in forum Combat Arms Help
    Replies: 12
    Last Post: 06-18-2011, 10:15 PM
  5. [Help Request] I need Help With CAEU Hacks
    By ♪ςander!♪ in forum Combat Arms EU Help
    Replies: 3
    Last Post: 06-08-2011, 03:47 AM