Jump to content

iMod

Elite user
  • Posts

    581
  • Joined

  • Last visited

Everything posted by iMod

  1. Go to http://wrobot.eu/forums/forum/66-wrobot-for-wow-private-server/ choose your version and click on the post from droidz Download WRobot for "your version" I think you are looking for
  2. And if you check http://wrobot.eu/clients/purchases/ ? What kind of product key do you see? something like "WRobot for Private Server"?
  3. Is there a reason why you create a new player object? Line 792: var u = members.First(); WoWPlayer healTarget = new WoWPlayer(u.GetBaseAddress); Why not just: WoWPlayer healTarget = members.First(); Sorry for offtopic
  4. Hope that helped, happy botting.
  5. Put them directly into FightClass not Talents WRobot/FightClass/Deamonhunter.cs Thats the path it should be.
  6. Could you please make a screen from your fightclass folder? Make sure the files extension are ".cs", ".dll" or ".xml"
  7. Welcome to WRobot, your account type does not count, the client version is the important thing.
  8. He is not using the WoWUnit object ;) he is using the ulong private ulong _lastTarget;
  9. Oh okay that means you are holding the object of the target. If you want to validate it by ID you just need to use the Guid property. I have changed the code above just check it out. You need to take care of the type you are validating. For example: _lastTarget = ObjectManager.Me.Target; You tried to put a ulong into a WoWUnit object and that wont work.
  10. With what kind of error? ;) Well you can create a method that targets what you want and use it in the spellstate engine. For the automate target you could write a small plugin that targets for you.
  11. if (ObjectManager.Me.TargetObject.IsDead && ObjectManager.Me.TargetObject.HaveBuff("Mark For Death") && new Spell("MFD ").IsSpellUsable) { // Settings int range = 10; WoWObjectType objectType = WoWObjectType.Unit; // Get target WoWUnit unit = ObjectManager.GetWoWUnitHostile().OrderBy(o => o.HealthPercent).FirstOrDefault(u => u.Type == objectType && u.IsAlive && (u.GetDistance <= range) && u.IsAttackable); if (unit != null) { Interact.InteractGameObject(unit.GetBaseAddress); } } You need to correct the spell names but something like this should work i took it out of my library so maybe something is missing and it is not tested like this. Hope that was something that will answer your question o.O
  12. You got tons of exceptions in your log. The first thing i see is that " D:\WRobot x5\WRobot\Plugins\WoW Circle 3.3.5a x5\Paladinok.xml" has some problems. I never saw a plugin written in xml o.O
  13. Some more informations would be nice. What kind of error? What version? Which windows do you use? Also the log file from WRobot would be nice.
  14. Questions like that and people who try to create some good stuff are always welcome.
  15. If you are looking for objective relevant properties take a look at ObjectManager.Me.X or if you want your target take a look at ObjectManager.Me.TargetObject.X About your error: && ObjectManager.Me.ComboPoint = 5 should be && ObjectManager.Me.ComboPoint == 5
  16. Oh really? Okay i'm so sorry. WRobot is a program that allowes you to automate World of Warcraft tasks. You can realize everything you want if you know how. The program it self is written in C# and uses WPF as UI. The most stuff is realized through xml to C# converter. Good luck dude, i hope this answers your "question". ps: "I am wanting to know about wrobot" what the hell you want to know about WRobot? maybe you should think about your "question" before posting "shit".
  17. Those images are embeded into the rStyle dll. Works fine for me and i just had to change the NpcScan line to compile successfully. NpcScan has changed in the current version of the dll. Offtopic: Are you able to work with WPF?
  18. There are no images in this project as far i know.
  19. Hello and welcome to WRobot, Take a look into the download section would be the first thing. if you cant find something that match your needs, you need to write some more informations so may other ppl can help you out. At the end there are just two ways to reach your goal. Create a own fight class or ask someone at the blackmarket.
  20. http://wrobot.eu/store/category/2-wrobot/ "unlimited WRobot session on the same network (ip)"
  21. You should leave some more infos like what content are you playing?, what it is for? maybe for raids? maybe for farming? And also if you need some help you should post some lines about your problem you had on creating a solid fight class.
  22. iMod

    Magier Angreiffen

    Schau dir an was beim Property "Range" gesetzt wurde. Normal sollte da eine Range von 5 eingestellt sein fuer Melees.
  23. Maybe i'm blind but i can't even see any error. For me it looks like it just ended up and thinks its finish because the quest 44137/ 38834 are completed or it doesn't has the quest 37853.
×
×
  • Create New...