steps for smart people how to get it working again
Rarekiller.cs(736,115) : error CS0117: 'Styx.WoWInternals.World.GameWorld' does not contain a definition for 'CGWorldFrameHitFlags'
Replace CGWorldFrameHitFlags with TraceLineHitFlags.None in that line
MyClasses\RarekillerKiller.cs(490,70) : error CS0019: Operator '!=' cannot be applied to operands of type 'ulong' and 'Styx.WoWInternals.WoWGuid'
MyClasses\RarekillerKiller.cs(493,59) : error CS0029: Cannot implicitly convert type 'Styx.WoWInternals.WoWGuid' to 'ulong'
that code is just logging messages and counting your pulls
remove or comment out the following lines in Rarekillerkiller.cs
//if (Enemy.Entry != 32491 && Enemy.Entry != 50005 && (Rarekiller.Settings.GuidCurrentPull != Enemy.Guid) && Me.Combat)
//{
// Rarekiller.Settings.PullCounter = 1;
// Rarekiller.Settings.GuidCurrentPull = Enemy.Guid;
// Logging.Write(Colors.MediumPurple, "Rarekiller: Pulled {0} now first time", Enemy.Name);
//}
change the following "else if (Me.Combat)" to "if (Me.Combat)"
MyClasses\RarekillerKiller.cs(556,21) : error CS0019: Operator '==' cannot be applied to operands of type 'Styx.WoWInternals.WoWGuid' and 'ulong'
that code is just logging messages and counting your pulls
if (Enemy.Guid == Rarekiller.Settings.GuidCurrentPull)
{
Rarekiller.Settings.PullCounter = 0;
Rarekiller.Settings.GuidCurrentPull = 0;
Logging.WriteDiagnostic(Colors.MediumPurple, "Rarekiller: Set PullCounter to {0}", Rarekiller.Settings.PullCounter);
}
comment this out aswell or delete the code
havent done any testing yet
the only change affecting functionality may be the first one in rarekiller.cs
it checks for water bodies not to land on - but that part is unaffected - i honestly dont know what i might use traceline hitflags for but im guessing it wasnt used before aswell since there was no flag with CGWorldFrameHitFlags - but since there is no "api" changelog i cant look that up