Jump to content

Droidz

Administrators
  • Posts

    12612
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, The fightclass cannot manage targets (only for spell rotation). For manage targets you need to create plugin (or product). But the battleground product need a lot of fix/improve, I'll work on it.
  2. Hello, You use at "Flash Heal" if health is egal a 90 % (the spell is launched only when health is egal a 90%). You need to use condition if health "Smaller" at 90 %
  3. Hello, Your keybindings jump and sit down is configured on your keyboard? (If no, setup X at sit down and Space at Jump).
  4. Bonjour, Pas pour le moment, tu peux uniquement faire du Joueur contre joueur ou du combat contre des pet sauvages. Mais il est possible de créer un profil pour les tournois avec le bot Quête (Quester).
  5. Hello, I haven't delete your topic, I have only moved to good forum section: http://wrobot.eu/forum/28-profiles-and-requests/
  6. Problem is caused by Cloudflare.
  7. Can you test again and say me if you have again the problem please.
  8. Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
  9. Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
  10. 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.
  11. 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()) )
  12. Hello, I'll look this.
  13. Hello, Can you share your log please. You have this problem only in this zone?
  14. Hello, Do you have extracted downloaded file (with like winrar or similar software)?
  15. Hello, thanks, I'll add this.
  16. You speak about this script:
  17. 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).
  18. Hello, I'll fix it during next updates. Thanks.
  19. Droidz

    Window display..

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

    BattleGround

    Hello, Thanks I'll look. Can you share a log of bugged session please.
  23. Hello, If you can also share your the log of an bugged wrobot session (in Logs folder). Thanks.
  24. 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
  25. 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)
×
×
  • Create New...