Everything posted by Droidz
-
survey spell not found, stopping bot
Hello, Your character has Archaelogist skill? Can you share full log file please (you can found it in "Logs" folder).
-
Bug: Swift Flight Form and Gathering
Hello, Sorry I am in holiday this week sorry for the delay. Do you have try without fightclass (to check if bug is caused by fightclass)? If you can try to activate/desactivate option "Ignore fight during farm if druid form" in advanced general settings. I cannot give good support now, I end holiday this weekend I'll look this problem with more detail next week.
-
Pet Swapping and Pet Slot Changes
Hello, For change pet after first capacity you can use this script: (I'll look it, but for the moment I haven't added support for use the favorites pets). Can you give me link to download PokeRotation (PQR can work with WRobot, but I ignore if PQR is yet detected by bliz).
-
droord fight form - bear
actHello, Do you have try another fightclass? http://wrobot.eu/files/category/11-druid/ What fightclass do you use currently?
-
[Rogue] Using vanish when in combat for too long ?
Hello, Currently this is not supported, you can try attached file it but I am not sure than this works. You can also try to use lua code to make timer. testVanish.xml
-
Wrobot error
Hello, Can you share your log file (in "Logs" folder).
-
Targeting problem
Hello, Do you use your own profile? If not if you can check if mobs id is in profile (mob id can change since if the profile is old). You can also check if current zone (or mobs) isn't in blacklist (go to tab Map, don't forget to activate landmark Blacklist). You can also diminished max unit hostile near (in advanced general settings). If problem is not solved, can you send me full log file (You can found it in Logs folder).
-
Vendor -> Guild Page
Yes, with profile creator (edit your profile) or with NPC DB (in tab Tools).
- Bot won't start past Load
-
Vendor -> Guild Page
Hello, I'll look for add it (currently not supported). Thanks.
-
WRobot does nothing after Login
Hello, Problem resolved:
- Bot won't start past Load
-
Bot wont get past Launch Bot
Hello, Problem resolved:
-
Having issue
Hello, Problem resolved:
-
Ready for wow 5.4.8.18414
WRobot support last wow hotfix (Ready for wow 5.4.8.18414). You need only to accept WRobot update. Have a great day!
-
Ready for wow 5.4.8.18414
WRobot support last wow hotfix (Ready for wow 5.4.8.18414). You need only to accept WRobot update. Have a great day!
-
My mount starts flying into the sky for hrs, and once in a while bot crash.
If you can try with the new wrobot update and say me if problem persists (please share your log file if problem is not resolved).
-
HF [On s’est déjà rencontré ?] demande d'aide
Le profile "Anti Afk alone.cs" ne charge pas toutes les options du bot, utilisez le profile "Anti Afk with fight.cs". Si le problème persiste, essayez de changer le raccourci clavier de la touche (il est possible que la touche égale pose des problèmes, le bot est compatible avec les claviers azerty et qwerty ce qui peut poser des problèmes sur certaine touche spéciale si ce n'est pas les même sur les deux types de clavier).
-
Player ignored, stop botting when player is around
Hello, With option "Pause bot if Nearby Player" activated, you cannot ignore player by group, only player by name. To it, click on button "Player ignored" and add the name of all players at ignore (case sensitive).
-
Evade
Hello, I found it strange. Please share your log (I'll look if I find an problem). I ignore what fightclass do you use, but you can try another fightclass. You can also try another profile (or use bot "Automaton" (works without profile)). I recommand also to add to blacklist mobs or zones which cause this bug (in tab "Tools", button "Blacklist...").
- MAGE FOOD CONJURE/ Tundra Mount Vendor
-
My mount starts flying into the sky for hrs, and once in a while bot crash.
Do you have try to reinstall framework 4.0 and WRobot? You have also disabled windows firewall and windows defender? Do you have problems sometimes when you navigate on this website (page not found, ...)? Your internet connexion is stable?
-
Mounting failed - bot shuts down
Hello, When you start bot, wrobot use correctly the flying mount? Do you have try to change your flying mount (in general settings) (case sensitive)?
-
Error with pools
Hello, What is zone name of this profile?
-
Can you tell me why this isnt working?
local DiseasesFound = 0; if not (UnitIsDead("target")) and not (IsFlying("player")) and not (IsResting("player")) and not (UnitIsAFK("player")) then --[[ refresh the Diseases on the target if there are less then 3 sec left (to be sure that it dont run out while a fight ]] local timeLeftToCastAgain = 3; local idDiseases={59879,59921} --[[ Blood Plague,Frost Fever ]] idDiseases[1]={59879,59921} --[[ Outbreak,Plague Strike ]] idDiseases[2]={77575,45462} --[[ Outbreak,Icy Touch ]] idDiseases[3]={77575,45477} local now=GetTime(); for i=1,3,1 do local spell=""; --[[local DiseaseFound=() NOT USED ]] for j=1,2,1 do spellname=GetSpellInfo(idDiseases[i][j]) local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, shouldConsolidate, spellId = UnitBuff("target",spellname); if (name==spellname) then local expireTimeLeft = expirationTime-now; DiseasesFound=idDiseases[i][j] if (expireTimeLeft < timeLeftToCastAgain) then if (IsUsableSpell(spellname)) then local start, duration, enable = GetSpellCooldown(spellname) if (duration==3) then CastSpellByName(spellname); spell=spellname; end end end break; end end if (DiseasesFound==0) then for j=1,2,1 do local spellname=GetSpellInfo(idDiseases[i][j]) if (IsUsableSpell(spellname)) then local start, duration, enable = GetSpellCooldown(spellname) if (duration==0) then CastSpellByName(spellname); spell=spellname; break; end end end end if not (spell=="") then print("Diseases: "..spell) result=true break; end end end result=(DiseasesFound>0) --[[ replace result=(diseased>0)]] Try it