Jump to content

Ordush

Elite user
  • Posts

    1178
  • Joined

  • Last visited

Everything posted by Ordush

  1. Just add "shoot" as a spell name in the editor. It's the same as what MikeMail did above. public Spell wand = new Spell("Shoot"); Here he instances Spell wand as "Shoot". and his code here: MikeMail wand.Launch(); Basically just tells the bot to cast whatever "Wand" is instanced as. In this case Shoot. So in short he is telling the bot to cast the spell Shoot. Which is the same as adding the spell "Shoot" in the FC editor. if (wand.KnownSpell && wand.IsSpellUsable && ObjectManager.Me.ManaPercentage <= 5 && ObjectManager.Me.GetEquipedItemBySlot(wManager.Wow.Enums.InventorySlot.INVSLOT_RANGED) != 0) This here is his conditions. You can add all these in the editor Just look at what comes after Wand. The last bit with GetEquippedItemBySlot is probably not in the editor, but you can add this via "c#" code as a condition. Make sure you add the condition that it should only "cast" if not casting already, otherwise it will shoot, stop shoot, shoot, stop shoot etc.
  2. I honestly don't think so. It is with wrobot as it has always been with honorbuddy before that, and glider before that, etc. You get reported, or caught by a GM, game over. Now it has ALWAYS been like this: Private profiles are less likely to get caught, while public profiles most likely will get caught sooner rather than later. In Mist of Pandaria I used 2 bots, one that was doing ores and herbs (had virtually no gear), and 1 that had gear (my main account) farming leather. The ores and herbs profiles (I had 4 bots doing that) all got caught eventually (I used randomized public profiles). Where my main account that just farmed leather NEVER got banned. And actually still works fine to this day.. The difference was that the leather farming profiles i created myself, while the herbs and ores were public. On warmane, i have 11 level 70's NONE of them has ever been banned and probably never will. I don't currently play them, but when i did I only used selfmade profiles. I even published two of them here (scales farming) and never used them since i published them here. (Mind you that 5 of the 11 chars are shamans, that i used to multi-box). Can tell you that 11/11 chars has done about 0 quests (they are all leveled with an exploit that i'm not going to share, so please don't ask).
  3. zatvorgt, people are actually trying to help you here. Upload your log, would be a very good first move.
  4. Obviously no one has the code you need sorry. You'd probably have to check how to see what zone you are in and make that as a complete condition, either as Lua or C#. ?
  5. There is no such thing as owning the rights to some code, because it's not patented. (which it wouldn't be able to be). However, it is pretty stupid that people steal code from other projects and post them here. ?
  6. Again use the wiki to see what works for Vanilla. I just noticed my link was from 2008 (TBC) so no GetSpellInfo does not work. ?
  7. This is not a wrobot thing. This is a wow thing. ? You can always check the wow wiki and use the "history" button to see if stuff is in Vanilla or not. I don't think it's possible, been a while since i did healing stuff for vanilla though. ? There are workarounds to cast spells using "id" by using GetSpellInfo() https://wowwiki.fandom.com/wiki/API_GetSpellInfo?oldid=1291791 Using this you can use CastSpellByName(GetSpellInfo(551)) replace 551 with any spell ID HOWEVER CastSpellByName only has an "on self" argument, which means you can either cast it on yourself or on your target. It's useful for stuff like selfbuffing, dispelling, decursing etc. since you won't need to relieve your target. Next thing: You can use TargetLastTarget to achieve "Healing target without targeting them". In a sense, you will be targeting your party member, casting your spell then targeting whatever you targeted before this. (This will look like you never changed target). ? https://wowwiki.fandom.com/wiki/API_TargetLastTarget?oldid=21935
  8. There is no such thing as "CastSpellByID" in vanilla. ?
  9. Yep, but you'd want to modify the existing plugin according to your quester. It will work. ?
  10. I am not 100% sure that i understand what you are asking, sorry?
  11. It's still a year, but you can buy just 1 license. ?
  12. Hey mate. I know that we figured that this was not my fightclass. But the bug with aspect of the Hawk. Did it occur on your other pc? I just tested it with the newest version of wrobot, and the version of the fightclass that you have. I have no issues at all with aspects. I can't write to you on discord anymore for some reason.
  13. I am at work atm. Pm me Ordush on the discord. We\ll see if we can figure out what is going on. ?
  14. The food part of my fightclass, ONLY controls the pet food. Make sure that the food you are trying to feed your pet is in the list in the advanced settings (in-game). Edit: You don't get a pet until level 10?
  15. I can't do a %. Because a raid boss with 15-20% health will definitely need to take some aimed shots. But I will see if i can find a work around. ?
  16. You need to change the wrobot settings to fix these issues. This is not a fightclass thing. ? Go look in advanced settings. I am not by my pc right now, so i can't look myself what they are called. But you need to change some percentages. ?
  17. Are you not using mend pet? If the pets hp is low, it should heal it up with mend pet. Mend pet is a channeling spell, which means the hunter won't be able to move to next mob unless it's done healing the pet. ?
  18. I have made a plugin just for leveling in dungeons. However, the profiles for each dungeon. You'll have to make yourself. There is a video guide etc. ?
  19. It has not gotten love in a long time. When i made this, i was all new to wrobot. I have learned a lot since, and i will rewrite this. It's in my trello already. ?
  20. Contact them. ?
  21. The site works fine for me. But, i am not using proxies atm. So don't know about that. ?
  22. HMP is really great for stuff like that. ?
  23. Doesn't matter, the bot will run to the corpse, even if the mobs dies outside the "kill zone". Please try what i wrote. ?
×
×
  • Create New...