mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2025-10-13 16:34:22 -05:00
Bag crashes upon hover. Need to debug.
This commit is contained in:
@@ -54,5 +54,7 @@ namespace diablo2 {
|
||||
//D2Game.0x6FC4A660
|
||||
static int32_t __fastcall D2GAME_Transmogrify_6FC4A660(structures::game* pGame, structures::unit* pPlayer, structures::unit* pItem);
|
||||
|
||||
static diablo2::structures::unit* __fastcall diablo2::d2_game::QUESTS_CreateItem(diablo2::structures::game* pGame, diablo2::structures::unit* pPlayer, uint32_t dwCode, int32_t nLevel, uint8_t nQuality, int32_t bDroppable);
|
||||
|
||||
};
|
||||
}
|
||||
|
@@ -25,6 +25,19 @@ namespace diablo2 {
|
||||
struct quest_record;
|
||||
struct npc_record;
|
||||
|
||||
enum D2C_ItemQualities
|
||||
{
|
||||
ITEMQUAL_INFERIOR = 0x01, //0x01 Inferior
|
||||
ITEMQUAL_NORMAL = 0x02, //0x02 Normal
|
||||
ITEMQUAL_SUPERIOR = 0x03, //0x03 Superior
|
||||
ITEMQUAL_MAGIC = 0x04, //0x04 Magic
|
||||
ITEMQUAL_SET = 0x05, //0x05 Set
|
||||
ITEMQUAL_RARE = 0x06, //0x06 Rare
|
||||
ITEMQUAL_UNIQUE = 0x07, //0x07 Unique
|
||||
ITEMQUAL_CRAFT = 0x08, //0x08 Crafted
|
||||
ITEMQUAL_TEMPERED = 0x09 //0x09 Tempered
|
||||
};
|
||||
|
||||
enum class unit_type_t : int32_t {
|
||||
UNIT_TYPE_PLAYER = 0,
|
||||
UNIT_TYPE_MONSTER = 1,
|
||||
|
Reference in New Issue
Block a user