Everything posted by iMod
-
Begginer in Wrobot
I wrote a plugin for it a long time ago for exacly such stuff. I'm not sure if it is still working but if you want give it a try. Use WRotation with your normal fight routine. Put it into the Plugin folder and set it up. TargetHP means it will attack after the target of your toon has the given hp( to make sure its tagged from the lowbie) Hope it will help you a bit. ps: if it wont work and you are able to code c# stuff i can help you a bit out with creating products / plugins iSupport.dll
-
Durotar(1-12OrcTroll) by webruxim
Thanks for the profile, works fine so far.
-
Wotlk daily quester
Oh i see, thought it will return the quest id's of the finished quests. Another idea would be to subscribe to the quest finish event and log the quest id's by your self and clear it after you are done with all of them.
-
Wotlk daily quester
Not tested: QuestID: 1234 public override bool IsCompleted() { return Lua.LuaDoString<List<int>>("return GetDailyQuestsCompleted();").Contains(1234); } You also could add this line in a if block and check if its allready done. ps: If it wont work with int just replace it with string and change Containts(1234) to Contains("1234")
-
Wotlk daily quester
Are you sure that you pulse the quest?
-
How to use Battlegrounder Warmane 3.3.5a?
Forgot the fight class? ;)
-
Wrotation - wont atack heart on EN Il'gynoth
with new Spell("bla").IsDistanceGood This is my complete spell validation // Validate spell if (!ObjectManager.Me.IsStunned && !ObjectManager.Me.IsDead && !ObjectManager.Me.IsCast && !target.IsDead && spell.KnownSpell && spell.IsSpellUsable && spell.IsDistanceGood && !hasDebuff) { if (target.Guid == ObjectManager.Me.Guid) { // Cast on self Lua.LuaDoString($"CastSpellByID({spell.Id}, \"player\")"); } else { // Cast on target Lua.LuaDoString($"CastSpellByID({spell.Id}, \"target\")"); } // Log Logging.WriteDebug($"Cast: {spell.NameInGame}"); I also have the problem that the bot seems to have some other problems, too LOG: [D] 23:08:07 - [SpellManager] Cannot found spell: public static SpellInfo SpellInfoCreateCache()
-
Wrotation - wont atack heart on EN Il'gynoth
I had the same problems with some bosses(don't remember sorry) in WOTLK with WRotation. You need to run around / inside it until the bot starts its rotation. Even with all checks disabled. I was using my own light rotation bot. Bot.cs
-
Use hearthstone
May this post will help you out
-
Target Enemy in Fight Class
robotManager.Helpful.Keyboard.Tab(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Escape); Does not really looks like tab key ;) I'll write you a c# sample later if i'm at home.
- Testkauf
-
WRobot version 1.7.0 safe?
You need to wait a few weeks to make sure that the bot is "safe" blizz normaly don't ban instantly.
-
Honorbuddy profile compatible
I don't think so, what you need to do is to take a look at the xml structure of wrobot and get the differences in hb profiles. Thats how i did it with some quests. What you also can do is to use the wrobot converter and fix the stuff that isn't 100% converted. I don't know how good this converter works but would be worth to try it out.
-
Honorbuddy profile compatible
You need to convert them.
-
Questing profile missing 1-110
The one who made the profiles wasn't in the team from the beginning. It was a normal user as far i know.
-
Legion server with quests working
Realmlist.wtf is removed but Config.wtf is added SET portal "login.whatever.com" should do the trick.
-
Legion server with quests working
Are you 100% sure that you can't just change the realmlist to this server with the original client and just start the wow.exe? I will take a look at the client tonight, this sounds like a challenge ps: anyone got a direct download link for the client? (I don't use torrent)
-
Legion server with quests working
You should be able to use the original client and just change the connection to the private server.
-
WoW Legion key
You have to wait, he is the only one who has access to such things. He will answer as soon as possible.
-
Use of dragon roar only when enraged
I can't provide C but i can give you an example in C# // Create spell instance Spell dragonRoar = new Spell("Dragon Roar"); // Validate if (ObjectManager.Me.HaveBuff(new Spell("Enrage").Ids) && dragonRoar.IsSpellUsable) { // Use spell dragonRoar.Launch(); } The spell will be launched if you don't have the spell at your self and dragon roar is ready to use. ps: you need to check the spell names if they are correct Hope that helpes.
-
WTB 1-80 Grinding/Questing Fully AFK + Fight Classes
i know but since there wasn't even one answer i thought i could write a answer.
- Quester, "Invalid target"
-
WTB 1-80 Grinding/Questing Fully AFK + Fight Classes
Wrong forum, you should give BlackMarket a try.
-
force throw a loot item
Well the fastest solution would be a addon that destroys the items after you loot them. Something like this: http://www.wowinterface.com/downloads/info9441-KarnisCrapFilter.html#other
-
Guidance?
It is impossible to say that something is 100% secure and every botter should know that. The bot was save before and you only can say somthing else if a bannwave comes up to prove the opposit.