Jump to content

iMod

Elite user
  • Posts

    581
  • Joined

  • Last visited

Everything posted by iMod

  1. If you compile your dll by your self you can use the lastest framework. If you just want to use the .cs file in the bot it won't work because the internal compiler just supports .NET 4.0
  2. Well talk with the profile maker or check your own eat/drink settings. There are also posts about stuff like that in the forum.
  3. Get your serial from "My Purchases" and start the bot. Remove the TRAIL and enter your serial and press the "+" Profile can be found in the download section. Happy botting.
  4. What kind of support do you mean? The admin and the community is kinda helpfull if you have questions. I think the problem is that many ppl think that this bot is equals to other bots and this is wrong =/ people have the chance to read the forum before they buy the bot and if you invest a few minutes in it you will notice that its not a one click solution like others. Well and if its not a problem to pay a bit more, just buy the profile from community ppl who offer their service.
  5. No you are wrong. You pay for the programm that makes it possible to do that stuff but not the instructions to level up. Everyone said HB is a one click solution and they have profiles for free. This is also wrong since one guy was paid for this profiles he made. Would you make a profile for everyone from 1-110 for free?
  6. I'm just able to answer your last question. Because it takes a lot of time to create quest profiles and no one wants to waste his time for free so thats why those community profiles are paid one.
  7. 1. Create a new C# class. 2. Add refrences to the bot libs you want to work with 3. Implement the ICustomClass interface into your new class 4. Implement the interface methods (just take a look at the samples floating around) 5. Make instances of your spells like Spell spellName = new Spell("SpellName"); 6. Well and now the creative part comes... you need to validate and pulse your actions you want to do At the end compile the stuff and put the dll into your FightClass folder. That should be the basic stuff.
  8. So what exacly do you want to know? May i'm able to help you a bit out. Yes its kinda easy to port this one into wrobot.
  9. iMod

    Bergbau 300-375?

    Gibt doch genug Farmguides die genau das beschreiben oder addons die dir sogar anzeigen wie die route ist.
  10. Target is just the GUID if i'm not wrong and TargetObject will be the WoWUnitObject.
  11. Well but the tutorial should make clear how the base works. Its not a copy paste sample, no ;)
  12. The expansion does not care, the technique is the same. So which part does not work for you?
  13. Just add Regrowth twice, one with your normal conditions and the 2nd one with the proc condition
  14. Checked it with Teamviewer and the Bot is not able to detec the game process. 32Bit Mode and started as admin. May someone else had such problem?
  15. also running wow in 32bit mode?
  16. Are you starting wrobot with admin rights? Also make sure wow is running in 32bit mode.
  17. Make sure you have the right version and close skype it seems some ppl have problems with it.
  18. Some event samples #region Events // Listen to events EventsLuaWithArgs.OnEventsLuaWithArgs += delegate (LuaEventsId id, List<string> args) { #region PLAYER_REGEN_ENABLED if (id == LuaEventsId.PLAYER_REGEN_ENABLED) { Functions.InCombat = false; } if (id == LuaEventsId.PLAYER_REGEN_DISABLED) { Functions.InCombat = true; } #endregion #region MODIFIER_STATE_CHANGED if (id == LuaEventsId.MODIFIER_STATE_CHANGED && args.Count == 2) { // Possible values are LSHIFT, RSHIFT, LCTRL, RCTRL, LALT, and RALT string key = args[0]; // 1 means that the the key has been pressed. 0 means that the key has been released int state = int.Parse(args[1]); // AOE mode if (key == "LALT" && state == 0) { // Set status rotation.AoeMode = !rotation.AoeMode; // Write to chat string message = $"iRotation AoeModes: {(rotation.AoeMode ? "|cFF00FF00On.|r" : "|cFFFF0000Off.|r")}"; Lua.LuaDoString($"print(\"{message}\")"); } // Burst mode if (key == "LCTRL" && state == 0) { // Set status rotation.BurstMode = !rotation.BurstMode; // Write to chat string message = $"iRotation BurstMode: {(rotation.BurstMode ? "|cFF00FF00On.|r" : "|cFFFF0000Off.|r")}"; Lua.LuaDoString($"print(\"{message}\")"); } } #endregion }; #endregion
  19. If i'm not wrong you have to split the quest into parts and change the "is complete condition" to your requirements.
  20. Well this bot has one admin and the community. It takes some time ;) i mean what do you think how many messages he get per day? It must be a mess. This is not like HB and will never be I know what you mean but i had to wait like 3 weeks to get an answer and sometimes it takes an hour. It always depends on his free time.
  21. Calm down dude o.O He will read it dont worry.
  22. Hast du schon mal in der Downloadsektion geschaut? Du wirst denke ich kaum welche finden die gut funktionieren und umsonst sind. Hilfe kann nur geboten werden, wenn auch Fragen in dem Raum stehen bzw konkrete Anwendungsfälle formuliert werden. Tutorials anschauen und bei Fragen einfach ans Forum wenden.
  23. Create one by your self would be the fastes and secured way. You just need to fly one route and record it and you are done. If you don't know where you need to fly, just get a gatherer addon that will show you the way.
×
×
  • Create New...