Everything posted by FNV316
-
Eat / Drink Problems
Please share your log file
-
AutoDismount
- 199 downloads
- Version 1.0.0
Pretty simple plugin: Will dismount the player, when the range to the bots current destination is below the value set in the plugins settings. I use it in my quester profiles for bots that have access to mounts, so they don't mindlessly charge to a quest objective while being mounted, pull a dozen of mobs in the process, dismount when standing directly before the objective and just die to the group of mobs still following. Also works with Druids Travel Form. -
@Eeny
Well, seems like eeny doesn't expect you to use wand below level 10. The wand spam should however be prevented by putting it to the action bar. The line ' !Lua.LuaDoString<bool>("return IsAutoRepeatAction(" + (SpellManager.GetSpellSlotId(SpellListManager.SpellIdByName("Shoot")) + 1) + ")") ' is used to determine if wand attack is currently active / channeled or not What you can try is to increment the latency settings in wRobot and / or add a "Thread.Sleep(Usefuls.Latency + 250);" command (you might have to tinker around with the values a bit), after the SpellManager.CastSpellByName. It's also possible, that this specific Lua function doesn't work properly on the server / game version you are trying to run it
-
@Eeny
Make sure to put the "Shoot" spell in your action bar
-
Quest with same name
Don't waste your time trying to work with wRobots automatic taxi system in your profiles. Rather script necessary flights like shown here: Working quester example for Auberdine Flight Master: Auberdine.xml
-
help
Mine. You can just ignore these errors, they do nothing
-
Maria's Last Wish Quest I am stuck Help!
You have to split the quest up. First part is to kill and loot the NPC. After that has been completed, make a follow path quest to the grave and execute the RunCode step. You might need a custom complete condition for the kill & loot quest like this: return Quest.IsObjectiveComplete(1, 6395) || ItemsManager.GetItemCountById(16333) > 0; Returns true, if the quest objective has been completed or your bot has Samuel's Remains in his inventory
-
Know if already did a quest
- Know if already did a quest
Hey, int questID = 123; Quest.GetQuestCompleted(questID); if(Quest.GetQuestCompleted(questID)) { doStuff(); } Note: This checks your bots list of finished quest ids, not if the quest has been completed on the servers side (what you can't detect)- WRobot doesn't use the recorded path
Make sure to set the follow path quest to "Not required in quest log" -> true- FNV316 1-45 Quester Profile Pack Alliance Vanilla
Yeah, exactly. Hunters quivers count as free bag space for wRobot, so undressing the ammo bag is the easiest way, with the least amount of downsides. Thanks for your feedback about the instructions, will try to to write it clearer- 85 comments
- 10 reviews
- FNV316 1-45 Quester Profile Pack Alliance Vanilla
- 85 comments
- 10 reviews
- FNV316 1-45 Quester Profile Pack Alliance Vanilla
- 85 comments
- 10 reviews
- Is complete condition
return wManager.Statistics.Stucks > 4;- A lvl 1 invite my bots, what is this ?
Modified time values, so it fires right away. But be aware that it can decline other popups as well. It's only a workaround Auto Decline MOD.cs- [FREE] 1-18 Alliance Quest Profile: Elwynn & Westfall
Quests are skipped after 120 seconds (by default), if the bot is unable to pick up that quest. So as a workaround, just let the bot run for a few minutes. The demo quester is overall outdated and needs a major update, I'm aware of that. However, that has to wait until the 1-60 version has been truly finished- FNV316 1-45 Quester Profile Pack Alliance Vanilla
Yes, it'll be released within the upcoming days in a early beta state and fixed over the following days / weeks. Depends on how fast users get through- 85 comments
- 10 reviews
- Demon / Affliction lock 1-60 by Eeny
It's just that one line, that pauses the bot. I think this line has been added recently, at least my version of it from half a year ago doesn't have it. Probably to avoid the bot continuing without summoning a pet after resurrect Yes, something like that. I have the impression that it misses the part where the bot is unpaused, so it just remains in pause. Or am I wrong?- 90 comments
- 10 reviews
- Demon / Affliction lock 1-60 by Eeny
@eeny Seems like this recently added line causes issues. Got several reports about Warlocks pausing randomly and refusing to continue. Removing the "Products.InPause = true" solved it //try waiting around if no pet?? if (!ObjectManager.Pet.IsValid && SummonImp.KnownSpell && !ObjectManager.Me.IsDeadMe && !ObjectManager.Me.IsMounted) { Thread.Sleep(1000); Products.InPause = true; } Pauses the bot, but there is no code to break pause again- 90 comments
- 10 reviews
- Please enter your ID faster, restart the bot now
Try to figure out which product exactly is causing that issue and contact the related seller (like me, I use that authentication system in my Quester product). It's not related to wRobot itself- Auberdine broken mesh & StuckResolver not triggering
Bot is unable to make his path through the the largest building in Auberdine (screenshot attached) and gets stuck at the well and the two benches in the middle. StuckResolver does not trigger, leading to bots running their faces into the well for hours straight. Occurred repeatedly for several users, after speaking to Thundris Windweaver (https://classicdb.ch/?npc=3649)- vendor sell items list
Well, you are welcome to create one ?- WTB private bot for officiel
There is none. If someone tries to sell you one, it's scam- vendor sell items list
Hey, there is no "sell items list". There is only a "DoNotSellList". Which depends on your level, class, setup and personal preference, so nothing you can really share. WRobot automatically sells any items which rarity you enabled within vendor settings, besides them added to the DoNotSellList- enemy pets
Hey, General Settings -> Enter advanced Settings -> Class / Fight Class -> Ignore combat with all pets (will ignore combat with companions of NPCs and other players) - Know if already did a quest