Index: include/item_table.php =================================================================== --- include/item_table.php (revision 29) +++ include/item_table.php (working copy) @@ -50,6 +50,7 @@ define('ITEM_FLAGS_CONJURED', 0x00000002); define('ITEM_FLAGS_OPENABLE', 0x00000004); define('ITEM_FLAGS_WRAPPED', 0x00000008); +define('ITEM_FLAGS_HEROIC', 0x00000008); define('ITEM_FLAGS_WRAPPER', 0x00000200); // used or not used wrapper define('ITEM_FLAGS_PARTY_LOOT', 0x00000800); // determines if item is party loot or not define('ITEM_FLAGS_CHARTER', 0x00002000); // arena/guild charter @@ -285,6 +286,10 @@ // Вывод имени echo ''.$item['name'].''; + // Heroic item (green) + if ($item['Flags']& ITEM_FLAGS_HEROIC || ((isset($item['itemset']) && $item['itemset'] > 0 && $item['Flags'] == 4104)) ) + echo ''.$game_text['item_heroic'].''; + if ($item['area']) echo ''.getAreaName($item['area']).''; @@ -300,7 +305,7 @@ if ($item['Flags' ]& ITEM_FLAGS_OPENABLE) echo ''.$game_text['right_click'].''; // - + // Вывод уникальности вещи if ($item['maxcount']==1)echo ''.$game_text['unique'].''; if ($item['maxcount'] >1)echo ''.$game_text['unique'].'('.$item['maxcount'].')'; Index: lang/game_text.en.php =================================================================== --- lang/game_text.en.php (revision 29) +++ lang/game_text.en.php (working copy) @@ -620,5 +620,6 @@ 'talent_req_points'=>'Require points in tree', 'other_faction'=>'Other', +'item_heroic'=>'Heroic', ); ?> \ No newline at end of file Index: lang/game_text.ru.php =================================================================== --- lang/game_text.ru.php (revision 29) +++ lang/game_text.ru.php (working copy) @@ -618,6 +618,7 @@ 'talent_next_rank'=>'Следующий ранг:', 'talent_req_points'=>'Требует талант(ов) в ветке ', -'other_faction'=>'Остальные' +'other_faction'=>'Остальные', +'item_heroic'=>'Героический', ); ?>