Jump to content

sowelu

Members
  • Posts

    58
  • Joined

  • Last visited

Everything posted by sowelu

  1. Hello, how to get any info about character's rotation? (need to get an angle).
  2. Where are you botting? Maybe i do something wrong, but my grinding route for rogue looks so bottish, edgy turns, instant facing etc. Nothing to do on x1 server.
  3. Ok thanks i will try it but is it possible implement api for swift rotation, 360 per 0.5 secons for example?
  4. Bump, any idea how can mouselike rotation be implemented?
  5. I havent found api for rotation, only MovementManager.Face(); which is unclear for me (the same result with completely different vector3)
  6. They really have banned tons of bots, AH prices have been grew up and coinmarket have less offers.
  7. Wrobot is good, but its still bot, there is no humanlike behavior, like strafe left/right, random movement divergence, smooth roration etc. It is important for x1 crowded server. Is it possble implement w-s-a-d movement, not click-to-move?
  8. MovementManager.Go(path1); Will someone shoot me next time? Time to learn xml. Anyway, thanks, this robot is so cool.
  9. I have written profile by grinder, but i want to use this profile from code somehow. I just want to follow the route, no matter how.
  10. Hello guys, i want to record the path and forcing the character to follow it from the plugin and after finishing up I need to use some other scripted actions, like using different path depending on who is in front of me. In a word, I need to combine various different actions into one monolithic plugin (follow detected path, loot, check mob availability etc). Specifically for now i have path.xml (recorded by grinder / gatherer) and dont know how to use it from code.
  11. Can it be rewritten for full bags disenchant? ( no mater which item is). Unfortunately I dont understand well what is going on in code above :(
  12. Works fine as charm, hell thanks. Dont know why but i had to replace . Lua.LuaDoString($"SendMail(\"{recipient}\",\"{subject}\",\" \");"); to Lua.LuaDoString("SendMail(\"" + recipient + "\", \"" + subject + "\")");
  13. Hey, yes, prefer by item name. Some items have same Id but different names: Tanzanite pendant of the Gorilla/of the Monkey, etc. The code will be used in a plugin (burning crusade).
  14. Lua.LuaDoString<string>("itemId = GetContainerItemID(1,2);", "itemId"); Isnt working ;( I want to send items by mail, can send one item per cycle using Bag.GetItemContainerBagIdAndSlot, but it is very slow, because I have to wait 5 sec (antispam system).
  15. Thanks for the help, I have done main part. Now it would be cool learn rogue to sneak through dungeons. 1. Can I record path and force character to move by C# ? 2. How to use distract on the ground? 3 How to open trade, put items, and push it
  16. Can I somehow receive some data from another instance of bot like value of variable in plugin? It would be cool to send a message to another instance.
  17. Logging.Write(Lua.LuaDoString<bool>("return UnitIsConnected(" + "PlayerName" + ")") + ""); Returns false, but player is online and near me. List<WoWPlayer> playersInParty = new List<WoWPlayer>(); playersInParty = wManager.Wow.Helpers.Party.GetParty(); Logging.Write(playersInParty.Count + ""); Returns 0 , but im in party with 1 player. Any idea?
  18. Found solution Interact.InteractGameObject(chest.GetBaseAddress);
  19. I have found the cheast, how can I loot it? List<WoWGameObject> objs = new List<WoWGameObject>(); objs = ObjectManager.GetWoWGameObjectByyId(123456); WoWGameObject chest = objs[0];
  20. Another stupid q, i have downloaded FightClass.cs sample, but wrobot>general settings > fight class have .xml format. How can I use sample. Also, I have downloaded plugin sample, and it works. I was able to write a log, lol. Which difference and advantage in these approaches?
  21. I have very noobish question. Where should i insert this code? Quester> action> runCode ? private Spell _vanish = new Spell("Vanish"); error int chestId = 42; but ok
  22. Also, how can it be looped? I need to call LookingForTheChest function every100 ms.
  23. Oh bro, I appreciate it, thanks. Going to check it soon and it remains to find out LootTheChest function.
×
×
  • Create New...