Everything posted by Droidz
-
Blocked from your website & bot not working...
Can you test again and say me if you have again the problem please.
-
WRobot works with wow hotfix 5.4.0 17399
Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
-
WRobot works with wow hotfix 5.4.0 17399
Hello, WRobot works with new wow hotfix, no update required. More informations about wow hotfix: click here.
-
Blocked from your website & bot not working...
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.
-
Profils du Quester
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()) )
-
Bot tries to attack other factions player pets
Hello, I'll look this.
-
Stuck in Combat
Hello, Can you share your log please. You have this problem only in this zone?
-
fight class
Hello, Do you have extracted downloaded file (with like winrar or similar software)?
-
Feature Request (Hotkey to start/stop)
Hello, thanks, I'll add this.
-
Request Power leveling Battle Pets! & Bug found
You speak about this script:
-
5.4 update?
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).
-
Make Compatible with Higher Resolution And Larger Text
Hello, I'll fix it during next updates. Thanks.
-
Window display..
Hi, xp/hr is good value? I'll look it.
-
How To Add Potion Into Profile?
Hello, in general settings tab macros (or you can add it in your fight class) Envoyé depuis mon MI 2 avec Tapatalk 4
-
Raid boss health condition.
In main wrobot window you have target info, health is correctly showed? Do you have wowhead link of the boss? Thanks.
-
BattleGround
Hello, Thanks I'll look. Can you share a log of bugged session please.
-
Profile Stops [In Combat Bug]
Hello, If you can also share your the log of an bugged wrobot session (in Logs folder). Thanks.
-
Swapping pets
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
-
Request Power leveling Battle Pets! & Bug found
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)
-
only queued for 1 BG when i have 2 BG ticked in Product Setting
Ok thanks, I have also problem when 1 still on queue, I have resolved problem, wait next update.
- Whisper in log
-
Selling dosnt work properly
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.
-
How to force attack on 'neutral' mobs.
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).
- 'Load Profile Grinder' not responding
-
Wrobot has stopped working
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.