Does anyone know how to find the PlayerBase offset for Spectate? I have it for 3.0.9 as 0x1A60
Edit:
Hrm it seems to be at
lvl1 = PB + 1010h
lvl2 = lvl2 + 8h
Last edited by FenixTX2; 10-08-2009 at 05:10 PM.
How I can know if my player in swimming?
"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
Ure sig is awesome Robske haha![]()
(How I can know if my player swiming) out of process memory?
[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
Nice, gonna try it tommorow thengotta make the targeting a little better too
![]()
InputEvent = 0x81E3A0 //3.2.2a
GetTimeStamp = 0x820420 //3.2.2a
Pretty sure this is missing:
CGUnit_C__GetAura = 0x0055D490
IsCurrentSpellBySpellId = 0x007BCBE0
I can not Find what me need. Need Lua functions for send account name and password to textbox in WoW.
Keybindings:
List [0x0113F5E4]
Step [list + 0xb0]
First node [list + 0xb8]
Action name [current item + 0x28] (pointer to string)
Key [current item + 0x14] (pointer to string)
Next item [current item + step + 0x4]
Example:
Code:IntPtr list = process.Read<IntPtr>( new IntPtr( 0x0113F5E4 ) ); int step = process.Read<int>( list.Offset( 0xb0 ) ); Console.WriteLine( "Step: " + step ); IntPtr currentItem = process.Read<IntPtr>( list.Offset( 0xb8 ) ); while ( currentItem != IntPtr.Zero && currentItem.IsEven() ) { Console.WriteLine( "Item: " + currentItem.ToHexString() ); string name = process.Read<string>( currentItem.Offset( 0x28 ), 0 ); string key = process.Read<string>( currentItem.Offset( 0x14 ), 0 ); Console.WriteLine( " > name: " + name ); Console.WriteLine( " > key1: " + key ); currentItem = process.Read<IntPtr>( currentItem.Offset( step + 0x4 ) ); }
Last edited by Kryso; 10-15-2009 at 03:27 PM.