Jump to content

iMod

Elite user
  • Posts

    581
  • Joined

  • Last visited

Everything posted by iMod

  1. 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
  2. Thanks for the profile, works fine so far.
  3. 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.
  4. 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")
  5. Are you sure that you pulse the quest?
  6. 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()
  7. 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
  8. May this post will help you out
  9. 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.
  10. iMod

    Testkauf

    Es wird nicht automatisch verlängert, das soll nur heißen das du dir dann einen neuen key kaufen musst, nach den drei tagen.
  11. You need to wait a few weeks to make sure that the bot is "safe" blizz normaly don't ban instantly.
  12. 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.
  13. The one who made the profiles wasn't in the team from the beginning. It was a normal user as far i know.
  14. Realmlist.wtf is removed but Config.wtf is added SET portal "login.whatever.com" should do the trick.
  15. 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)
  16. You should be able to use the original client and just change the connection to the private server.
  17. You have to wait, he is the only one who has access to such things. He will answer as soon as possible.
  18. 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.
  19. i know but since there wasn't even one answer i thought i could write a answer.
  20. May you have the option (i'm currently don't know where the exact location is) enabled to attack friendly objects? It should be somewhere in the general settings if i'm not wrong.
  21. 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
  22. 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.
×
×
  • Create New...