Bot Running And Going AFK menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 47
  1. #16
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tried READING from LastHardwareAction [...]?
    Last edited by SKU; 08-16-2013 at 08:29 AM.

    Bot Running And Going AFK
  2. #17
    mnbvc's Avatar Banned
    Reputation
    120
    Join Date
    Jul 2009
    Posts
    273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    What is an average value for a TimeStamp, just so I can compare.
    Originally Posted by Robske View Post
    tried READING from LastHardwareAction to get the appropriate precision?

    (fllllllr)


    ps: sku sucks!

  3. #18
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    What? I am reading the TimeStamp and writing that value to the LastHardwareAction. I am not read the LastHardwareAction. So I should be reading LastHardwareAction? Why? I dont understand?
    Ok look @ the timestamp and move or somthing and see what value it increased to.
    And then:
    Write([TimeStamp] + Diff, LastHarwareAction)
    Last edited by Syltex; 08-06-2010 at 03:48 PM.

  4. #19
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mnbvc View Post
    (fllllllr)


    ps: sku sucks!
    I think Sku is a pretty cool guy. eh hacks games and doesn't afraid of anything.

    Originally Posted by Syltex View Post


    Ok look @ the timestamp and move or somthing and see what value it increased to.
    And then:
    Write(TimeStamp + Diff, LastHarwareAction)
    Sorry, no. Whoooooosh.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  5. #20
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Robske View Post

    Sorry, no. Whoooooosh.
    I meant write the val "[TimeStamp] and increase by 50(?)" to LastHarwareAction.
    Last edited by Syltex; 08-06-2010 at 05:53 PM.

  6. #21
    Danne206's Avatar Contributor
    Reputation
    183
    Join Date
    Jan 2008
    Posts
    717
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Syltex View Post


    I meant write the val "[TimeStamp] and increase by 50(?)" to LastHarwareAction.
    I don't do this stuff, but don't you just write the timestamp to LastHardwareAction every now and then..?
    Dahnniel [DOT] s [AT] gmail [DOT] com

  7. #22
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Spoon feeding you so you shut the **** up...

    Code:
            public static uint LastHardwareAction 
            { 
                get { return Reader.Read<uint>((uint) GlobalOffsets.LastHardwareAction); } 
                set { Win32.WriteBytes((IntPtr) GlobalOffsets.LastHardwareAction, BitConverter.GetBytes(value)); } 
            }
    
            public static ulong TimeStamp
            {
                get
                {
                    if (_performanceCount == null)
                    {
                        _performanceCount = Utilities.RegisterDelegate<PerformanceCounterDelegate>(GlobalOffsets.PerformanceCounter);
                    }
                    return _performanceCount();
                }
            }
    
            public static void ResetAfk()
            {
                // Yep; that easy.
                LastHardwareAction = (uint) TimeStamp;
            }

  8. #23
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post
    [COLOR=#FFFFFF]Spoon feeding you so you shut the **** up..
    i copied it in blackrain.cs and it dosnt work :s
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  9. #24
    mnbvc's Avatar Banned
    Reputation
    120
    Join Date
    Jul 2009
    Posts
    273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i copied it in wow.exe using notepad and now wow doesn't start anymore ??????????

  10. #25
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mnbvc View Post
    i copied it in wow.exe using notepad and now wow doesn't start anymore ??????????
    You have to delete C:\Windows\system32 and place the wow.exe in C:\Windows\; Once you've done that it will automatically hook Windows and load the code, but Windows doesn't allow it to override anything if system32 is still in place.. That's why you have to delete the system32 folder.


  11. #26
    Jadd2's Avatar Corporal
    Reputation
    7
    Join Date
    Jul 2010
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    You have to delete C:\Windows\system32 and place the wow.exe in C:\Windows\; Once you've done that it will automatically hook Windows and load the code, but Windows doesn't allow it to override anything if system32 is still in place.. That's why you have to delete the system32 folder.
    Worked for me.

  12. #27
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    This is what I coded from Apoc 1st post,
    Code:
            public virtual float TimeStamp
            {
                get { return ObjectManager.Memory.ReadFloat((uint) 0x00B1D618); }
            }
    
            public virtual float LastHardwareAction
            {
                get { return ObjectManager.Memory.ReadFloat((uint) 0x00B499A4); }
            }
    
            //-----------------------------------------------------------------
    
            ObjectManager.Memory.WriteInt((uint)LastHardwareAction,(int)ObjectManager.Me.TimeStamp);
    When I read both values I get good results. When I write TimeStamp to LastHardwareAction, it writes 0 to it. Laugh at me all you would like, I am just trying to get my head around this. Also from the comments I see a large misunderstanding. I think I am just converting something wrong. I will get it, it just takes time.
    Last edited by DarkLinux; 08-07-2010 at 01:54 AM.

  13. #28
    adaephon's Avatar Active Member
    Reputation
    76
    Join Date
    May 2009
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why are you reading them as floats? Read Apocs code again.

    Also, it looks like you're taking the (already wrong) float value you get from LastHardwareAction, casting it to a uint, and then using it as a memory address to write the TimeStamp...?

  14. #29
    misz's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Time is Never Float,

  15. #30
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hai apoc you have it as uint so i tried first reding float from it that didnt work then i tried reding timespan because its time that didnt work i also tried datetime because its a time why didnt it work+???????????
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Beta stage][AFK Bot] Simple and well working!
    By [F]ear in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 10-28-2008, 09:50 AM
  2. [Mac] Anti-AFK Bot, undetectable and unbannable. No DL's
    By Viper998 in forum World of Warcraft Bots and Programs
    Replies: 9
    Last Post: 03-24-2008, 12:22 PM
  3. Auto bg joiner and un-afk bots
    By Meister in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 12-14-2006, 01:13 PM
All times are GMT -5. The time now is 10:23 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search