Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Problem is caused by Cloudflare.
  2. Can you test again and say me if you have again the problem please.
  3. Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
  4. Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
  5. Hello, Can you give me the error message please (the message show when you try to access at the website) and your wrobot log (in log folder). Thanks.
  6. Tu peux ajouter un code dans Pulse qui remet à 0 ObjectiveRequiredCounts. Par exemple tu commences la quête avec ObjectiveRequiredCounts = {1,1,0,0} et tu fais dans pulse: if (itemCléCount >= 1) ObjectiveRequiredCounts = {0,1,0,0} Et toujours dans pulse if (ObjectiveRequiredCounts[0] > 0) // RAMASSER CLE else // ALLER A LA CAGE Mais je trouve que le plus simple reste de faire 2 quêtes (une par objectif). Wowhead est bien fait, mais c'est vrai que l'on ne trouve pas toujours tout les objets, tu peux aussi utilise ce site: http://www.wowdb.com/ avec dev tools tu trouveras les id que tu veux. C'est pour cette raison que j'ai rajouté l'option qui permet d'utiliser du code lua (ou tu peux le faire manuellement en modifiant Pulse comme pour cette quête: public sealed class MurderWasTheCaseThatTheyGaveMe : QuestInteractWithClass { public MurderWasTheCaseThatTheyGaveMe() { // http://www.wowhead.com/quest=26209 Name = "Murder Was The Case That They Gave Me"; QuestId.AddRange(new[] { 26209 }); Step.AddRange(new[] { 1, 1, 1, 1 }); GossipOptionNpcInteractWith = 2; HotSpots.Add(new Vector3(-9819.229f, 974.2356f, 29.13065f)); EntryIdTarget.Add(42386); EntryIdTarget.Add(42384); EntryIdTarget.Add(42391); EntryIdTarget.Add(42383); } public override bool Pulse() { base.Pulse(); Thread.Sleep(1000); Lua.RunMacroText("/click StaticPopup1Button1"); Thread.Sleep(1000); return true; } } (Pour trouver le nom des menus met ta souri au-dessus du bouton/menu et lance cette macro: /run print("/click "..GetMouseFocus():GetName()) )
  7. Hello, I'll look this.
  8. Hello, Can you share your log please. You have this problem only in this zone?
  9. Hello, Do you have extracted downloaded file (with like winrar or similar software)?
  10. Hello, thanks, I'll add this.
  11. You speak about this script:
  12. Hello, EU or US server using same wow version (5.4), you need to use last wrobot version (try to redownload and reinstall wrobot if you have problem).
  13. Hello, I'll fix it during next updates. Thanks.
  14. Droidz

    Window display..

    Hi, xp/hr is good value? I'll look it.
  15. Hello, in general settings tab macros (or you can add it in your fight class) Envoyé depuis mon MI 2 avec Tapatalk 4
  16. In main wrobot window you have target info, health is correctly showed? Do you have wowhead link of the boss? Thanks.
  17. Droidz

    BattleGround

    Hello, Thanks I'll look. Can you share a log of bugged session please.
  18. Hello, If you can also share your the log of an bugged wrobot session (in Logs folder). Thanks.
  19. Hi, How explain I have added possibility to use lua script. Use this script for change pet when health is smaller at 30 % (you can change this value): local minHealthPercent = 30; local PetAlly = 1; local PetEnemy = 2; local activePetEnemy = C_PetBattles.GetActivePet(PetEnemy); local typePetEnemy = C_PetBattles.GetPetType(PetEnemy, activePetEnemy); local activePetAlly = C_PetBattles.GetActivePet(PetAlly); local typePetAlly = C_PetBattles.GetPetType(PetAlly, activePetAlly); if C_PetBattles.GetHealth(PetAlly, activePetAlly) * 100 / C_PetBattles.GetMaxHealth(PetAlly, activePetAlly) <= minHealthPercent then for i = 1, NUM_BATTLE_PETS_IN_BATTLE do if C_PetBattles.GetHealth(PetAlly, i) * 100 / C_PetBattles.GetMaxHealth(PetAlly, i) > minHealthPercent and not (i == activePetAlly) then C_PetBattles.ChangePet(i); break; end end end
  20. Yes and no (I don't want impose at all an specific technique), I have added possibility to launch a lua script before launching pet ability. For switch pet after first hit your can use this lua code: local PetAlly = 1; local PetEnemy = 2; local activePetEnemy = C_PetBattles.GetActivePet(PetEnemy); local typePetEnemy = C_PetBattles.GetPetType(PetEnemy, activePetEnemy); local activePetAlly = C_PetBattles.GetActivePet(PetAlly); local typePetAlly = C_PetBattles.GetPetType(PetAlly, activePetAlly); if activePetAlly == 1 and not (C_PetBattles.GetHealth(PetEnemy, activePetEnemy) == C_PetBattles.GetMaxHealth(PetEnemy, activePetEnemy) ) then for i = 1, NUM_BATTLE_PETS_IN_BATTLE do if C_PetBattles.GetHealth(PetAlly, i) > 0 and not ( i == activePetAlly) then C_PetBattles.ChangePet(i); break; end end end (You can edit lua script when you launch pet battle product)
  21. Ok thanks, I have also problem when 1 still on queue, I have resolved problem, wait next update.
  22. Problem fixed, wait next update.
  23. Hello, Go to "General Settings" > tab "Vendor..." and check if "Sell white items" is activated. Check also if your items is not in "Do not Sell List...". Tell me if your problem is solved.
  24. Hello, When you create profile you need to add targets entry (select target in game > In profile creator click on button "Add" (right of the textbox Targets Ids), save your profile).
  25. You have follow instructions:
×
×
  • Create New...