Everything posted by Marsbar
-
[PAID] [PVE] [RAID] Beastmaster - Hunter - 1-60 - Vanilla(1.12.1) by Ordush
You could capture the error that pops up in the middle of your screen and act upon that. There's a few examples on an error message handler on the forums.
- 166 comments
- 6 reviews
-
[Free] Lbniese Rogue - 1-60 Combat Fightclass (Vanilla, TBC)
@Lups is likely using a version of pfUI which causes this, this is unlikely to do with your fightclass at all.
-
Better / Less Suspicious Following for Party Mode?
This may help, if you run it on your followers.
-
Cast buff on nearby, friendly players (not in party)
Untested but, c# condition: ObjectManager.GetObjectWoWPlayer().Where(x => x.PlayerFaction == ObjectManager.Me.PlayerFaction && !x.HaveBuff("Mark of the Wild") && x.GetDistance2D < 40).Count() > 0 Not Spell is C# Code - True in spell settings: Interact.InteractGameObject(ObjectManager.GetObjectWoWPlayer().Where(x => x.PlayerFaction == ObjectManager.Me.PlayerFaction && !x.HaveBuff("Mark of the Wild") && x.GetDistance2D < 40).FirstOrDefault().GetBaseAddress); SpellManager.CastSpellByNameLUA("Mark of the Wild"); Again.. completely untested. Might work for you. Also you'd want to add another condition to make sure you only do this out of combat. Edit: As a side note, I saw that in the fightclass editor there is a Optional General Setting called Additional C# code we could add a function in there which can be used in the conditions/spells and make it more clean. We could add: public List<WoWPlayer> GetUnbuffedFriendlies(string buffname) { return ObjectManager.GetObjectWoWPlayer().Where(x => x.PlayerFaction == ObjectManager.Me.PlayerFaction && !x.HaveBuff(buffname) && x.GetDistance2D < 40).ToList(); } Then in the condition and spell we can do things like - Condition: GetUnbuffedFriendlies("Mark of the Wild").Count() > 0 and spell: Interact.InteractGameObject(GetUnbuffedFriendlies("Mark of the Wild").FirstOrDefault().GetBaseAddress); SpellManager.CastSpellByNameLUA("Mark of the Wild"); Once again though... its all sudo code and is untested...
- Ghosty
-
Buying at vendor
C# code: wManager.Wow.Helpers.Vendor.BuyItem("Skinning Knife",1);
- Ghosty
- Ghosty
-
Discord Channel?
It's your addons, do a search you'll find this issue has been answered quite a few times
-
LUA Errors
yeah just get the latest one from your sellify link when you bought it
-
LUA Errors
Old version of Arch's quester which used to put a frame in the middle of your screen Edit: You can also go to Interface options -> help and there you can disable the showing of lua errors.
-
move back if... add code in fightclass editor
Ah cool, didn't know the PathFinder was that heavy, performance always seems to be the last thing I think about
-
move back if... add code in fightclass editor
I say you do it the LoS way with TraceLine, you wouldn't want to walk around a wall and then not be able to shoot your target right? Because the result success would give you a true if it can make a path even if that means going around a wall. Then if you don't have LoS adjust your vector either direction until you do, sort of how I explained here: https://wrobot.eu/forums/topic/7507-solved-move-after-frost-nova-is-it-really-that-hard/?do=findComment&comment=34304 THEN to make it even better check if there are hostiles where your path will go and adjust again. Maybe also add a failsafe so that if it cannot find a path, stay in melee? It's what a legitimate user would do too rather than run into other mobs.
- [Free] Operator - Multiboxing & Multiboxing Assistance Plugin
-
Doppelt abzocken?
Omg, das ist auf jeden meine lieblings vergleichung ever.
-
RecipeSniper
Ah I see what you mean, I'll add it to the things I may add.
-
RecipeSniper
Sorry I'm not sure what you mean. Go to the the vendor every so often inbetween doing some grinding?
-
RecipeSniper
- 96 downloads
- Version 1.0.1
Another super simple plugin. It will attempt to buy any item from the list that you set, every "Buy Interval" which you can set. Probably best to do this with wrotation, without setting a fightclass. The idea behind it is to leave your char afk with the vendor frame open for a limited availability recipe you want and it will buy it as soon as it comes into stock. Things I may add: Only buy up to X amount of an item Mail items in item list to X char then return to vendor Move to a safe place until you want to recheck if limited supply item is available DISCLAIMER: If you add in an item that is ALWAYS in stock it will buy 1 of it every buy interval meaning it will drain your gold until your inventory is full or you are out of gold. I am not responsible for what you add into the snipe list. Again, this is a .cs file, edit what you want in your fav text editor. Note: I created this because on vanilla i needed a limited supply recipe and it was extremely overpriced on the AH. Please don't overuse this and ruin it for everyone. -
AggroMonitor
- 91 downloads
- Version 1.0.0
Super simple plugin which draws a circle underneath mobs that you dont have aggro from and from that mob a line is drawn to the person that has aggro. It's meant for tanks to easily see when a non-tank has aggro and can pick up the lost aggro. It has some basic settings: 3 Tank names that it will not trigger for if they have aggro Range to search in I'll add a screenshot later. I've not done much testing, let me know if anything is borked. It's a .cs file so open it up in notepad++ and edit what you want! -
Pugin that stands up when you sit down.
Probably reached the end of a question profile where it then went afk (and sat down), a buff ran out and it tried to spam cast it. @xj3r3myx Can i ask the reason as to why you want a plugin for this?
-
Utterly frustrated
I totally understand your frustrations but the bot as a whole is great! Pretty much all of the issues you're explaining can be solved (and have) by people, whether that be via a plugin, fightclass or advanced profiles. The problem is finding all of that information, a wiki doesn't exist so you need to do a lot of forum searching. Another option is raising your questions on discord.
- Ghosty
-
Eating & Water
I dont see the issue here, you can't eat/drink in water in vanilla wow so it will just wait until it reaches your reg values.
-
Error?
You did not install the Humanmasterplugin correctly.
-
Freezing up
A bit of searching would have brought up the probable resolution. It's your addons. After WRobot gets past a certain amount of addon memory it does a reload ui. One of the threads: