My toon attacks correctly the warbringers, disabled framelock, edited correctly the KillMobs.xml, but it just doesn't loot ! It worked perfectly 2 weeks ago before patch, now everything is 'almost perfect', just won't loot... and of course "loot mobs is enabled". Anybody has the same problem ?
have the same problem as sickcore, plugin wont show up in the list and if i try to compile all i get a compiler error, does anyone have a fix for this?
hey guys, I have the framelock disabled now and game no longer get frozen, but still my toon will not move to mob. instead my mob just stand still and do nothing in the air. and if I manually move my toon near the mob it will aggro it. I've tested both the edit from krad and dreams turn out that only problem is to move the toon to the mob. basically, rarekiller will aggro mob for me if I move within 30 yards of rage ( pull range for spell) but will not move from flying to the mob. I check the manual says rarekiller will take over and move to the mob and use default pull spell.. it seems like rarekiller did take control over the toon cos my toon stop flying. but not able to move it. [21:57:13.004 Q] Rarekiller: Find a hunted Mob called Zandalari Warscout ID 69768 [21:57:13.005 D] Rarekiller: Mob Location: 2063.154 / -2240.819 / 240.352 [21:57:13.071 N] Rarekiller: Move to Zandalari Warscout [21:57:13.118 N] Rarekiller: try to Flight to Zandalari Warscout
Rarekiller.cs(736,115) : error CS0117: 'Styx.WoWInternals.World.GameWorld' does not contain a definition for 'CGWorldFrameHitFlags' 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' MyClasses\RarekillerKiller.cs(556,21) : error CS0019: Operator '==' cannot be applied to operands of type 'Styx.WoWInternals.WoWGuid' and 'ulong'
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
Compiler Error: c:\Users\Administrator\Desktop\1\HB_753_1030\Plugins\Rarekiller\Rarekiller.cs(701,115) : error CS0117: “Styx.WoWInternals.World.GameWorld”并不包含“CGWorldFrameHitFlags”的定义 Compiler Error: c:\Users\Administrator\Desktop\1\HB_753_1030\Plugins\Rarekiller\MyClasses\RarekillerKiller.cs(483,66) : error CS0019: 运算符“!=”无法应用于“ulong”和“Styx.WoWInternals.WoWGuid”类型的操作数 Compiler Error: c:\Users\Administrator\Desktop\1\HB_753_1030\Plugins\Rarekiller\MyClasses\RarekillerKiller.cs(486,63) : error CS0029: 无法将类型“Styx.WoWInternals.WoWGuid”隐式转换为“ulong” Compiler Error: c:\Users\Administrator\Desktop\1\HB_753_1030\Plugins\Rarekiller\MyClasses\RarekillerKiller.cs(549,25) : error CS0019: 运算符“==”无法应用于“Styx.WoWInternals.WoWGuid”和“ulong”类型的操作数