-
Posts
472 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Arcangelo
-
Hello fellow botters. I have started creating Outland xp rate 1, and need someone to run some chars though the areas (minimum 2), and report any stuck/bugs/errors that could be. I need someone with some + Wrobot experience, as I don't wanna explain all the basis stuff + I expect you to have your own fightclass. The bot will follow zygors tbc guide, for fastest possible leveling. - don't expect it to be done "really fast" as I need to maintain and upgrade, my vanilla profiles as well :-) and I won't send you more than 1 zone at the time, but you will ofc recive the full profile for free when it is done. The first zone is almost ready for testing. Send me a pm if you are interested //arcangelo
-
Use spirit healer under condition
Arcangelo replied to mael's topic in WRobot for Wow The Burning Crusade - Help and support
Hmm - I guess you should make it an open if while statement. If -> check if you are ghost. While -> check the time spend as ghost (let's say 300000ms) While -> distance to spirit healer (you are in range for resurrection) Run code -> resurrection- 2 replies
-
- ressurection
- spirit healer
-
(and 1 more)
Tagged with:
-
Runcode - Have x items
Arcangelo replied to Arcangelo's topic in WRobot for Wow The Burning Crusade - Help and support
got it to work thanks :) -
Runcode - Have x items
Arcangelo replied to Arcangelo's topic in WRobot for Wow The Burning Crusade - Help and support
Running it like that. Also tested: wManager.Wow.Helpers.ItemsManager.GetItemCountByNameLUA(Boiled Blood) == 12; wManager.Wow.Helpers.ItemsManager.GetItemCountByName(Boiled Blood) == 12; wManager.Wow.Helpers.ItemsManager.GetItemCountById(30430) == 12; Yea checked the name with the helper tool -
Totally agree with @camelot10 on this. We really need a forum moderator to clean it up, before this turns into a even more wild place.
-
Hunter - ammo bags / loot and buying ammo
Arcangelo replied to Showboat's topic in WRobot for Wow Vanilla - Help and support
Just make an open while statement - like: If ObjectManager.Me.Level > xxxx While wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(xxxxx) < xxxxx; Runcode: Var npc = new Npc{Entry = xxxx,Position = new Vector3(Xxxxx, xxxxx, xxxx),Type = Npc.NpcType.Vendor};int itemId = xxxx;if (GoToTask.ToPositionAndIntecractWith(npc)){Vendor.BuyItem(ItemsManager.GetNameById(itemId), xxxxx);}return true; And end if ObjectManager.Me.Level <= xxxx And make a go to step, to make it a loop? ? And for the blacklisting: wManager.wManagerSetting.Add blacklist "find where the bag is stores"Entry(xxxx, true); - And it have nothing to do with the fightclass... It is the profiles that needs tweaks. Personally I don't put stuff like this in my profiles, as that would be a hell, if you don't run a hunter ;) I haven't tested it - so you might need to tweak it :-) - but this should give you an idea to move forward -
Put an item in the list not to sell
Arcangelo replied to nicozo's topic in WRobot for Wow Vanilla - Help and support
In advance settings, in buy/sell there are a "do not sell" list -
Bot keeps picking same quest
Arcangelo replied to Diesel92's topic in WRobot for Wow Vanilla - Help and support
The problem was, that It don't know what quests are complete, if you don't start a new toon :) vanilla/tbc/wotlk simply don't save that info, so there are no way to get it. And as a lot of quests are questlines, where you are required to do a pre-quests. The option to start the bot, on an old toon is pretty much impossible. -
add a "check for groupe option" true/false - so it can be added for quests with elites or quests that simply needs more than 1 player. And if the player is not in a Groupe it simply just continue. This way questing would be much easier!
-
send it in a pm
-
In my profile i run this code, on the private Wrobot for 1.12.1: wManager.wManagerSetting.CurrentSetting.Selling = true; wManager.wManagerSetting.CurrentSetting.AttackElite = true; wManager.wManagerSetting.CurrentSetting.CanAttackUnitsAlreadyInFight = true; wManager.wManagerSetting.CurrentSetting.AttackBeforeBeingAttacked = true; wManager.wManagerSetting.CurrentSetting.SellGray = true; wManager.wManagerSetting.CurrentSetting.SellWhite = true; wManager.wManagerSetting.CurrentSetting.SellGreen = true; wManager.wManagerSetting.CurrentSetting.SellBlue = true; wManager.wManagerSetting.CurrentSetting.FlightMasterTaxiUse = true; wManager.wManagerSetting.CurrentSetting.FlightMasterDiscoverRange = 100; wManager.wManagerSetting.CurrentSetting.LootChests = true; wManager.wManagerSetting.CurrentSetting.MaxUnitsNear = 12; wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; wManager.wManagerSetting.CurrentSetting.FlightMasterTaxiDistance = 5000; wManager.wManagerSetting.CurrentSetting.NpcScanVendor = true; wManager.wManagerSetting.CurrentSetting.AddToNpcDb = true; + wManager.Events.MovementEvents.OnMoveToLoop += () => { if (wManager.Wow.ObjectManager.ObjectManager.Me.IsSwimming) wManager.wManagerSetting.CurrentSetting.UseLuaToMove = true; else wManager.wManagerSetting.CurrentSetting.UseLuaToMove = false; }; but non of the settings change ?
-
The key only works on the private servers. If you want the retail, you have to get a key from droidz or buy the small package of the product to test
-
return wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(8149) == 0; Try that as complete condition
-
It does it several times around strangholm vale. and in tarrent mill/southshore. But i will try to be more specific next time i see it
-
The bot dosen't seems to have a clue, if a vendor/flight master/ repair shop is a "horde" or an "alliance" or one both can use. This bug seems pretty much to be covered all over the "vanilla map"
-
HB goes to shit and now WR jacks the price?
Arcangelo replied to Vanguard's topic in General discussion
Never said you did - as i said i actually agree with you. And he could at least have made an annoncement about it or something - and might even offer people a chance to "upgrade" to a years membersship or something, before raising the prices. -
HB goes to shit and now WR jacks the price?
Arcangelo replied to Vanguard's topic in General discussion
I agree with this But again, he is free to do whatever he wants with the bot - it is his product. -
The NPC database is a big mess, the bot is running to vendor/fp/repair npcs that is from the other faction. IS there anyway to stop this from happening?
-
The xml does not support to check several players health at the same time. But you could add a c# code to check players health near the tank/target :) and if that is below x it could cast an aoe spell Is this what you are looking for?