Jump to content

Apexx

Premium Seller
  • Content Count

    295
  • Joined

  • Last visited

Everything posted by Apexx

  1. Apexx

    Happy New Year 2021

    Happy new year @Droidz! Thank you!
  2. Perfect! Thank you very much, I will try this out soon.
  3. I was surfing the forums, and Google for about 20 minutes looking for anything to help me figure this out. I am writing a fight class using C#, and Lua. For the first time I ran into a problem where the combatants I was fighting with were immune to my "Devouring Plague" and was left wasting mana, because each mob was immune to diseases. Is there anything to catch such a thing? Thank you! Edit* Mob entity: https://wotlkdb.com/?npc=32400 There's no real information regarding immunizes.
  4. My experience with a quick custom profile to fish the rivers of Howling Fjord. Fisherbot Profile: Apexx_HowlingFjord_Rivers.xml Log File: Pastebin
  5. Not at the moment, but this might be a plugin feature in the near future.......
  6. @maukor I have never tested this for tbc. I may rework this plug-in in the near future.
  7. In Settings -> Advanced Settings -> Other tab, make sure to match your in game latency. This may or may not help. If that doesn't fix it, it sounds like an issue inside the selected Fight Classes.
  8. But.. if anyone needed code for this: Boolean method: internal static bool PlayerKnowShadowWeaving() { return Lua.LuaDoString<bool>(@" local numTabs = GetNumTalentTabs(); for t=1, numTabs do local numTalents = GetNumTalents(t); for i = 1, numTalents do nameTalent, _, _, _, currRank, _ = GetTalentInfo(t, i); if nameTalent == 'Shadow Weaving' and currRank > 0 then return true; end end end" ); } Usage: // Shadow Word: Pain- Only if player
  9. Glad you were able to figure it out. Would you mind editing the post title to, "[Solved] title here". It helps a lot for people searching for similar issues and shows, "Solved". Thanks!
  10. Awesome idea here! I will have a look into it tomorrow and try it out. I will also report any issues and findings and or ideas to the table (so to speak).
  11. Try again after adjusting the following General Settings -> Enter advanced settings... -> Vendor (Selling or Buying) -> Min free bag slots
  12. I am not quite sure if WRobot is able to distinguish between quest objects from any other game object that is interactable. You may need to make a list, or dictionary with quest id, and quest item id.. but you can just compare the nodeNearMe by the name of the object, aka Quest item. var nodeNearMe = ObjectManager.GetObjectWoWGameObject().Where(t => t != null && t.CanOpen).OrderBy(u => ObjectManager.Me.Position.DistanceTo(u.Position)).FirstOrDefault(); if (nodeNearMe != null && nodeNearMe.Name == "Quest Item Name Here" && ObjectManager.Me.Position.DistanceTo(
  13. Version 0.4.10.20

    31 downloads

    Check out the promo video! Tracker++ is a plugin for WRobot that has been in development since 2018 when it’s original release was known as, “WRadar”. Tracker++ will allow the user to use two basic key-binds, [Insert] and [Delete] to add and remove Target object names, or Game Object names to a list in memory (unless the user specifies to keep their lists saved to text files for each character logged in). If the player is near any of the added entities and the settings allow it -- WRobot’s Radar3D will draw lines and circles to the entities’ position from the player’s position.
  14. I have to say that this occurred for me as well when flying the path I had setup for Fishing. Once Pathfinder has a problem finding a direct "route" to the nearest path "node", it will fly up and spiral until the bot is stopped.
  15. I stumbled across a website the other day, while looking for an alternative to Rocketr to process payments, and validate plugins, fight classes, etc. when I found, cryptlex (Powerful software licensing API). Quick Start Using LexActivator with C# After working with the code a bit, I wanted to share a demo project, along with a demo product online, as well as license keys if anyone would like to test it out for themselves. This project may have bugs and may not work 100%. I am hoping if other programmers check out the code they can offer ideas, comments, and even constr
  16. Shadow Priest FC: First time trying it -- [F] 22:04:47 - [RTF] Casting Vampiric Embrace (Vampiric Embrace on Iron Sentinel with guid 17379391465070812334 [F] 22:04:48 - [RTF] Casting Vampiric Embrace (Vampiric Embrace on Iron Sentinel with guid 17379391465070812334 [F] 22:04:50 - [RTF] Casting Vampiric Embrace (Vampiric Embrace on Iron Sentinel with guid 17379391465070812334 [F] 22:04:51 - [RTF] Casting Devouring Plague (Devouring Plague on Iron Sentinel with guid 17379391465070812334 [F] 22:04:53 - [RTF] Casting Vampiric Embrace (Vampiric Embrace on Iron Sentinel with guid 17379391465
  17. Auto-accepts are not built into World of Warcraft on their own. This feature you are talking about sounds like an addon issue.
  18. I was using the Holy Priest FC giving it a try. I don't have a log, sorry.
  19. @Talamin - I have enabled the WRobot setting - Ignore fights when traveling, but your FC seems to ignore this feature and turns to fight..
  20. Perfect! That is all that matters. I lead you into the correct direction. Have a nice day!
  21. I managed to figure it out. C# Code: // Check if Player's reputation earned with a certain faction has reached above ### value wManager.Wow.Helpers.Lua.LuaDoString<bool>(@" for factionIndex = 1, GetNumFactions() do local name, description, standingId, bottomValue, topValue, earnedValue, atWarWith, canToggleAtWar, isHeader, isCollapsed, hasRep, isWatched, isChild, factionID = GetFactionInfo(factionIndex) if name == ""FACTION NAME HERE"" and earnedValue > #### then return true end end "); And inside the Quest Editor Too
  22. I tried to search what is, "NpcMarkerId" and what it refers to. I am trying to figure out if a certain quest has become open and available based whether or not that player's reputation is high enough and the quest is available when interacting with the quest giver. I did not want to hijack an old thread so I made this one. Everything is working just fine, BUT it tried to pick up the second and third parts of the quests that are not yet available (because low rep) and will sit there for minutes before continuing. I even set the Settings: Skip 'PickUp' quest after (sec) to 8 in hopes it wou
  23. Hey it seems "Heal IC" is disabled, but yet it still healing in combat...
×
×
  • Create New...