Everything posted by Droidz
-
Ressurection on Spirit Healer won't work with this "button"
Hello, can you give me the name of the button (Return me to life): http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
-
Spell Condition check "Buff"
Do you have try to use lua ( http://wow.gamepedia.com/World_of_Warcraft_API )?
-
Flightmaster
Do you get errors (or debug message about flightmaster) in your log?
- bug Version
-
Need help with buy ur products.
Hello, sorry I don't accept "WebMoney".
-
TargetBuffCastedByMe 3.3.5 Servers (Anyone who uses this please look at)
Hello, I tried and seem works fine, the problem is probably caused by your server. You can get list of taget buffs in tab tools > dev... tools > memory info... (this contain owner buff). EDIT: I think I have found problem, i'll fix it in next updates.
-
Implement auto Need/Greed loot?
Can you try again with this file please: GroupLoot Wotlk.cs
-
Crash
Hello, try to remove folder "WRobot\Data\Meshes\"
-
Automaton
Hello, try to remove folder "WRobot\Data\Meshes"
-
LUA Spells I need
Hello, you need to use http://wow.gamepedia.com/API_RunMacroText like this: RunMacroText('/cast !shoot')
-
C# Lua to Multiple Variables
Hello, like this: var r = Lua.LuaDoString<List<string>>( string.Format(@"local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, canStealOrPurge, shouldConsolidate, spellId, canApplyAura, isBossDebuff, isCastByPlayer = UnitAura('player', 'BUFF_NAME'); return name .. '{0}' .. rank .. '{0}' .. icon;", Lua.ListSeparator)); if (r != null && r.Count == 3) { var name = r[0]; var rank = r[1]; var icon = r[2]; }
-
Auto Facing Mobs
Hello, what product do you use?
-
Spell Condition check "Buff"
Hello, do you have try to use spell condition "Is Spell Overlayed"?
-
how do i enable "review file" option at profile downloads?
Hello, is enabled.
-
Flightmaster
Hello, Yes you can edit file "WRobot\Settings\TaxiNodes.xml" or use "Taxi database" in tab "Tools". But it is hard, the best way if you want add flightmaster is to start bot near flightmaster.
-
Unable to start/connect game
Hello, try to launch WRobot with the shortcut "WRobot No DX". If this don't works, read all this steps: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (if problem is not resolved, please share your log file please).
-
Cooldown Time Left
Hello private Spell killingSpree; //... var timeLeftMs = wManager.Wow.Helpers.SpellManager.GetSpellCooldownTimeLeftBySpellName(killingSpree.Name); or private Spell killingSpree; //... var timeLeftMs = wManager.Wow.Helpers.SpellManager.GetSpellCooldownTimeLeft(killingSpree.NameInGame); (method "ObjectManager.Me.CooldownTimeLeft(string spellName, bool isSpellNameInGame = false);" bug in this wrobot version)
-
Can't download bot, virus detected
I have contacted Microsoft to report the false positive detection.
-
Can't download bot, virus detected
Hello, what antivirus do you use?
- Command to party By Party Chat
-
Party chat command
Usage sample here: http://wrobot.eu/forums/topic/2834-command-to-party-by-party-chat/
- 8 comments
- 1 review
-
Rotation Bot Bug when stun
Your server seem change character target when is stunned/silenced. You get this problem only with WRotation? Do you have try to disable your wow addons? try with anothers fightclass?
-
Rotation Bot Bug when stun
Hello, can you share your log file please (just after bug) http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ .
-
Help with quest
Try with this: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12204 Replace if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 25) by if (ObjectManager.Target.IsValid && !ObjectManager.Target.IsAlive)
-
Grinder Action
You need to put in action: c#: wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; but you need also to wait next udapte of WRobot (ForceIgnoreIsAttacked is not released yet).