• Visit Rebornbuddy
  • [Plugin] Rarekiller 3 RELOADED

    Discussion in 'Uncataloged' started by katzerle, May 19, 2013.

    1. Cny1994

      Cny1994 New Member

      Joined:
      Nov 2, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      1
      I got that problem too, and i'm not sure how to fix it.. any help would be appreciated
       
    2. deams

      deams Community Developer

      Joined:
      Oct 20, 2014
      Messages:
      714
      Likes Received:
      25
      Trophy Points:
      0
      Waiting for a reply from the author to know if he agrees to someone else taking care of the plugin.
       
    3. Cny1994

      Cny1994 New Member

      Joined:
      Nov 2, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      1
      Could be awesome if he did agree
       
    4. telefony

      telefony New Member

      Joined:
      Jan 9, 2011
      Messages:
      156
      Likes Received:
      0
      Trophy Points:
      0
      Yeah would be awesome
       
    5. casis

      casis New Member

      Joined:
      May 26, 2014
      Messages:
      7
      Likes Received:
      0
      Trophy Points:
      0
      its cuz of 6.0.2 like addons, plugin need to update too. any chance someone get this to work
       
    6. Vect0r

      Vect0r New Member

      Joined:
      Dec 13, 2011
      Messages:
      50
      Likes Received:
      1
      Trophy Points:
      0
      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 ?
       
    7. aigi

      aigi New Member

      Joined:
      Oct 27, 2014
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0
      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?
       
    8. vcreation

      vcreation Member

      Joined:
      Nov 17, 2013
      Messages:
      261
      Likes Received:
      1
      Trophy Points:
      18
      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
       
      Last edited: Oct 29, 2014
    9. Acps

      Acps New Member

      Joined:
      Dec 24, 2011
      Messages:
      347
      Likes Received:
      0
      Trophy Points:
      0
      Can anyone update this?
       
    10. grinder

      grinder Member

      Joined:
      Apr 29, 2010
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      6
      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'
       
    11. grinder

      grinder Member

      Joined:
      Apr 29, 2010
      Messages:
      52
      Likes Received:
      0
      Trophy Points:
      6
      steps for smart people how to get it working again :p

      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 ;)
       
    12. Asphodan

      Asphodan Member

      Joined:
      Jan 15, 2010
      Messages:
      286
      Likes Received:
      4
      Trophy Points:
      18
      Which version did you modify, grinder?

      RK3? RK4.10? RK4.11?
       
    13. Madcatz

      Madcatz Member

      Joined:
      May 17, 2011
      Messages:
      752
      Likes Received:
      7
      Trophy Points:
      18
      or why not upload the modified ver an let the author know u will give credit
       
    14. yinyu78

      yinyu78 New Member

      Joined:
      Oct 15, 2014
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
      兄弟加载不上这插件
       
    15. yinyu78

      yinyu78 New Member

      Joined:
      Oct 15, 2014
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
      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”类型的操作数
       
    16. yinyu78

      yinyu78 New Member

      Joined:
      Oct 15, 2014
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
    17. yinyu78

      yinyu78 New Member

      Joined:
      Oct 15, 2014
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
      更新下啊,用不了
       
    18. powery

      powery Member

      Joined:
      Oct 8, 2012
      Messages:
      130
      Likes Received:
      3
      Trophy Points:
      18
      please update
      no i didnt understand grinder guide im stupid
       
      Last edited: Oct 31, 2014
    19. juice99

      juice99 New Member

      Joined:
      Aug 23, 2014
      Messages:
      70
      Likes Received:
      0
      Trophy Points:
      0
      I am not smart :( could you please upload the edited file? Thanks so much
       
    20. yinyu78

      yinyu78 New Member

      Joined:
      Oct 15, 2014
      Messages:
      28
      Likes Received:
      0
      Trophy Points:
      0
      please update Rarekiller 3 RELOADED
       

    Share This Page