What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Item Rules doesn't handle

Lzaisgoed

New Member
Joined
Feb 13, 2013
Messages
77
Reaction score
0
updated trinity to the latest version now i get this errors:


[Trinity] Item Rules doesn't handle Buckle Conclave of type Belt and quality Rare5!
[Trinity] Item Rules doesn't handle Draining Sentry of type HandCrossbow and quality Rare6!
[Trinity] Goblin #3 in sight. Distance=84
[Trinity] Item Rules doesn't handle Avaricious Ascended Armor of Glory of type Chest and quality Magic2!
[Trinity] Item Rules doesn't handle Runner's Remnant of type Legs and quality Rare5!
[Trinity] Item Rules doesn't handle Northern Banner of type Polearm and quality Rare4!
[Trinity] Found Object 210763!
 
updated trinity to the latest version now i get this errors:


[Trinity] Item Rules doesn't handle Buckle Conclave of type Belt and quality Rare5!
[Trinity] Item Rules doesn't handle Draining Sentry of type HandCrossbow and quality Rare6!
[Trinity] Goblin #3 in sight. Distance=84
[Trinity] Item Rules doesn't handle Avaricious Ascended Armor of Glory of type Chest and quality Magic2!
[Trinity] Item Rules doesn't handle Runner's Remnant of type Legs and quality Rare5!
[Trinity] Item Rules doesn't handle Northern Banner of type Polearm and quality Rare4!
[Trinity] Found Object 210763!

This has no impact on the handling of the items.. At least when I last checked. There's an if clause which checks if the item that dropped is Magic1 or higher.. If so -> Log / Error it..

EDIT:
Code:
// TODO: remove if tested
if (item.Quality > ItemQuality.Superior)
      Logger.Log(TrinityLogLevel.Info, LogCategory.UserInformation, "Item Rules doesn't handle {0} of type {1} and quality {2}!", item.Name, item.DBItemType, item.Quality);
 
Last edited:
Back
Top