Everything posted by Droidz
-
Any chance for TBC support?
I continue to work on it, I need to finish to correct Quests and PVP API. I think release the beta version this weekend or during next week.
-
Can't download bot, virus detected
I reported again the false positive at microsoft (you can report this here: https://www.microsoft.com/en-us/security/portal/submission/submit.aspx# )
- UseItemOn lower than 4.5?
-
[Profile generators] Possibility to override min range of 4.5 (example UseItemOn)
Hello, I'll fix it, I comeback here when is fixed.
-
Unhuman movement [really]
Hello, if your problem is not resolved don't forget to share your log file .
-
Relogger Bug
Hello, i'll fix it. I comeback here when is done
-
Use Item (from quest) on target
Hello, to ignore fight, you can run this c# code before pulse quest: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=13088 To use item on hostile npc, you can also use this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12204 What version of Wow do you play?
-
Herbalism error
Hello, yes after farm WRobot add spot to blacklist for 120 secondes if you use flying mount, or 60 seconde if you use ground mount. You can use this plugin to clear automaticly blakclist (blacklist is clear all 2 sec by default, replace "2" by "60" line 16 if you want clear all 60 secondes): http://wrobot.eu/forums/topic/2747-clear-session-blacklist/?do=findComment&comment=12547
-
Any chance for TBC support?
For the moment I have not found two WRobot features, "Aura.Owner" (I ignore if in BC npc can get several time the same buff casted by several player) and "WoWUnit.CastingCanInterrupt".
-
quester profile quête de classe
Vous pouvez appuyer sur une touche avec ce code c#: robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.Escape); (liste des touches: https://msdn.microsoft.com/fr-fr/library/system.windows.forms.keys(v=vs.110).aspx )
-
Any chance for TBC support?
Because I get many request, I will try to add TBC support at WRobot (I have not release date for the moment, but I progressing well)
-
quester profile quête de classe
Pour la quête http://www.wowhead.com/quest=28812 rajoute dans quest order (juste après l'étape pickup) une step (etape) de type run lua code avec le code: RunMacroText("/reload") (c'est un bug de wow qui dure depuis un moment)
-
quester profile quête de classe
Bonjour, votre code est faux (le "return true;" est en trop), voila un exemple simple pour cette quête (qui fonctionne): Corruption.xml Corruption.xml
-
Command to party By Party Chat
After "var msg = chat.ReadMsg();" (line 34) you can add this line: Logging.Write("Channel = " + ((int)msg.Channel) + " (message: " + msg.Msg + ")"); (this line writte in log tab the channel number, when you get channel number, you can remplace 49 in "(int)msg.Channel == 49" by your channel number)
- LootFilterWrobot
-
boat/Zeppelin
Hello, you want it in quester profile? If yes For the portals you can look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12213 (add c# code to cast mage portal) For taxi you can look this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12205 But currently no way to take boat/zeppelin.
-
Profil raid
Hello, http://wrobot.eu/forums/topic/1925-sample-dungeon-profile/
-
[WoTLK] Follow path, ignoring NPCs until path is complete
Hello, To disable detection when player is attacked, use this c# code: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/#comment-13088 To use this code, you have a lot of ways, the more easy ways is to add this on your profile like this: http://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ or you can run this code in tab "Tools" > "Dev... tools" > paste code in textbox and click on button "Run c# code...".
- [WOTLK] How to get the tank
-
Snippets codes for quest profiles
Train spells This sample is for WoD, in this sample the profile train the spell http://www.wowhead.com/spell=2018/blacksmithing at http://www.wowhead.com/npc=514/smith-argus : TrainSpell.xml To adapt this profile at you, in "Is complete condition" quest option replace "2018" by your spell id, in "hotspots" put your trainer position and in "target entry" put your trainer entry id.
-
[WOTLK] How to get the tank
On WOTLK "UnitGroupRolesAssigned" change, try this (not tested): public WoWPlayer GetPartyTank() { WoWPlayer tank = new WoWPlayer(0); var lua = @" for groupindex = 1,MAX_PARTY_MEMBERS do if (UnitInParty('party' .. groupindex)) then local isTank, isHealer, isDamage = UnitGroupRolesAssigned('party' .. groupindex); if isTank then local name = UnitName('party' .. groupindex); return name; end end end return ''; "; // Get tank name string tankName = Lua.LuaDoString<string>(lua); if (!string.IsNullOrEmpty(tankName)) { tankName = tankName.Trim().ToLower(); //foreach (var p in Party.GetPartyHomeAndInstance()) foreach (var p in ObjectManager.GetObjectWoWPlayer()) { if (p != null && p.IsValid && p.Name.Trim().ToLower() == tankName) { tank = new WoWPlayer(p.GetBaseAddress); break; } } } return tank; }
-
bug quest bot
Bonjour, ce profile data de 2013, il est possible que depuis des quêtes n'existe plus (du coup WRobot reste devant le PNJ et que la quête soit dispo (ce qui arrive jamais)). (vous pouvez désactiver le étapes ou WRobot reste bloqué avec le bouton "Profile settings (enable/di..." onglet "Product Settings").
-
Bug pour entrer en BG
Bonjour, Je suis désolé mais je ne pourrais pas résoudre ce problème (vous n'utilisez pas la dernière version de WRobot). Sauf les messages d'erreurs que vous recevez (quand WRobot essaye de ce réinscrire dans un BG), quand le BG et dispo, WRobot l'accepte?
-
Strange Behaviour
Hello, please wait next update and tell me if problem is resolved.
-
Relogger - WoW window alignment
Hello, you speak about option "Wow window position and size:"? You use last version of WRobot?