What is PlayerBase in Patch 3.0.3 (9183) menu

User Tag List

Results 1 to 8 of 8
  1. #1
    skyworld009's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    What is PlayerBase in Patch 3.0.3 (9183)

    What is PlayerBase in Patch 3.0.3 (9183)?
    And XYZ Offsets.

    How to find these?

    What is PlayerBase in Patch 3.0.3 (9183)
  2. #2
    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)
    Searching is indeed a hard thing, this requires some charmander!

    Anyway

    playerbase : [[0x0127BFFC]+0x30]+0x28
    x y z rot are at 0x7d0 0x7d4 0x7d8 0x7DC

    Edit: my mistake, this is 3.0.2 ... I'm european.
    Last edited by Robske; 11-04-2008 at 03:43 PM.

  3. #3
    game09dj's Avatar Member
    Reputation
    1
    Join Date
    Jul 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    3.0.3
    PlayerBase:
    [[[0127E014]+0x30]+0x28]
    x=[[[0127E014]+0x30]+0x28]+0x7D0

  4. #4
    skyworld009's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks,can you tell me how to find PlayerBase?

  5. #5
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by skyworld009 View Post
    Thanks,can you tell me how to find PlayerBase?
    Black magic. (Don't cross-post moron)

  6. #6
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cheat Engine pointer finder, or if you know how to do it as Cypher already said black magic
    I hacked 127.0.0.1

  7. #7
    Silbi's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    12
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how can I put this new address in my XYZ Hack / Positioning hack?

    3.0.3
    PlayerBase:
    [[[0127E014]+0x30]+0x28]
    x=[[[0127E014]+0x30]+0x28]+0x7D0




    My pointers.ini looks like this

    [Pointers]
    Main=0x0E29D28
    Version=0x0D75250
    Build=8606
    [Plus]
    X=0xBF4
    Y=0xBF0
    Z=0xBF8



    And my XYZ.au3



    ;note to self: liv hex-2560


    ;---- Includes ----
    #Include <NomadMemory.au3>
    #Include <Misc.au3>
    #include <Inet.au3>
    ;------------------


    SetPrivilege("SeDebugPrivilege", 1)
    $dll = DllOpen("user32.dll")


    ;This checks if there's a message available
    $message = _INetGetSource("http://awwe.awardspace.com/XYZ/newmessage.txt")

    ;if the message isn't empty, display the contents of it
    if $message = "" Then

    else

    MsgBox(0,"",$message)
    EndIf


    ;Reads pointers from the .ini file
    $wow = _memoryopen(WinGetProcess("World of Warcraft"))
    $pointer = IniRead("pointers.ini","Pointers","Main","NotFound")
    $version = IniRead("pointers.ini","Pointers","Version","NotFound")
    $build = IniRead("pointers.ini","Pointers","Build","NotFound")

    $plusX = IniRead("pointers.ini","Plus", "X","NotFound")
    $pluzY = IniRead("pointers.ini","Plus","Y","NotFound")
    $plusZ = IniRead("pointers.ini","Plus","Z","NotFound")




    ;checks the current version, if this isn't what it's supposed to be, do an update
    if _memoryread($version ,$wow,'char[30]') = "World of WarCraft (build " & $build & ")" Then

    Else
    update()
    EndIf




    ;Changes your position

    Func teleport($direction)

    Select


    Case $direction = "north"



    $base = _memoryread($pointer ,$wow,'dword')

    $Y = "0x" & hex($base + 0xBF0)


    $location = _MemoryRead($Y , $wow, 'float')
    $newlocation = $location + 0.13
    _MemoryWrite($Y , $wow,$newlocation, 'float')
    send("{left}{left}{right}{right}")

    sleep(30)

    Case $direction = "west"

    $base = _memoryread($pointer ,$wow,'dword')
    $X = "0x" & hex($base + 0xBF4)



    $location = _MemoryRead($X , $wow, 'float')
    $newlocation = $location + 0.13
    _MemoryWrite($X , $wow,$newlocation, 'float')
    send("{left}{left}{right}{right}")
    sleep(30)


    Case $direction = "south"

    $base = _memoryread($pointer ,$wow,'dword')

    $Y = "0x" & hex($base + 0xBF0)


    $location = _MemoryRead($Y , $wow, 'float')
    $newlocation = $location - 0.13
    _MemoryWrite($Y , $wow,$newlocation, 'float')
    send("{left}{left}{right}{right}")
    sleep(30)


    Case $direction = "east"

    $base = _memoryread($pointer ,$wow,'dword')
    $X = "0x" & hex($base + 0xBF4)


    $location = _MemoryRead($X , $wow, 'float')
    $newlocation = $location - 0.13
    _MemoryWrite($X , $wow,$newlocation, 'float')
    send("{left}{left}{right}{right}")
    sleep(30)

    Case $direction = 5

    $base = _memoryread($pointer ,$wow,'dword')

    $Z = "0x" & hex($base + 0xBF


    $location = _MemoryRead($Z , $wow, 'float')
    $newlocation = $location + 3

    sleep(30)

    _MemoryWrite($Z , $wow,$newlocation, 'float')
    Case $direction = 6

    $base = _memoryread($pointer ,$wow,'dword')

    $Z = "0x" & hex($base + 0xBF

    $location = _MemoryRead($Z , $wow, 'float')
    $newlocation = $location - 3



    _MemoryWrite($Z , $wow,$newlocation, 'float')
    sleep(30)
    EndSelect

    EndFunc


    ;check if the keys are pressed, yes this drains alot of CPU :'(
    While 1

    If _IsPressed("68", $dll) Then
    teleport("north")

    elseif _IsPressed("64", $dll) Then
    teleport("west")

    elseif _IsPressed("65", $dll) Then
    teleport("south")
    elseif _IsPressed("66", $dll) Then
    teleport("east")
    elseif _IsPressed("67", $dll) Then
    teleport(5)
    elseif _IsPressed("69", $dll) Then
    teleport(6)


    EndIf



    WEnd





    func update()
    ;download the new pointers
    MsgBox(0,"","New pointers needed, press OK to download them.")
    $update = _InetGetSource("http://awwe.awardspace.com/XYZ/newpointers.txt")
    if $update = "" Then
    ;if the page cannot be retrieved, display error and shutdown.
    MsgBox(0,"","Error downloading the new pointers, please try again later."& @CRLF & " The application will now shut down. ")
    Exit

    EndIf

    $iamfeelingsplitted2day = StringSplit($update,"|")
    ;if the freshly downloaded buildnumber is the same as the one already saved, tell the user that there's no new pointers.
    if $iamfeelingsplitted2day[3] = $build Then
    msgbox(0,"","The new pointers aren't available yet, please try again later."& @CRLF & " The application will now shut down. ")
    exit
    else

    IniWrite("pointers.ini","Pointers", "Main",$iamfeelingsplitted2day[1])
    IniWrite("pointers.ini","Pointers","Version",$iamfeelingsplitted2day[2])
    IniWrite("pointers.ini","Pointers","Build",$iamfeelingsplitted2day[3])
    IniWrite("pointers.ini","Plus", "X",$iamfeelingsplitted2day[4])
    IniWrite("pointers.ini","Plus","Y",$iamfeelingsplitted2day[5])
    IniWrite("pointers.ini","Plus","Z",$iamfeelingsplitted2day[6])

    global $pointer = IniRead("pointers.ini","Pointers","Main","NotFound")
    global $version = IniRead("pointers.ini","Pointers","Version","NotFound")
    global $build = IniRead("pointers.ini","Pointers","Build","NotFound")

    MsgBox(0,"","Update successful.")

    EndIf



    EndFunc


    Need help!

  8. #8
    hypnodok's Avatar Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I havent actually check your code, but:
    x=[[[0127E014]+0x30]+0x28]+0x7D0
    This means you read from 0127E014, then add 0x30.
    Then read from that adress, add 0x28 and read from that address again.
    Finally add 0x7DO and you have the X-coord.

Similar Threads

  1. What to buy before patch 1.7!
    By shobons in forum ArcheAge Guides
    Replies: 2
    Last Post: 03-15-2015, 01:15 AM
  2. [Question] whats wrong with this patch?
    By thpthpthp in forum WoW ME Questions and Requests
    Replies: 4
    Last Post: 07-03-2008, 05:57 AM
  3. Question: Whats wrong with this patch-4.mpq?
    By Creepfold in forum WoW ME Questions and Requests
    Replies: 6
    Last Post: 06-10-2008, 02:53 PM
  4. HELP: What do i do after i download a patch??? Pls help
    By joms in forum WoW ME Questions and Requests
    Replies: 4
    Last Post: 09-30-2007, 08:16 AM
  5. Patch 2.2, and what it means.
    By Equ1N0X in forum World of Warcraft General
    Replies: 11
    Last Post: 09-26-2007, 03:40 AM
All times are GMT -5. The time now is 10:41 PM. 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