[Release] ChickenBuddy - Simple chicken hack menu

User Tag List

Results 1 to 11 of 11
  1. #1
    Dragonef22's Avatar Contributor
    Reputation
    178
    Join Date
    Jan 2011
    Posts
    252
    Thanks G/R
    0/3
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release] ChickenBuddy - Simple chicken hack

    // Does not work with current patch
    Last edited by Dragonef22; 12-02-2021 at 06:25 PM.

    [Release] ChickenBuddy - Simple chicken hack
  2. Thanks toadskin (1 members gave Thanks to Dragonef22 for this useful post)
  3. #2
    mouN's Avatar Member CoreCoins Purchaser
    Reputation
    2
    Join Date
    Jul 2009
    Posts
    46
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice little share

  4. #3
    xblade2k7's Avatar Active Member
    Reputation
    48
    Join Date
    Jun 2009
    Posts
    277
    Thanks G/R
    101/32
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    and auto HP/mana potion not possible?

  5. #4
    eternity666's Avatar Member
    Reputation
    1
    Join Date
    Nov 2021
    Posts
    21
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just says not in game, doesn't work. why not get a real working diablo 2 resurrected bots
    Last edited by eternity666; 10-31-2023 at 11:16 PM.

  6. #5
    verto0's Avatar Member
    Reputation
    1
    Join Date
    Dec 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Doesnt work after game update todat, NOT IN A GAME, how to fix it?

  7. #6
    xblade2k7's Avatar Active Member
    Reputation
    48
    Join Date
    Jun 2009
    Posts
    277
    Thanks G/R
    101/32
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    source code plz.

  8. #7
    eternity666's Avatar Member
    Reputation
    1
    Join Date
    Nov 2021
    Posts
    21
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Doesn't work

  9. #8
    Dragonef22's Avatar Contributor
    Reputation
    178
    Join Date
    Jan 2011
    Posts
    252
    Thanks G/R
    0/3
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    // Does not work with current patch
    Last edited by Dragonef22; 12-02-2021 at 06:25 PM.

  10. Thanks toadskin (1 members gave Thanks to Dragonef22 for this useful post)
  11. #9
    crayfish14's Avatar Member
    Reputation
    1
    Join Date
    Sep 2016
    Posts
    26
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can you share the source for this please?

  12. #10
    redmoonmerchant's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any update on new patch? Thanks my loading screen blows…

  13. #11
    eternity666's Avatar Member
    Reputation
    1
    Join Date
    Nov 2021
    Posts
    21
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crayfish14 View Post
    can you share the source for this please?
    part of the source
    Code:
    public frmMain()
            {
                this.InitializeComponent();
            }
    
            // Token: 0x0600001C RID: 28 RVA: 0x00002790 File Offset: 0x00000990
            private void cmdStartStop_Click(object sender, EventArgs e)
            {
                bool flag = !Versioned.IsNumeric(this.txtCloseGameAt.Text);
                if (flag)
                {
                    Interaction.MsgBox("Enter a valid number", MsgBoxStyle.OkOnly, null);
                }
                else
                {
                    bool flag2 = Operators.CompareString(this.cmdStartStop.Text, "Start", false) == 0;
                    if (flag2)
                    {
                        this.cmdStartStop.Text = "Stop";
                        this.cmdStartStop.BackColor = Color.Firebrick;
                        this.txtCurrentLife.Text = "";
                        this.txtMaxLife.Text = "";
                        this.txtLifePercent.Text = "";
                        this.tmrChicken.Enabled = true;
                    }
                    else
                    {
                        this.cmdStartStop.Text = "Start";
                        this.cmdStartStop.BackColor = Color.Lime;
                        this.tmrChicken.Enabled = false;
                        this.txtCurrentLife.Text = "";
                        this.txtMaxLife.Text = "";
                        this.txtLifePercent.Text = "";
                    }
                }
            }
    
            // Token: 0x0600001D RID: 29 RVA: 0x000028B0 File Offset: 0x00000AB0
            private void tmrChicken_Tick(object sender, EventArgs e)
            {
                bool flag = Process.GetProcessesByName("D2R").Count<Process>() == 0;
                if (flag)
                {
                    this.txtCurrentLife.Text = "Game not found";
                    this.txtMaxLife.Text = "Game not found";
                    this.txtLifePercent.Text = "Game not found";
                }
                else
                {
                    GameData gameData = new GameData(Process.GetProcessesByName("D2R").ElementAt(0));
                    bool flag2 = gameData.mapSeed == 0;
                    if (flag2)
                    {
                        this.txtCurrentLife.Text = "Not in a Game";
                        this.txtMaxLife.Text = "Not in a Game";
                        this.txtLifePercent.Text = "Not in a Game";
                    }
                    else
                    {
                        int num = Conversions.ToInteger(gameData.getStatValue(6));
                        int num2 = Conversions.ToInteger(gameData.getStatValue(7));
                        double num3 = Math.Round((double)num / (double)num2, 2) * 100.0;
                        this.txtCurrentLife.Text = num.ToString();
                        this.txtMaxLife.Text = num2.ToString();
                        this.txtLifePercent.Text = num3.ToString();
                        bool flag3 = num3 < (double)int.Parse(this.txtCloseGameAt.Text);
                        if (flag3)
                        {
                            this.cmdStartStop.PerformClick();
                            while (Process.GetProcessesByName("D2R").Count<Process>() > 0)
                            {
                                try
                                {
                                    Process.GetProcessesByName("D2R").ElementAt(0).Kill();
                                }
                                catch (Exception ex)
                                {
                                }
                            }
                        }
                    }
                }
            }

Similar Threads

  1. [Release] xyzForce - a simple teleport hack
    By VII in forum SWTOR Bots and Programs
    Replies: 18
    Last Post: 03-21-2012, 09:10 AM
  2. Need help with a simple teleport hack
    By Login Error in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 04-27-2008, 02:25 AM
  3. [Release]Ascent Simple Cms
    By sercankd in forum World of Warcraft Emulator Servers
    Replies: 13
    Last Post: 04-06-2008, 11:05 AM
  4. [Release] Ascent Simple Cms V2
    By sercankd in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 03-30-2008, 04:23 PM
  5. very simple account hack
    By koolkory in forum WoW Scam Prevention
    Replies: 15
    Last Post: 05-26-2007, 06:42 PM
All times are GMT -5. The time now is 08:50 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search