Jump to content

nax

Members
  • Posts

    106
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    nax got a reaction from reasxd in [Refund being processed?]   
    it means a refund is being processed. using a credit card, their is a 3-7 business day process with refunds.
     
  2. Like
    nax reacted to Droidz in License Key is not working for Legion 7.3.5 (26124)   
    Hello, the problem should sovled
  3. Like
    nax reacted to cyb33 in Question: How to automatically remove gray quests that give little XP faster Wholesome Auto Quester   
    Hi,
    I'm currently using Wholesome Auto Quester and was wondering if there’s a way to automatically remove gray quests (those that give very little or no XP). These quests tend to clutter the quest log and slow down leveling efficiency.
    Is there an existing feature or method in Wholesome to handle this automatically? If not, is it possible to create a plugin to manage this functionality? Any suggestions or tips on how to achieve this within the current framework? I’ve looked at the source code and found the "Add to BL" function, but I’d prefer not to modify the core directly if there’s a better approach.
    Any help or advice would be much appreciated!
    Thanks!
  4. Like
    nax reacted to Zer0 in Question: How to automatically remove gray quests that give little XP faster Wholesome Auto Quester   
    It has an option called level delta which lets you decide the range of quest levels you want to do. Low level/obsolete quests are automatically abandoned by the product.
  5. Like
    nax reacted to cyb33 in Question: How to automatically remove gray quests that give little XP faster Wholesome Auto Quester   
    thank you so much works 100 times better now than before I blacklisted manually xd😀😁🍁
  6. Confused
    nax got a reaction from Krakenmode in Warmane Onyxia Realm   
    Update:
    Warmane utilizes an RCE exploit to enable the loading of custom content. Additionally, they run a modified Warden system. I'm currently investigating the extent of these modifications. Further updates to follow.
  7. Like
    nax reacted to Droidz in How can I tell the relogger stop profile, when bags is full   
    Hello, try this WRobot plugin :
    using System; using robotManager.Helpful; using wManager.Plugin; using wManager.Wow.Helpers; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; while (_isLaunched) { CheckBags(); } } private void CheckBags() { if (Conditions.InGameAndConnectedAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && Bag.GetContainerNumFreeSlots == 0) { Logging.Write("Bags are full, stopping profile."); wManager.Wow.Memory.WowMemory.CloseHookedProcess(); // Close game Environment.Exit(-20); // Exit code -20 stops relogger profile } } public void Dispose() { _isLaunched = false; } public void Settings() { Logging.Write("No settings available."); } }  
    Main.cs
  8. Like
    nax reacted to Droidz in Beginner in Lua (first script)   
    Hello,
    Your code can't work it doesn't have the good structure.
    Here is some code with a correct structure (although I don't think it works, it would need to be debugged):
    using System.Collections.Generic; using System.Threading; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using wManager.Wow.Enums; public class Main : wManager.Plugin.IPlugin { public void Initialize() { EventsLuaWithArgs.OnEventsLuaStringWithArgs += OnAuctionHouseShow; } private void OnAuctionHouseShow(string eventName, List<string> args) { if (eventName == "AUCTION_HOUSE_SHOW") { Logging.WriteDebug("Auction House is open"); Thread.Sleep(5000); SellGreenItems(); } } public void SellGreenItems() { foreach (WoWItem item in Bag.GetBagItem()) { if (item.GetItemInfo.ItemRarity == (int)WoWItemQuality.Uncommon) { Logging.WriteDebug($"Selling {item.Name}"); Bag.PickupContainerItem(item.Name); Thread.Sleep(1500); AuctionHelpers.StartAuction(50000, 50000, AuctionHelpers.Duration._12H, 1, 1); //Lua.LuaDoString($@"StartAuction(50000, 50000, 12, 1);"); } } } public void Dispose() { EventsLuaWithArgs.OnEventsLuaStringWithArgs -= OnAuctionHouseShow; } public void Settings() { } }  
  9. Thanks
    nax got a reaction from Pudge in How to read packets?   
    not gonna lie, would be awesome if @DroidzAdd a Asm DetourHook class to wrobot so we can hook functions and have more control over wow. but i know he is using Break points and i dont know if having asm hook will mess with break points.
     
    @Pudgei wrote my own packet sniffer for wow in c++ (its not public) if you want to message me, i can let you use a copy of it. 
     
  10. Like
    nax got a reaction from 5avage in Addons   
    No.
     
  11. Like
    nax got a reaction from Pudge in PathFinder Error   
    looks like a socket problem
     
  12. Like
    nax reacted to Matenia in FNV's Flightmaster and quest profile source code   
    Dear community,
    I just found, I still have access to some workspaces via bitbucket (where I barely ever log in).
    Therefore, I'm sharing the original source as it was last commited by him here. I don't know if it's different from what was already uploaded or anything. That's why I'm sharing it in the developer forums and not plugins/quester.
    Last commits are from early 2018.
    mxsbt-vanillaflightmaster-dbcc4a5bd0e7.zip fnv316quester-quester-1-40-71d751b8482d.zip
  13. Like
    nax got a reaction from jiraiyasm in IsTaggedByOther   
    Simple google search : https://www.google.com/search?q=wrobot+Face+target&rlz=1C1CHBF_enUS1022US1022&oq=wrobot+Face+target&aqs=chrome..69i57.3199j0j7&sourceid=chrome&ie=UTF-8
     
  14. Like
    nax got a reaction from leleleke in AH Bot   
    Yes.
  15. Confused
    nax got a reaction from lsabakal in need some help with lua   
    Im patently wait to see if anyone is gonna tell this guy he is using c# and not lua?
  16. Thanks
    nax got a reaction from libai in How to avoid boss AOE in fight ?   
    i found this, Might help. use google next time. https://github.com/Talamin/Wholesome-Dungeon-Crawler/blob/master/States/AvoidAOE.cs, also i do not know if wrobot ObjectManager has this type of info but Aoe ability's and ground effect can be found as Dynamic Game Objects. Here is the code for creating your own function using wrobot Descriptors, https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/300463-wow-3-3-5-12340-info-dump-thread.html
     

  17. Thanks
    nax reacted to Zer0 in How to avoid boss AOE in fight ?   
    The  reason your character only moves a little step is because you're still on the fight thread, so your code only executes for one fight loop iteration. The next iteration, you're back on the normal fight loop which forces you to get in your fight class range.
    There are two ways I know to prevent this.
    1 - Lock the thread in your method. Which in your case would mean calling MovementManager.Go(pathList); and the next line, lock the thread in a while (MovementManager.InMovement) loop. I wouldn't necessary recommend this, because you're blocking the entire fight loop and you will need mutliple conditions to set it right.
    2 - Cancel the fight event. This is my preferred option, but it's more complicated to set up. The code Nax has linked you is one I've written. It uses a manager that listens to multiple events.
    On the ObjectManagerEvents.OnObjectManagerPulsed event, I check and record a list of all the AOEs present in the object manager range.
    On MovementEvents.OnMovementPulse and MovementEvents.OnMoveToPulse I make sure I don't walk into an AOE, and make sure I never cancel an escape
    On FightEvents.OnFightStart, I make sure I don't start any fight during an escape
    This code doesn't really fit your need, because it avoids AOEs that stand on the ground (like a puddle of poison), and uses a "grid" to look for a safe position. In your case, you react to a single action.
    What you need to do is:
    - Detect the moment you need to escape.
    - Cancel the current fight, using cancelable.Cancel = true;
    - Calculate a safe route.
    - Turn an escape flag to true (a simple boolean)
    - Make sure you don't start a new fight during the escape using your flag
    - Turn back the flag to false when your safe condition is met
  18. Like
    nax reacted to Droidz in 10-year anniversary   
    Happy New Year to all !

    I'm excited to start another year and look forward to continuing to serve you with WRobot.

    This year marks a special milestone for us as we celebrate the 10-year anniversary of WRobot. 
    I'm grateful for your support and look forward to many more years of success together. 

    Thank you for choosing WRobot, and I hope you have a happy, healthy, and prosperous new year!

    View full article
×
×
  • Create New...