Jump to content

Droidz

Administrators
  • Posts

    12590
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, I'll add it in the fightclass conditions during next updates.
  2. You can read distance of object in page dump. Move your character near object before extracting game informations.
  3. WRobot is not written to manage multi-target, he has not cleanly method currently to manage it. I'll look to adding option to manage multi-target.
  4. It is not normal. Do you have program similar at TeamViewer launched on your computer? Do you have try to disable your antivirus and close no used program for try if this resolving problem?
  5. Hello, Do you have Repair/vendor/mailbox in your profile or in NPC DB (tab "Tools")?
  6. Hello, What fightclass do you use?
  7. You can also use "Dump All" (in tab "Tools"> "Dev ... tools») (this extract all game objects near your character).
  8. http://www.wowhead.com/quest=27014 is only for Priest (in "Base settings" of the quest, in "Wow class" you can select "Priest"). For http://wowhead.com/quest=754/winterhoof-cleansing in quest type use "FullCSharpCode" and put this code (sorry, no easy way for the moment): public sealed class WinterhoofCleansing : QuestUseItemOnClass { public WinterhoofCleansing() { Name = "Winterhoof Cleansing"; QuestId.AddRange(new[] { 24440 }); Step = new List<int> { 0, 0, 0, 0 }; StepAutoDetect = new[] { false, false, false, false }; PickUpQuestOnItem = false; PickUpQuestOnItemID = 0; GossipOptionItem = 1; WoWClass = wManager.Wow.Enums.WoWClass.None; MinLevel = 0; MaxLevel = 95; RequiredQuest = 0; EntryIdTarget.Add(2913); HotSpots.Add(new Vector3(-2544.259 , -706.0765 , -8.947113 , "None")); ItemId = 5411; Range = 8f; } public override bool IsComplete() // Override iscomplete { if (IsCompleted()) // If quest already turnin return true; if (!HasQuest()) // If character not have this quest return false; return wManager.Wow.Helpers.ItemsManager.GetItemCountById(5411) <= 0; // Quest complete if no item in the bag (if item used) } } More info about C# code You can get pregenerated code in "WRobot\Profiles\Quester\" (when you use profile an ".cs" file is generated).
  9. Droidz

    WRotation

    Hello, In product settings disable the option "Manage ...".
  10. Can you look in "Logs" folder if you have log please.
  11. Do you have this problem only when http://www.wowhead.com/npc=71543/immerseus has more than 200 000 000 hp? And you have try to go near Immerseus (spell range can cause problems also).
  12. Hello, What profile do you use? Do you have try another profile?
  13. Non ça ne fait pas longtemps, a peux prêt une semaine. N'hésitez pas à me dire si vous avez des bugs avec cette option.
  14. You need to use wow window mode. You cannot minimize wow in taskbar but you can resize wow window at minimum and put in the background and use your computer normally.
  15. De rien. Je suis également français, si tu as d'autres questions n'hésite pas à les poser en Français dans ce forum.
  16. Hello, Yes it is good idea. Me I'll continue my profile for Alliance (16 to 60 for the moment).
  17. Can you try to remove folder "WRobot\Meshes\" and share me your log, I haven't this problem.
  18. Hi, I'll continue this post here:
  19. Hello, Can you target this NPC and go to tab "Tools" > "Development Tools" > "Memory informations" and post here output result. If you can also test with another fightclass (and wow class, just to test if problem is the fightclass (or one conditions)). Thanks.
  20. Hello, To blacklist go to tab "Tools". You can use map (in "Map" tab) to help you to blacklist correctly zone (don't forget to activate "path" and "blacklist" landmarks in "More options" in map settings). You can also remove nearest way point in profile creator.
  21. Do you use mode window for wow?
  22. Bonjour, Activez l'option "Use Traveler's Tundra Mammoth" qui ce trouve dans "General Settings > Enter advanced settings... > Vendor 'Selleting or Buying". Pour plus d'info ce référer au guide: http://download.wrobot.eu/wrobot/guides/
  23. Use this lua codes: if (not QuestLogFrame:IsVisible()) then QuestLogMicroButton:Click() end QuestLogFrameCompleteButton:Click() if (QuestLogFrame:IsVisible()) then QuestLogMicroButton:Click() end and if QuestFrame:IsVisible() then QuestFrameCompleteQuestButton:Click() end Sample here: male goblin quest FIXED.xml (I have also added c# condition "if Quest.HasQuest(24502)" before lua macro) To get button/frame name you can use this macro (put mouse over button/frame and launch in wow chat this macro): /run print( GetMouseFocus():GetName())
  24. Hello, You need by moment create one quest by objective: male goblin quest FIXED.xml
  25. Can you share your profile I'll look it. Edit: I go to your new thread:
×
×
  • Create New...