Post Reply Home » Forums » MMO Forums » World of Warcraft » World of Warcraft Nerfed Info

WOW Bot: Rogue bot : World of Warcraft Nerfed Info

Posted: September 3rd, 2005
User avatar
administrator
Total Posts:29920 Joined:2002
Its a great bot actually. I used it myself because i cant get banned unlike using other bots because it doesnt read the in game packets. As well its just offsets. With new patches new offsets are needed to make the bot correctly work it went down a few days ago. Getting new offsets are all we need to post for it to work again.
Posted: September 10th, 2005
lagwagon12
How long before the new offsets are available for this? I just joined and eager to try this out.
Posted: September 11th, 2005
jessman183ny
Anyone have the new offsets yet?
Posted: September 11th, 2005
User avatar
administrator
Total Posts:29920 Joined:2002

Code: Register to unlock hidden link

-- ; offsets

-- ; WoW 1.6.1
_WOW_VERSION = "1, 6, 1, 4544"

-- ; NPC HOOK
_npc_hook_addr = "46FBC6"

-- ; FUNCTIONS
_function_GetPlayerPtr = "45D960"

-- ; PLAYER OFFSETS
_player_unit_struct = "8"
_player_hitpoints = "1F80"
_player_mana = "1F84"
_player_maxmana = "18"
_player_maxhp = "18"
_player_current_xp = "27B0"
_player_max_xp = "27B4"
-- _playerLevel= "1FB0" -- whoever needs it
_player_rage = "4"
_player_energy = "8"
_player_facing = "93C"
_player_internal_z = "4"
_player_internal_y = "4"
_player_internal_x = "4"
_player_targetID = "94C3A0"
_player_playerID = "941000"
_corpseLocX = "94C358"   
_corpseLocY = "94C35C"   
_corpseLocZ = "94C360"   
_petID = "950EC8"      


-- ; NPC OFFSETS
_npc_id = "4D0"
_npc_id2 = "4D4"
_npc_hp = "354"
_npc_level = "558"
_npc_faction = "54C"
_npc_x = "10"
_npc_y = "14"
_npc_z = "18"
_npc_facing = "1C"

I think these are what you want.
Posted: September 11th, 2005
pinkexecutioner
i'm a noob at botting and i'm wondering what the offset codes do and how i use them
Posted: September 12th, 2005
lagwagon12
Im getting a fatal exception error when running this. I start wow, login my rogue char. then start the stooby-0.0.6.fss file. a little dos window comes up and it crashes while initializing toon. Any ideas whats wrong?
Posted: September 12th, 2005
pinkexecutioner
i'm getting the same error, and i think its because i have the incorrect offset information, if someone could tell me how to use the offset codes that would be super
Posted: September 13th, 2005
User avatar
administrator
Total Posts:29920 Joined:2002
opy and paste code to your offsets file and hook file. should work fine now.


Offsets file

Code: Register to unlock hidden link

Code:


-- ; offsets
--; temp solution from woody while outlaw away

-- ; WoW 1.6.0
_WOW_VERSION = "1, 6, 0, 4500"

-- ; NPC HOOK
_npc_hook_addr = "46FBA6"

-- ; FUNCTIONS
_function_GetPlayerPtr = "45D940"

-- ; PLAYER OFFSETS
_player_unit_struct = "8"
_player_hitpoints = "1F80"
_player_mana = "1F84"
_player_maxmana = "18"
_player_maxhp = "18"
_player_current_xp = "27B0"
_player_max_xp = "27B4"
-- // _player_alive = "20F5" -- // does not work
-- // _player_form = "2096"  -- // does not work
-- // _player_combo = "2FB1" -- // does not work
-- // _player_level = "1EC8" -- // works but not needed
_player_rage = "4"
_player_energy = "8"
_player_facing = "93C"
_player_internal_z = "4"
_player_internal_y = "4"
_player_internal_x = "4"
_player_targetID = "94C3A0"
_player_playerID = "941000"

-- ; NPC OFFSETS
_npc_id = "4D0"
_npc_id2 = "4D4"
_npc_hp = "354"
_npc_level = "558"
_npc_faction = "54C"
_npc_x = "10"
_npc_y = "14"
_npc_z = "18"
_npc_facing = "1C"


Hook File

Code: Register to unlock hidden link

Code:



-- ; Hook
--; temp solution from woody while outlaw away

function Sense_Hook(hWnd,hook)
   
   h = hook
   ret = HexAdd(h,"6")
   
   -- ; .DATA
   hook = {
     clear = Asm.AllocateMemory(hWnd,4),
     loops = Asm.AllocateMemory(hWnd,4),
     npc_count = Asm.AllocateMemory(hWnd,4),
     npc_array = Asm.AllocateMemory(hWnd,1024)
   }

   -- ; .CODE
   asm = #ASM_START
   
      ; START
      @sense_hack:
         push ecx
         push eax
         cmp dword *(hook.clear),1
         je @empty_data
         cmp dword *(hook.loops),0
         je @end
         dec dword *(hook.loops)
         add ecx,354h
         cmp dword [ecx],64h
         jg @end
         cmp dword [ecx],1h
         jl @end
         add ecx,204h
         cmp dword [ecx],1h
         jl @end
         cmp dword [ecx],50h
         jg @end
         sub ecx,558h
         mov eax, &(hook.npc_array)
       
      @check_if_new:
         cmp dword [eax],0
         je @add_npc
         cmp dword [eax],ecx
         je @end
         add eax,4h
         jmp @check_if_new
         
      @add_npc:
         mov dword [eax],ecx
         inc dword *(hook.npc_count)
         jmp @end
         
      @empty_data:
         mov eax, &(hook.npc_array)
         mov dword *(hook.clear),0
         mov dword *(hook.npc_count),0       
         mov dword *(hook.loops),0         
       
      @empty_loop:
         cmp dword [eax],0
         je @end
         mov dword [eax],0
         add eax,4h
         jmp @empty_loop
         
      @end:
         pop eax
         pop ecx
         mov eax, dword [ecx+38h]
         mov ecx, dword [ecx+3Ch]
         jmp dword &(ret)
      ; end
       
   #ASM_END
   
   code = Asm.AllocateMemory(hWnd,Asm.OpCodeSize(asm))
   Asm.Write(hWnd,code,asm)
   -- ; .HOOK
   Asm.WriteJmp(hWnd,h,code,1)
   
   return hook
end 
Then after you do that update the newest offsets which are these for 1.6.2

Code: Register to unlock hidden link

-- ; offsets

-- ; WoW 1.6.1
_WOW_VERSION = "1, 6, 1, 4544"

-- ; NPC HOOK
_npc_hook_addr = "46FBC6"

-- ; FUNCTIONS
_function_GetPlayerPtr = "45D960"

-- ; PLAYER OFFSETS
_player_unit_struct = "8"
_player_hitpoints = "1F80"
_player_mana = "1F84"
_player_maxmana = "18"
_player_maxhp = "18"
_player_current_xp = "27B0"
_player_max_xp = "27B4"
-- _playerLevel= "1FB0" -- whoever needs it
_player_rage = "4"
_player_energy = "8"
_player_facing = "93C"
_player_internal_z = "4"
_player_internal_y = "4"
_player_internal_x = "4"
_player_targetID = "94C3A0"
_player_playerID = "941000"
_corpseLocX = "94C358"   
_corpseLocY = "94C35C"   
_corpseLocZ = "94C360"   
_petID = "950EC8"      


-- ; NPC OFFSETS
_npc_id = "4D0"
_npc_id2 = "4D4"
_npc_hp = "354"
_npc_level = "558"
_npc_faction = "54C"
_npc_x = "10"
_npc_y = "14"
_npc_z = "18"
_npc_facing = "1C" 
After you edit everything it should work 100% :)
Posted: September 13th, 2005
jessman183ny
This bot is different compared to the rest of the tt bots. All the other TT bots worked. Even with the replaced offsets and hook(toon.inc) i could not get it to run, it has a different file structure then the rest.
Posted: September 13th, 2005
pinkexecutioner
can someone just replace the offset and hook codes and let us download that? i'm still having trouble and i have replaced both hook and offset codes.
Posted: September 16th, 2005
cazoomie
Yeah, I have no idea which codes go where, and I think since you leet hackers can easily do it, it would be even easier to just make a link to the updated file. 1.7 that is
Posted: September 17th, 2005
herbalchild
will this work with 1.7? are there any good rogue bots to use that wont get you banned?
Posted: September 18th, 2005
User avatar
administrator
Total Posts:29920 Joined:2002
yea there is apost for the newest wow offsets for 1.7
Posted: September 18th, 2005
water1
So for sure i cant get banned using this if im sittin at my comp say reading a book and watching bot?
Posted: September 18th, 2005
herbalchild
reguardless of the bot i wouldent leave it unattended...if botting sit at the computer and watch in case a GM /tell's you, the movement of a bot is pretty tell tale and lots of people are quick to report botters...if you bot..bot safe
Ready to join the community? Click here and see all of the benefits!
blue large dotWho is online
Users browsing this forum: No registered users and 7 guests
Post Reply