Results 1 to 4 of 4
  1. #1
    sven22's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Help me with my first BHOP cheat. (CODE)

    Hi guys, this is my first thread. I know Java and Python pretty well, so I decided to jump right into C# and do a fun project.

    I need some help with my code. I am not sure why my C# BHOP code doesn't work. My while loop isn't initiating and sending through my Jump, it just loops "Standing". So I thought my offsets were wrong, but I tripled checked them. Maybe I am understanding how my Flags works... But I am not even sure at this point. Thank you to anyone who can help me out here.

    Just FYI I was following this tutorial. Pretty common one:

    Code:
    using System;
    using System.Diagnostics;
    using System.Runtime.InteropServices;
    using System.Threading;
    
    
    namespace vamemoryTest
    {
        class Memory
        {
            static string process = "csgo";
            public static int aLocalPlayer = 0x2FBC;
            public static int oFlags = 0x104;
            public static int aJump = 0x51A812C;
            public static int bClient;
    
            [DllImport("user32", CharSet = CharSet.Ansi, SetLastError = true)]
            public static extern int GetAsyncKeyState(int vKey);
    
            [STAThread]
            static void Main(string[] args)
            {
                VAMemory vam = new VAMemory(process);
    
                if (GetModuleAddy())
                { 
                    int fJump = bClient + aJump;
    
                    aLocalPlayer = bClient + aLocalPlayer;
                    int LocalPlayer = vam.ReadInt32((IntPtr)aLocalPlayer);
    
                    int aFlags = aLocalPlayer + oFlags;
    
                    while (true)
                    {
                        while (System.Windows.Input.Keyboard.IsKeyDown(System.Wi  ndows.Input.Key.Space) == true)
                        {
                            int Flags = vam.ReadInt32((IntPtr)aFlags);
                            
                            if (Flags == 256)
                            {
                                vam.WriteInt32((IntPtr)fJump, 5);
                                Thread.Sleep(10);
                                vam.WriteInt32((IntPtr)fJump, 4);
    
                                Console.Clear();
                                Console.WriteLine("Jumping", Console.ForegroundColor = ConsoleColor.Green);
                            }    
                        }
                        Console.Clear();
                        Console.WriteLine("Standing", Console.ForegroundColor = ConsoleColor.Yellow);
                        Thread.Sleep(10);
                    }
                }
            }
            static bool GetModuleAddy()
            {
                try
                {
                    Process[] p = Process.GetProcessesByName(process);
    
                    if (p.Length > 0)
                    {
                        foreach (ProcessModule m in p[0].Modules)
                        {
                            if (m.ModuleName == "client.dll")
                            {
                                bClient = (int)m.BaseAddress;
                                return true;
                            }
                        }
                        return true;
                    }
                    else
                    {
                        return false;
                    }
                }
                catch (Exception ex)
                {
                    return false;
                }
            }
        }
    }
    The modules I am using is VAMemory, PresentationCore and WindowsBase

    I also know that VAMemory isn't safe and will get me VAC, this cheat is just for fun.

    Again, thanks!

  2. #2
    defaulto's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    461
    Reputation
    427
    Thanks
    347
    My Mood
    Angelic
    Are you sure these offsets are good?
    If you are not sure check the hazedumper. (https://******.com/frk1/hazedumper/blob/master/csgo.cs)

    And what I have just read, you are using "client.dll", nowadays it's "client_panorama.dll". (Correct me if I'm wrong)
    Last edited by defaulto; 06-18-2019 at 07:52 AM.

    #LOGS
    12-02-2020 ⌨ [MPGH]defaulto got gifted the Premium Membership from [MPGH]Azuki - sponsored by [MPGH]Flengo.
    27-11-2019 ⌨ [MPGH]defaulto captured the GFX Team Base together with [MPGH]Howl & [MPGH]Poonce.
    08-14-2017 ⌨ defaulto joined the game.

  3. #3
    LopplioGaming's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Location
    US
    Posts
    814
    Reputation
    47
    Thanks
    353
    My Mood
    Devilish
    As defaulto already said, ever since the update, it's client_panorama.dll
    The video is from 2016, before the update was released.
    I don't use CE but at 1:31 in the video, you may also want to change 'client.dll' to 'client_panorama.dll' as well.

  4. #4
    GoodLolMister's Avatar
    Join Date
    Aug 2018
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Download fallere cheat - https://bit****/2IlNzfl

Similar Threads

  1. Can you guys help me with my first steps to hacking Realm? Hello World!
    By RealmAnna in forum Realm of the Mad God Help & Requests
    Replies: 10
    Last Post: 08-21-2013, 07:37 AM
  2. [Request] Help! Where do you enter in cheat codes?
    By Jansen13 in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 3
    Last Post: 03-18-2012, 01:37 PM
  3. [Help Request] PSN help- where do I enter the cheat codes?
    By Jansen13 in forum Suggestions, Requests & General Help
    Replies: 1
    Last Post: 03-12-2012, 10:49 AM
  4. Could someone help me with my first hack!!!
    By NOOBJr in forum Combat Arms Help
    Replies: 1
    Last Post: 07-24-2010, 06:35 AM
  5. hi can any1 help me make or find a cheat code
    By CrUsHa in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-19-2006, 04:39 PM