Droidz
Administrators
-
Joined
-
Last visited
-
Currently
Using Personal Messenger
Everything posted by Droidz
-
There is something really wrong completing steps according to distance check
Hello, I have edited your profile with position of my current zone and it works fine, I am cannot tell you why you get this problem. Can you try to remove "Quest.HasQuest(39495) &&" in IsCompleteCondition
-
how to add random delay to cast interrupt?
Hello, you can try to use this c# code: System.Threading.Thread.Sleep(robotManager.Helpful.Others.Random(0, wManager.Wow.ObjectManager.ObjectManager.Target.CastingTimeLeft - 350)); wManager.Wow.Helpers.SpellManager.CastSpellByNameLUA("Spell Name In English"); with spell option "Not Spell, Is C# code" (and custom condition to check if your spell is ready and good distance and ...)
-
WRobot No DX less efficient ?
Hello, read this guide: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 If your problem is not resolved post new thread with your log files and more details.
-
"Can't attack that target" after looting
Hello, this problem is probably caused by your fightclass.
-
WOD 6.2.3 20779
Hello, wrobot for 6.2.3.20886 works on wow 6.2.3.20779 ( http://wrobot.eu/forums/topic/3671-wod-private-server/?do=findComment&comment=17210 )
-
Holding key to pause combat rotation
it is isKeyCurrentlyDown = IsShiftKeyDown(); it is not isKeyCurrentlyDown = IsShiftKeyDown
-
WRobot - Official
- 116 comments
- 6 reviews
- party chat command to Guild bank
-
Profile positions and "Action" column
Hello, c#: new System.Threading.Thread(() => { wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP, 250); for (var i = 0; i < 30; i++) { wManager.Wow.Helpers.Interact.InteractGameObject(wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWUnit(wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(45455)).GetBaseAddress, false, true); System.Threading.Thread.Sleep(350); }}).Start(); AAA - Cime du Vortex EDITED.xml
-
how to cast paralysis on focus or on other non target unit
With lua code like local targetExists = UnitExists("target"); TargetNearestEnemy(); FocusUnit("target"); if targetExists then TargetLastTarget(); else ClearTarget(); end or TargetNearestEnemy(); FocusUnit("target"); TargetLastTarget();
-
party chat command to Guild bank
Hello, use this c# code: if (wManager.Wow.Helpers.Party.IsInGroup()) { var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByName("Guild Chest")); if (o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress, true); } } (replace "Guild Chest" by game object name how is appear in game (you can get object name when you put mouse over)
-
How to make rotation spam next button
Hello, try to change all "spellInstance.Launch();" Launch params: Spell.Launch(bool stopMove, bool waitIsCast, bool ignoreIfCast, string luaUnitId) Use params like: spell.Launch(spell.CastTime > 0, false);
-
How to LUA program only to kill a specific number of mobs then possible log out / close game
Hello, you can get number of mob kills in "wManager.Statistics.Kills". The better way is to create plugin. But you can add this code in your custom profile: int maxKill = 10; if (wManager.Statistics.Kills >= maxKill && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore) { try { Memory.WowMemory.Memory.GetProcess().Kill(); // if you want close game } catch {} robotManager.Products.Products.ProductStop(); }
-
BUGS?
Hello, http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 (step 13). This error close WRobot?
-
Smart phone notification via Prowl APP
Hello, Sorry but I'll not add this feature.
-
selling not working
Hello, When you click on button "Go to town" tab "Tools" WRobot sell items? You can try to add action totown.
-
Holding key to pause combat rotation
Hello, you can use Alt-X or http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/?do=findComment&comment=11958
-
Garrison Fishing
Hello, tab "General settings", try to disable option "harvest herbs" and "harvest mines". if your problem is not resolved, please share your log file
- how make plugins??
-
Wotlk Wrobot crashes after the last update
Do you have check the temperature of your processor/graphics card?
-
Wotlk Wrobot crashes after the last update
You get this problem without fightclass? with another fightclass?
-
how to get the 15 min free
Hello, trial version works only on WRobot for private server.
-
use heal spell instead of regeneration
This save setting only for current character, to copy quickly you setting you can use this plugin http://wrobot.eu/files/file/421-settings-backup/
-
Rare Pet Taming..?
Hello, http://wrobot.eu/forums/topic/1530-pet-hunter-camping-module/?do=findComment&comment=7919 (old script)
-
ToPositionAndInteractWithNpc without pathfinding
Hello, Not tested, but like this: int entryIdNpc = 123456; var path = new List<Vector3>(); // your path MovementManager.Go(path); while (MovementManager.InMovement && Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore) { // Wait follow path Thread.Sleep(100); } MovementManager.StopMove(); if (path[path.Count - 1].DistanceTo(ObjectManager.Me.Position) < 10) { // easy way: GoToTask.ToPositionAndIntecractWithNpc(path[path.Count - 1], entryIdNpc); // no easy: /*var u = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(entryIdNpc)); if (u.IsValid) { // can need to go to but I'll not implement it Interact.InteractGameObject(u.GetBaseAddress); }*/ }