Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

typedef struct _LOOTDETAILS {
/*0x00*/ DWORD CorpseID;//spawnId of the corpse that has this lootitem
/*0x04*/ WORD StackCount;
/*0x06*/ WORD UnknownWord;
/*0x08*/ DWORD UnknownDWord;
/*0x0c*/ BYTE Unknown0x0c;
/*0x0d*/ CHAR Name[0x40];
/*0x4d*/ //more data here? -eqmule
} LOOTDETAILS,*PLOOTDETAILS;
//.text:0041FC2B imul eax, 84h in Mar 31 2015
typedef struct _LOOTITEM
{
/*0x00*/ DWORD ItemID;
/*0x04*/ CHAR Name[0x40];
/*0x44*/ BYTE Unknown0x44[0x28];
/*0x6c*/ struct _LOOTDETAILS *LootDetails;
/*0x70*/ BYTE Unknown0x70[0xc];
/*0x7c*/ BYTE AutoRoll;
/*0x7d*/ BYTE Unknown0x7d;
/*0x7e*/ BYTE Need;
/*0x7f*/ BYTE Greed;
/*0x80*/ BYTE No;
/*0x81*/ BYTE AlwaysNeed;
/*0x82*/ BYTE AlwaysGreed;
/*0x83*/ BYTE Never;
/*0x84*/
} LOOTITEM,*PLOOTITEM;
typedef struct _LOOTLIST {
/*0x000*/ BYTE Unknown0x004[0x4];
/*0x004*/ struct _LOOTITEM *pLootItem;
/*0x008*/ DWORD ListSize;
} LOOTLIST,*PLOOTLIST;
//size 0x2C4 see 4B7659 in Mar 31 2015 -eqmule
//size 0x2D4 see 4B7BA9 in Apr 20 2015 -eqmule
typedef struct _EQADVLOOTWND {
/*0x000*/ struct _CSIDLWND Wnd;
/*0x21c*/ BYTE Unknown0x021c[0x90];
/*0x2ac*/ struct _LOOTLIST *pCLootList;//below ref to aAdlw_applyfilt
/*0x2b0*/ struct _LOOTLIST *pPLootList;//below ref to aAdlw_cllwnd
/*0x2b4*/ BYTE Unknown0x2b4[0x20];
/*0x2d4*/
} EQADVLOOTWND,*PEQADVLOOTWND;
case IconID:
Dest.DWord = pItem->UnknownDWord;
Dest.Type = pIntType;
return true;
Ah, ya there are now regular eq inis that list all that info out. I asked someone to make a TLO to CDBstr it to just sort out the ID, but it might be a job for eqmule instead. Then you can just access the normal eq inis directly that you have set up for need/greed/etc and you could use a custom loot.ini to determine what category they go in if unknown.Sorry about not specifying what I was trying to do. I'm trying to convert my Loot.ini to the advloot system and it is a pain in the arse, lol.
#ITEM_ID^ICON_ID^ITEM_NAME
13403^817^Wolf Meat
13099^782^Spiderling Silk
13755^553^High Quality Wolf Skin
13754^553^Medium Quality Wolf Skin
13753^553^Low Quality Wolf Skin
34211^782^Coarse Silk
13779^556^Shadow Wolf Pelt
34212^782^Rough Silk
34213^782^Tacky Silk
13757^555^Puma Skin
12085^555^Medium Quality Cat Pelt
13073^804^Bone Chips
13405^817^Lion Meat
12084^555^Low Quality Cat Pelt
Rejoice. This week I am going to add an option for ninjadvloot to use the advloot system as well.
