Everything posted by Zan
-
Pre-sale questions
I've farmed Vash, but I've never made or used a quest file for there.
- ICustomProfile Vendoring Issue!
-
Vashj'ir Swimming while gathering herbs
I know exactly what you're talking about. Adjusting the distance between points would be great to add to the recording. Currently the only one that gives that option is Follow Path under Quester. For now you could just manually click the record button on and off then move to a further location rinse and repeat. It takes much longer to make but it does look less bottish.
-
customne scripts
click yes or okay. It's just a warning the first time you use a custom script.
- ICustomProfile Vendoring Issue!
-
ICustomProfile Vendoring Issue!
I'm writing an ICustomProfile and when it comes time to vendor it's not vendoring. I have: Fsm.AddState(new ToTown { Priority = 4}); if (Bag.GetContainerNumFreeSlots <= 35) { wManagerSetting.CurrentSetting.MinFreeBagSlotsToGoToTown = 35; ToTown.ForceToTown = true; Others.Wait(2000); ToTown.ForceToTown = true; Others.Wait(2000); wManagerSetting.CurrentSetting.MinFreeBagSlotsToGoToTown = 2; } If I click "Go to town" under Other Tools it shows in my log: You have disabled the forcing bot at go to town. I have nothing in my profile to disable it, so I'm wondering, how do I enable it?
-
"Hostile Unit Near" in Lua?
it's referring to units including the target.
-
Custom Profile Settings question?
I actually have two questions: 1. Is it possible to add a settings menu to a Custom Profile? 2. @Droidz is it possible to add .dll to Custom Profiles in addition to .cs? Or request in the future it will be added to Custom Profile selection?
-
Force bot to take a "break"
Did you try Others.Wait(20000) ?
- 100-110 questing profile
- 100-110 questing profile
-
use heal spell instead of regeneration
Raise the percent, next to it, higher to where you want it.
-
Convert .cs to .xml for "fixing"
Yes. But I'd suggest notifying the Dev who wrote the .cs
- Talent Check?
-
Nedd WR Version for 7.1.5 (23420)
Click the Download WRobot tab and you'll find it. But you need a paid subscription for live servers not private.
-
Looking to buy Wrobot
Is there paided 1-110 profiles for leveing and grinding ? Yes & No. Nothing from 1-110. Will that be enough or are these profiles complex? Yes, it should be enough. It's easy to make gathering profiles with the use of built in tools. You can also import hotspots from other companies profiles. Also does this Bot have addons like HB does ? Yes it has addons but not the same format.
-
buy unlimited Wrobot
About WRobot Unlimited Subscription Gives you an access to WRobot and all its products, unlimited WRobot session on the same network (ip). - WRobot's Unlimited Session subscription entitles you to run as many WRobot Sessions as your computer is able to (restricted to one public IP address (internet ip)). You may Bot as many characters at one time as your single computer allows. - If you have any problems with, or need more information about your purchase, you can contact the WRobot Team. - After you complete your purchase, you can find your license key here. - At the end of subscription time, new invoice is automatically generated, but you are not forced to pay (payment is not automatically renew, you need to paid manually). - You can download WRobot here. - Works with all available version of WRobot (also works on private servers). 39.99 EUR per year 49.99 EUR per 10 years
- buy unlimited Wrobot
-
Rogue stealth until regen is done after death
I'm just throwing this idea out there and have never tried it. You could modify the fight class for your needs or you could try changing the Food/Drink setting to Use a spell "Stealth" for the Food setting and give it a high percentage. I've done that with heal spells but never in this way. I'm curious if it would work.
-
Bot skips waypoints
You did try putting Reset> GoTo14th then Pulse> GoTo14th correct?
-
Jump more often and NO to jumping in combat and on-the-way to gathering?
Is the built in one not working anymore?
-
waiting for admin to activate account
No keys under My Purchases?
- Set a relogger to start on time?
-
Can i use routine from another bot software
No you can't. It would need to be rewritten.
-
C# and Starting Combat Rotation
I wrote a questing profile in C# and it will not engage in combat when in combat at the end of what I wrote. What am I missing? wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; wManager.Wow.Bot.Tasks.MountTask.Mount(); wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(Xf, Yf, Zf)); wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(Xf, Yf, Zf)); wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(Xf, Yf, Zf)); wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; wManager.Wow.Bot.Tasks.MountTask.DismountMount();