Everything posted by Droidz
-
General settings in WRobot
Hello, try https://wrobot.eu/files/file/421-settings-backup/
-
Wrobot stopped working, and it was possible to drop FPS
Hi, try to disable your addons, if problem is not resolved try to contact fightclass creator, hi has a lot of error maybe it is know issue or bad installation.
-
Usefuls.IsLoadingOrConnecting
Hi, Use "Usefuls.InGame" To detect if UI was reloaded you can assign lua variable and check value when you need (after reloadui value will be "nil")
-
how to wait for the mobs come
Hello, you cannot change that
-
Adding plugin code to "base" code
Hi, problem is that WRobot don't unload loaded dll (or code), if you start/stop several times your code will don't found what dll use. You can try to use "Var" like that (no tested): public void Initialize() { robotManager.Helpful.Var.SetVar("TakeDeepRunTram", new Action(() => TakeDeepRunTram())); } public static void TakeDeepRunTram() { //code to enter portal, take tram and leave through other portal } in offmesh use: c#: robotManager.Helpful.Var.Var.GetVar<Action>("TakeDeepRunTram")();
-
Long collection of resources
Hello, try to activate "use lua to move" in advanced general settings
-
throw object out of the bag
https://wrobot.eu/forums/topic/5678-remove-item-from-bag/?do=findComment&comment=25887 Seems to works on wotlk
-
throw object out of the bag
Hello, what is your game version?
-
settings window can't resize
Hello, step 14: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
-
Depecage. pas d'ataque auto
Bonjour, vous devez faire un profil "Grinder" (grinder permet de choisir les mobs à attaquer)
-
FPS Rate after last Update
Hello, The new update should not cause this problem. Are you sure this problem is recent? you haven't updated your fightclass / plugins / wow addons? or change antivirus or other program?
-
Go To Trainers command (for all classes)
option train new spell is enabled?
-
Go To Trainers command (for all classes)
you need to have trainer in npc db (or in your profile) (and wait ~15 seconds)
-
Gathering guest object too fast
WRobot does not base this on time, but it checks whether the character is picking up the object or not (casting bar). Try to increment your min latency.
-
Gathering guest object too fast
Hi, You are sure that problem is not caused by an wow addons or wrobot plugins/fightclass?
-
Enter corpse in Dungeon
try using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { var badCorpsePos = new Vector3(-3362.286f, 4665.728f, -22.70619f); var enterDungeonPos = new Vector3(-3362.163f, 4636.226f, -101.049f); Logging.Write("[EnterCorpse] Started."); wManager.Events.OthersEvents.OnPathFinderFindPathResult += (from, to, path, mpq, success) => { if (ObjectManager.Me.IsDead && to.DistanceTo(badCorpsePos) < 10) { path.Clear(); path.AddRange(PathFinder.FindPath(enterDungeonPos)); } }; } public void Dispose() { Logging.Write("[EnterCorpse] Disposed."); } public void Settings() { MessageBox.Show("??"); } }
-
Enter corpse in Dungeon
Hello, if you can walk from detected corpse position to dungeon enter without obstacle try: using System.Windows.Forms; using robotManager.Helpful; public class Main : wManager.Plugin.IPlugin { public void Initialize() { Logging.Write("[EnterCorpse] Started."); wManager.Events.OthersEvents.OnPathFinderFindPathResult += (from, to, path, mpq, success) => { if (to.DistanceTo2D(new Vector3(-3362.286f, 4665.728f, -22.70619f)) < 30) { path.Add(new Vector3(new Vector3(-3362.163f, 4636.226f, -101.049f))); } }; } public void Dispose() { Logging.Write("[EnterCorpse] Disposed."); } public void Settings() { MessageBox.Show("??"); } }
-
bot stuck in water.
Hello, try to disable you wow addons. Check if it is not profile problem. You can activate "Radar3d" (tab "Map") to see wath wrobot try to do.
- Sudden Crashes - [Fight] Mob Has moved more than 45 yards
-
Suggestions - Relogger
Hi, The connection between the relogger and WRobot and very basic, he cannot read what WRobot does. You can do this if you combine the relogger with a custom quest profile (or the "Schedule" product)
-
freezes when using function "for friends"
Hello, you can try to start WRobot with shortcut "WRobot (No Lock Frame)"
-
Error after restart wrobot
Hello, try to restart your computer and remove folder "D:\BOTs\WRobot 3.3.5\Profiles\Quester\Cache\"
-
Update Broke 3.3.5
@User157 try with new update @Smokie it is probably because WRobot is running, try to restart computer and relaunch updater
- Error when trying to install