Hi
I try to loot with CTM
Target_guid -> CTM_InteractGUID
6 -> CTM_ACTION_TYPE
(Auto-loot is enable)
My character is going well until the target
the loot window opens
but it does not collect items
anyone has ever had this problem ?
thx
Hi
I try to loot with CTM
Target_guid -> CTM_InteractGUID
6 -> CTM_ACTION_TYPE
(Auto-loot is enable)
My character is going well until the target
the loot window opens
but it does not collect items
anyone has ever had this problem ?
thx
Use "Interact with target" with the CTM loot.
Interact with target does not exist on the server 2.4.3 or I am ;(
what is the most ennervant is that the loot window opens but the auto loot not working !!
anyone know a addon auto loot?
Maybe try turning autoloot on? Just a guess.
...........(Auto-loot is enable)
After the CTM loot you could use Lootslot to loot any items. This could be from a macro on a button, or perhaps LuaDoString or write yourself an addon to do it (triggered by event LOOT_OPENED).
API LootSlot - WoWWiki - Your guide to the World of Warcraft
You need to set the distance and scale to target
wooootttt "darrensmith0125" thx for this !!!!
Its ok , LootSlot() is the solution !!!
You don't need lua for that.
Just write to the AutoLoot offset.
PLAYER_AUTOLOOT{INT} = [Pbase + 0xD8] + 0x1010
Set that to 1 before you interact with the corpse and it will loot all slots.
That would be amazing!!!
But doesn't seem to work
Am i doing it wrong or just new offsets?Code:int MkAutoLoot() { DWORD aloot; int lootswitch=1; ReadProcessMemory( hProc, (LPVOID)(pBase+0xD8),(LPVOID)&aloot, 4, NULL ); ReadProcessMemory( hProc, (LPVOID)(aloot+0x1010),(LPVOID)&aloot, 4, NULL ); WriteProcessMemory(hProc, (LPVOID)(aloot),&lootswitch,4,NULL); return 0; }
i did it 4 lulz
10x a lot!!!
Now this works perfectly fine. Here's the right code.
+rep from me asaic.Code:int MkAutoLoot() { DWORD aloot; int lootswitch=1; ReadProcessMemory( hProc, (LPVOID)(pBase+0xD8),(LPVOID)&aloot, 4, NULL ); aloot+=0x1020; WriteProcessMemory(hProc, (LPVOID)(aloot),&lootswitch,4,NULL); return 0; }
i did it 4 lulz
Old post this, but thank you very much for the info, its been a problem.