Jump to content

Ordush

Elite user
  • Posts

    1181
  • Joined

  • Last visited

Everything posted by Ordush

  1. FAQ (Frequently Asked Questions). Here you will find the answers to most of your questions. If your issue is not in this list, feel free to seek help in the support channel that fits the fightclass you're using. [Q] = Questions [A] = Answer [Q]: The xml file is only containing 1 line of code, is this a scam? [A]: No, this is not a scam. All my fightclasses are encrypted, WRobot reads the encryption key then it loads all my code. [Q]: I have loaded the file, but nothing happens in-game (no interface).? [A]: This can be because of a few reasons: 1) Your game client is not English. 2) Your WRobot is only trial version If it's not any of these two then get help in the support. 3) You have wow addons that are messing stuff up (Disable all addons when you use bot) 4) You have the settings stored from a pre v2.0.0, they are messing with the new version. Go to wrobot/settings folder and delete anything with "Ordush" in the name. 5) Your WRobot setup, has a setting set to something that breaks the fightclass. Try making a new WRobot install, in a new folder. [Q]: All other fightclasses works fine, why doesn't your? [A]: Most other fightclasses are not nearly as advanced as mine is. My fightclasses utilizes a lot more functions from WRobot. This means more can go worng with your install. Making a fresh install of WRobot is the safest bet to make sure nothing is wrongly set up. [Q]: I am getting this error: (May look slightly different if your computer language is not English) [My fightclass] ERROR: System.FormatException: Input string was not in a correct format. at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) at LuaUtils.GetSpellRemainingCD(String spellName) at Main.CombatRotationRanged() at Main.Rotation() [A]: This error is a false positive. It's basically saying: The code you wrote to check cooldowns... It isn't working. However, if the code i wrote did not work. Then the bot would not cast any spells. Ignore the message. It does nothing.
  2. Fightclass: TBC - Hunter - Beast Mastery: Version 1.3.0 has been released - The fightclass will now save your settings between sessions. So if you have turned off some abiltiies and turn off your game. Then later when you load the game and the FC the settings will return to what they were. (The first time you load the FC it MAY bug out as it writes the settings file. just do /run ReloadUI() - Your attack speed is now automaticly calculated, even if you have speed buffs this will change so it fits. (try opening the settings and use Rapid Fire).
  3. Hey all Does anyone know if it's possible to use the hitbox when using Vector3? I use this to backtrack from mobs, but if the mob has a big hitbox, it'll cause problems. Because Target Position does not include the mobs hitbox? var tar = ObjectManager.Target; Vector3 newPos = new Vector3(tar.Position.X + posX, tar.Position.Y + posY, tar.Position.Z); The code below gives the distance between me and target hitbox. ObjectManager.Target.GetDistance - ObjectManager.Target.CombatReach - ObjectManager.Me.CombatReach I also use the Vector3 to check TraceLine, but this also doesn't check far enough on mobs with big hitboxes. (!TraceLine.TraceLineGo(ObjectManager.Target.Position, newPos)) Hope any of this made any sense, otherwise please ask. :) I'd love to get help on this! public static double PosX(int angle) { return 0 + 18 * System.Math.Cos(angle * System.Math.PI / 180); } public static double PosY(int angle) { return 0 + 18 * System.Math.Sin(angle * System.Math.PI / 180); } The number "18" is the range between the vector and the mob. it has to be 18 in order to be 8 yards from a mob with a big hitbox (Raptors in Un'Guru, is an example). I could make a variable that changed number based on target hitbox size, but i don't know how to get that either. :P
  4. Can you Screen Shot that it says warden ban? I just got a char banned there, and it says "botting" not "warden ban". So if you were 'detected' could it be some other third party software you have on?
  5. I am personally using HumanMaster Plugin for Ammo. Unfortunately there is no fix for that, since in Vanilla -> Wotlk you can't tell if a bag is a bag or a quiver. (That's what Droidz states). However, you can just set the sell amount to the amount of slots in your quiver. So if you have a 16 slot quiver, then you set sell if 16 slots or less is empty. :)
  6. How the hell was this on top of the forum? Really low activity. :P
  7. My fc does not handle running away from mobs, but it does use FD if it has a pet, and it has aggro. HumanMaster does not use FD on running away (it's not specifically made for hunter) Would be a nice addition though, but it would require for the bot to know when it's in a "safe spot" where he could tell it to use FD. I'm sure if anyone could figure this out it woudl be Matenia. :)
  8. As i tell all my costumers. Try reinstalling your wrobot if that doesn't help try a fresh wow install. Fixes 90% of all problems. I will stop interfering with your post now Matenia. :P
  9. Would be awesome. Personally i have a banker that sponsors my bots, so gold is never an issue. :) Thing is, as a hunter you really want a gorilla. Thunderstomp = aoe tank. ;) So no matter what, my bots need to stock up on fruit. I have many ideas. Will swing by your Discord. :)
  10. @Matenia Hey mate been using this for ages now, i always recommend my buyers to use this. :) I have leveled quite a few hunters now. Here are some issues you might want to look into. :) - Updating food/water table every 5 15 25 35 45 levels instead of 10 20 30 40 50 - Add Crossbow to check ammo equipped (currently it only equips ammo if bow/gun is equipped) - Blacklist Skinning Knife as a weapon (This is only anoying untill you have replaced the starter weapon). Suggestions: - Add option to buy a certain foodtype (Fruit as an example).
  11. Has it been renamed? :O When? I have a few chars running there, that has been for some days, haven't changed anything?
  12. You can ask whoever made your fightclass to add drinking into the rotation, or do it yourself if you have the knowhow. :) Then it will work no matter what product you are using. :)
  13. Ah, i understand. :) Hmm, not sure exactly how i would go around doing that, i will see if i can come up with something. :)
  14. I am not 100% sure that i undertsand your suggestion? :) Focus is priority to heal, if that is your suggestion? :)
  15. Will check it out, cheers for the suggestion Marsbar! :)
  16. Hey! LuaUtils.wrDebug("I am using Auto Shot:" + AutoShootActive()); LuaUtils.wrDebug("I am using Auto Shot(Lua):" + Lua.LuaDoString<bool>("return IsAutoRepeatAction(" + (SpellManager.GetSpellSlotId(SpellListManager.SpellIdByName("Auto Shot")) + 1) + ")")); I've tried printing (wrDebug prints in-game) the checking of Auto Shoot, both with reading from memory private readonly uint _wowBase = (uint)Memory.WowMemory.Memory.GetProcess().MainModule.BaseAddress; return Memory.WowMemory.Memory.ReadInt32(_wowBase + 0x7E0BA0) > 0; and as you can see above with Lua, with Auto Shot on action bar. The Lua code, always prints True when auto shoot is active, where sometimes reading from memory prints false (even though it's using auto shot. This causes a lot of flickering with auto shot. Is this a bug or? If it's not a bug, is there any other way i can read if Auto Shot is active, without having the ability on the action bar?
  17. No, read what the very first line says "if UnitExists("pet")" This is why it does not work. Because on Kronos3 you don't call pet to spawn the body (making Unit Exist). That line there, besides the feed pet part, is basicly how my code for revive pet is written. :) If that macro you are writing there does work on Kronos3, then the issue is not with my fightclass, but something else. :)
  18. I will ofc. try and see if i can make it work on Kronos3.
  19. My guess is that you are on Kronos3 which is scripted really bad. On retail and on all other private servers (using mango, as WRobot is based on), you call pet first, then you revive it. But on Kronos3, you revive pet. On Kronos3 there is no way to tell if pet is just missing or dead. I am unsure on how to tell the bot the difference.
  20. Well, yes it does. But since it's read-only i can only set it once. I wanted to change Range based on conditions. :) Edit: LoL.Brainfart.. nevermind.. how did i not see the "return" rofl.. Works fine. :)
  21. Hey all I set the combat range in the top of my C# With the code @Droidz has provided. public float Range { get { return CombatRange; } } It seems that, it doesn't work if i don't set it as read-only (get). I want to be able to change the range from fightclass settings, does anyone know how to get this to work? :) Added this here, since it's more a all around thing, than vanilla only. :)
  22. Mine is checking for both, so if it can't find a path, but it is in LoS then it won't try. I gave it 4 seconds to find it's way to a spot it thinks it can go to (failsafe). :)
×
×
  • Create New...