Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Droidz

Administrators
  • Joined

  • Last visited

Everything posted by Droidz

  1. Can you test again and say me if you have again the problem please.
  2. Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
  3. Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
  4. 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.
  5. Droidz replied to bear31's topic in Français
    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()) )
  6. Hello, I'll look this.
  7. Hello, Can you share your log please. You have this problem only in this zone?
  8. Hello, Do you have extracted downloaded file (with like winrar or similar software)?
  9. Hello, thanks, I'll add this.
  10. 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).
  11. Hello, I'll fix it during next updates. Thanks.
  12. Droidz commented on Ohren's bug report in Bug Tracker
    Hi, xp/hr is good value? I'll look it.
  13. Hello, in general settings tab macros (or you can add it in your fight class) Envoyé depuis mon MI 2 avec Tapatalk 4
  14. Droidz commented on Ohren's bug report in Bug Tracker
    In main wrobot window you have target info, health is correctly showed? Do you have wowhead link of the boss? Thanks.
  15. Droidz commented on Strike's bug report in Bug Tracker
    Hello, Thanks I'll look. Can you share a log of bugged session please.
  16. Hello, If you can also share your the log of an bugged wrobot session (in Logs folder). Thanks.
  17. 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
  18. 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)
  19. Ok thanks, I have also problem when 1 still on queue, I have resolved problem, wait next update.
  20. Problem fixed, wait next update.
  21. 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.
  22. 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).
  23. Ok thanks I'll look. You can download wrobot with the link of mega? (For view if the problem is on mmorobot server or no)? Do you have try to download wrobot with anothers internet browers? If another has this problem and can share the error message. Thanks.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.