is there another way to enterworld? menu

Shout-Out

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 24 of 24
  1. #16
    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)
    -_- OMFG YES YOU DO... The fact that you asked and have not tested blows be out of the water... 2sec to test or 1min creating a new post and using google translate.. What are you talking about "no memory write method"? Everything your doing is a memory write... Someone closes this thread... You should stop and learn the basics b/c you are missing a lot....
    Last edited by DarkLinux; 11-24-2012 at 04:10 AM.

    is there another way to enterworld?
  2. #17
    lechris29's Avatar Contributor
    CoreCoins Purchaser
    Reputation
    273
    Join Date
    Jun 2012
    Posts
    1,096
    Thanks G/R
    0/2
    Trade Feedback
    415 (96%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i mean i use blackmagic,only Memory.WriteUInt or something,no "blackmagic.Write" this method specify

    Originally Posted by DarkLinux View Post
    -_- OMFG YES YOU DO... The fact that you asked and have not tested blows be out of the water... 2sec to test or 1min creating a new post and using google translate.. What are you talking about "no memory write method"? Everything your doing is a memory write... Someone closes this thread... You should stop and learn the basics b/c you are missing a lot....

  3. #18
    dan934's Avatar Banned
    Reputation
    33
    Join Date
    Jun 2009
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You need to learn a little more about your data types, but regardless, whatever your reading timestamp( wow.exe + 0xBBD354 ) as is what you need to write to lastHardwareAction( wow.exe + 0xAD7428 ).

    whatever your reading it as, int, uint, bytes it doesn't really matter as long as your writing it the same as you read it.

  4. #19
    DerLeecher's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Magic;
    
    namespace ConsoleApplication2
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.Write("WoW PID: ");
                int pid = Convert.ToInt16(Console.ReadLine());
    
                BlackMagic wowReader = new BlackMagic(pid);
                Random rd = new Random();
                int nb = 0;
    
                while (true)
                {
                    System.Threading.Thread.Sleep(rd.Next(3000));
                    wowReader.WriteInt((uint)wowReader.MainModule.BaseAddress + 0xAD7428, Environment.TickCount);
                    nb++;
                    Console.WriteLine("#{0} AFK-Reset", nb);
                }
            }
        }
    }
    or

    Code:
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using Magic;
    
    namespace ConsoleApplication2
    {
        class Program
        {
            static void Main(string[] args)
            {
                Console.Write("WoW PID: ");
                int pid = Convert.ToInt16(Console.ReadLine());
    
                BlackMagic wowReader = new BlackMagic(pid);
                Random rd = new Random();
                int nb = 0;
    
                while (true)
                {
                    System.Threading.Thread.Sleep(rd.Next(3000));
                    wowReader.WriteInt((uint)wowReader.MainModule.BaseAddress + 0xAD7428, wow.Reader.ReadInt((uint)wowReader.MainModule.BaseAddress + 0xBBD354));
                    nb++;
                    Console.WriteLine("#{0} AFK-Reset", nb);
                }
            }
        }
    }
    This is my Anti-AFK Code.

  5. #20
    AvocadoCFS's Avatar Private
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A quick read breakpoint on last hardware tick shows me it is not referenced when entering world, under any circumstances. I don't know what Apoc is talking about.

    There must be a problem elsewhere.

  6. #21
    lechris29's Avatar Contributor
    CoreCoins Purchaser
    Reputation
    273
    Join Date
    Jun 2012
    Posts
    1,096
    Thanks G/R
    0/2
    Trade Feedback
    415 (96%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    now i finally understand,no wrong with my Anto-AFK function,it works fine after EnterWorld,but it get the client crashed when on the Select character frame.
    thank you everyone,i can't rep you guys now,run out my reputation power already.


    as AvocadoCFS said,when you EnterWorld using DOLuaString,the client usually get crashed(it's pretty good when i run with CTRL+F5,but usually crashed if you run it directly,weird).

    as my title said,i dont know if there is another way i can EnterWorld.
    Originally Posted by AvocadoCFS View Post
    A quick read breakpoint on last hardware tick shows me it is not referenced when entering world, under any circumstances. I don't know what Apoc is talking about.

    There must be a problem elsewhere.
    Last edited by lechris29; 11-24-2012 at 09:06 AM.

  7. #22
    Frosttall's Avatar Active Member
    Reputation
    64
    Join Date
    Feb 2011
    Posts
    261
    Thanks G/R
    16/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you know that a crash isn't a simple crash but has a reason which is told in the crash report of World of Warcraft?!

    You might should pass us the error because that timestamp doesn't have to be the reason but something else could...

  8. #23
    hb123220's Avatar Member
    Reputation
    8
    Join Date
    Mar 2012
    Posts
    41
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i'm pretty sure when you LuaDoString('EnterWorld()’) ,wow will crash. BTW, i'm using zhCN Client..

  9. #24
    AvocadoCFS's Avatar Private
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Frosttall View Post
    Did you know that a crash isn't a simple crash but has a reason which is told in the crash report of World of Warcraft?!
    Yeah, reading a crash report will often solve your problem. If you can't understand what you're looking at, you're welcome to post it here, I'm sure someone can help you with it.

    Edit: I just tested it myself. I can call EnterWorld being completely out of process and not using any hardware related modifiers. But I am using luaL_loadbuffer and lua_pcall for execution.
    Last edited by AvocadoCFS; 11-24-2012 at 02:24 PM.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Bot] Is there a way to use another account on iPhone after getting perma ban?
    By RoyaleBaba in forum Pokemon GO Hacks|Cheats
    Replies: 7
    Last Post: 08-16-2016, 03:55 PM
  2. Another way into Tyr's Hand hide out.
    By hammy_pants in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 11-08-2006, 06:39 PM
  3. is there any way i can make my own models?
    By Avianar47 in forum World of Warcraft Model Editing
    Replies: 6
    Last Post: 08-30-2006, 07:22 PM
  4. Is there a way to see herbs and metal at the same time?
    By Rustin in forum World of Warcraft General
    Replies: 7
    Last Post: 07-19-2006, 06:16 PM
All times are GMT -5. The time now is 04:43 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