Everything posted by Droidz
-
Refund Possible?
Hello, Can you read step 12: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If your problem is not resolved, can you send me screenshot of your wrobot window please.
-
Not solving Draenei or Dwarf artifacts
Changed Status to Fixed
-
Not solving Draenei or Dwarf artifacts
Hello, If you can wait next update and confirm that this problem is resolved.
-
Not solving Draenei or Dwarf artifacts
Changed Status to Awaiting Feedback Changed Version to All
-
After new update
Hello, if you can wait next update and tell me if problem is resolved.
-
Party Bot dont follow
http://wrobot.eu/bugtracker/recruit-a-friend-connected-players-do-always-have-dead-flag-r480/
-
"Recruit a friend" connected players do always have dead flag
Can you confirm than problem is resolved?
-
"hooking error" wow is closing
Hello, yes WRobot work with Windows 10. Read this: http://wrobot.eu/bugtracker/hooking-error-wow-is-closing-r325/?do=findComment&comment=2558 please share your log files.
-
patch
What is your current game version?
-
patch
Hello, relaunch WRobot and accept update. Regards
-
WRobot for Wow Legion build 7.0.3.2239 ready
Hello, WRobot support now Wow Legion pre-expansion patch (7.0.3.22396). If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here).
-
WRobot for Wow Legion build 7.0.3.22396 ready
Hello, WRobot support now Wow Legion pre-expansion patch (7.0.3.22396). If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here). View full article
-
[Gatherer] Advanced profile, how to change zone after level/time
Yes you can
-
Debug Helper
You can try addon like https://www.wowace.com/addons/bug-grabber/ You can also try to run one by one your scripts. If you need help share your scripts.
-
LICENSE KEY not working
Changed Status to Fixed
-
Debug Helper
Changed Status to Not a Bug Changed Version to All
-
Debug Helper
Hello, you can use command like http://wow.gamepedia.com/World_of_Warcraft_API#Debugging_Functions Share your script if you want help.
-
how can i use a profile ?
Hello, move quest profiles files in folder "WRobot\Quester", in WRobot, select product "Quester" (tab main), in to tab "Product Settings" and select your profile.
-
"Target Health Points"
Changed Status to Awaiting Feedback Changed Version to All
-
"Target Health Points"
Hello, This condition just return "ObjectManager.Target.Health" Can you give more informations (why you use this condition)?
-
Snippets Lua and C# codes for Fight Classes
Snippets C# codes for Fight Classes: http://wrobot.eu/forums/topic/3573-snippets-c-codes-for-fight-classes/ Snippets LUA codes for Fight Classes: http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/
-
Frostmage Fightclass using Proccs/Buffs
http://wrobot.eu/forums/topic/3573-snippets-c-codes-for-fight-classes/?do=findComment&comment=16508
-
Snippets C# codes for Fight Classes
Check character/target buff/debuff time left by spell id: Use condition type "C Sharp Code" with Value: wManager.Wow.ObjectManager.ObjectManager.Me.BuffTimeLeft(new List<uint> { 69369 }) >= 1000 Replace "69369" by your buff/debuff ID. Replace "Me" by "Target" to check buff/debuff on current target (you can also replace "Me" by "Pet" to check on the pet). ">= 1000" check if time left is "Bigger or Equal at 1000 millisecond", you can replace "1000" by required time left in millisacond. You can also replace ">=" by "<=" to check if "Smaller or Equal", or by "==" to check if "Equal" - http://www.tutorialspoint.com/csharp/csharp_relational_operators.htm ). To get list of player/target (de)buff id, you can go to tab "Tools" > "Development Tools" > (if you want check your target (de)buff select npc in game) > click on "Player/target buff/debuff".
-
Snippets C# codes for Fight Classes
Check if character/target buff/debuff stack count by spell id: Use condition type "C Sharp Code" with Value: wManager.Wow.ObjectManager.ObjectManager.Me.BuffStack(44544) >= 1 Replace "44544" by your buff/debuff ID. Replace "Me" by "Target" to check buff/debuff on current target (you can also replace "Me" by "Pet" to check on the pet). ">= 1" check if stack count is "Bigger or Equal at 1", you can replace "1" by required stack count. You can also replace ">=" by "<=" to check if "Smaller or Equal", or by "==" to check if "Equal" - http://www.tutorialspoint.com/csharp/csharp_relational_operators.htm ). To get list of player/target (de)buff id, you can go to tab "Tools" > "Development Tools" > (if you want check your target (de)buff select npc in game) > click on "Player/target buff/debuff".
-
Snippets C# codes for Fight Classes
Check if character/target have or not buff/debuff by spell id: Use condition type "C Sharp Code" with Value: wManager.Wow.ObjectManager.ObjectManager.Me.HaveBuff(69369) Replace "69369" by your buff/debuff ID. Replace "Me" by "Target" to check buff/debuff on current target (you can also replace "Me" by "Pet" to check on the pet). Add "!" before this code to check if not have (de)buff ( http://www.tutorialspoint.com/csharp/csharp_logical_operators.htm ). To get list of player/target (de)buff id, you can go to tab "Tools" > "Development Tools" > (if you want check your target (de)buff select npc in game) > click on "Player/target buff/debuff".