Jump to content

Ordush

Elite user
  • Posts

    1167
  • Joined

  • Last visited

Everything posted by Ordush

  1. Well, that is not a fightclass thing. You most likely haven't set up drinking correctly. ? Try and screenshot your drinking config. You probably want to make it so you can take screenshots, there is a post on the forum on how to do it. I can't remember
  2. Why would you delete the mail? ? PM me the mail you used, and i will find a download link fro you. ?
  3. That error is from the old version. You can use your download link at sellfy to download the latest version.
  4. Test the proxies with something else to make sure they work.
  5. Put it in FightClass inside your wrobot folder.
  6. Seems that the IP you entered doesn't work. Have you verified that the IP's you got and/or the login is working properly?
  7. Because if you use a client uploaded by the server you are playing on, you risk them having changed it and added their own anti-cheat. That was a well known problem with some servers previously, where some people got banned while others didn't.
  8. You can't download older versions, if that is what you are asking for. Anyway try reinstalling wrobot to a new folder. ?
  9. Hosting the wow clients is a bad idea. ? There are tons of clients out there: Just never use a client downloaded from the site of wow server you are playing on. ?
  10. There is only one wrobot when you update it, you choose what version you want.
  11. There are however reports of people losing their retail accounts due to this, so to be safe I'd run the private server session on a VM. (There are many guides here on the forum on VMs)
  12. I've heard about this bug, it's because you have some food in your inventory that is on the list that your pet does not want to eat. Go through the list see if any items in your inventory is in the list. If not, then try removing the cache folder in wow.
  13. Are you using a custom wow client? Sure looks like it? Don't ever download the client, that's provided from the server hosts. Always get a clean wow client. Also, i see that you are using a LOT of addons, don't ever use addons with wrobot. That alone might be what is causing issues. Edit: Rotatoggle is to turn OFF the fightclass
  14. Hey all There is a 50% discount on everything i sell for the next 24 hours. It's not a coupon you have to use, it's a sale. https://wrobot.eu/profile/31679-ordush/?do=content&type=downloads_file&change_section=1
  15. There is supposed to be a toggle for it, but it seems that i haven't added it to the TBC FC. I will be working on WRobot in the christmas vacation, i will add the button then. ?
  16. That's not exactly how it works though. The pet will get aggro on the mob with the highest hp first, (usually the stronger mob), then it will go to the next target. When it has aggro on all mobs attacking you, it will attack the mob with the least hp left remaining. So this behavior you are describing sounds a lot like a bug with your setup. Please read the FAQ first, see if anything there helps. If not then get back here. and PLEASE do not just write "I have already read the FAQ", if you haven't REALLY tried it all. 90% of the time, what i end up helping people, is something from the FAQ that people claim that they HAVE read and tried. https://wrobot.eu/forums/topic/9189-faq/
  17. Nonono this is completely wrong lol In your wrobot folder make a new folder called FightClass Put it in this folder, then load it as a fightclass
  18. Hey mate. Yeah, i have some stuff released. ? I am not writing any code atm. I'm fighting stress, so until i have vacation and have to take care of my fulltime job, coding is on a break.
  19. First of all, please stop making demands. Secondly, it's not "just" update.. It will take me several hours to do. I can't just copy/paste lol... Thirdly, i already said that i will, when the Christmas vacation hits. I am having issues with stress. So i will not be able to do it until i don't have a full time work to think of.
  20. Hi Gobick, make sure that all addons are disabled. Oh and make sure that you run wow AND wrobot as admin. When you are running as admin, try turning the optiosn OFF then back ON again. This has worked 100% of the time that this issue has happened. Oh yeah, and obviously... the bot HAS to run when you make changes, otherwise it will not change anything to the actual bot, but only to the in-game interface. ?
  21. I will look into it asap! I just looked into my code, it's an easy fix. It's actually not in my plugin but rather in the questing profile. Open the profile in the quest editor Then click tools and Custom Scripts public class DP { public static bool CheckArea(float x, float y, float z, int range) { if (!ObjectManager.GetObjectWoWUnit().Any(u => u.Type != WoWObjectType.Player && u.IsAlive && u.IsAttackable && u.Position.DistanceTo(new Vector3(x, y, z)) < range)) return true; return false; } public static bool LeaderReadyPull() { if (Lua.LuaDoString<string>("return TeamLeader()") == "Player" && Lua.LuaDoString<bool>("return AllReady")) return true; return false; } public static void SetObjective(string msg) { Lua.LuaDoString("SetObjective('"+ msg +"')"); } } You will see this code. This line: if (!ObjectManager.GetObjectWoWUnit().Any(u => u.Type != WoWObjectType.Player && u.IsAlive && u.IsAttackable && u.Position.DistanceTo(new Vector3(x, y, z)) < range)) add: && u.Health > 1 So it looks like this: if (!ObjectManager.GetObjectWoWUnit().Any(u => u.Type != WoWObjectType.Player && u.IsAlive && u.Health > 1 && u.IsAttackable && u.Position.DistanceTo(new Vector3(x, y, z)) < range)) Now it will ignore mobs with less than 2 hp. ? It's not the perfect solution but it will work until i release a more permanent better fix. However this will work on the go now. ?
  22. This is a pve spec, so i don't really see a use for viper sting. ? However the vanilla FC has it, so i might. ?
×
×
  • Create New...