Everything posted by Droidz
-
ignore flying mobs
Hello, you need to attack this type of mobs? if not you can blacklist these
-
Shaman Ghost Wolf between mobs
Can you tell me when he don't leave ghost wolf please?
-
AH Bot Wrobot
Hello, sorry you cannot do that
-
Stop bot plugin time
Hello, if (System.DateTime.Now.TimeOfDay.Hours == 20 && System.DateTime.Now.TimeOfDay.Minutes == 0) robotManager.Products.Products.ProductStop(); (not tested)
-
ObjectManager.Me.Race
Try to use ObjectManager.Me.WowRace instead (or lua)
-
Is Lua.LuaDoString using a lock?
Hello, (when you don't use lock frame) Lua is slow because WRobot need to inject code in wow (that run in next frame refresh). If you call 5 times lua (on 1 thread) you need to wait ~5 wow frames, ~80ms with 60 fps. You can: - lockframe (it is a easier way, and in some case better) - avoid to use lua (but a lot of wrobot api methods use lua it is hard to know what methods you can use or not) - try to avoid useless lua call (by sample if you use "if (lua.do("is ok") && me.health < 10 && me.havetarget)" replace it by "if (me.havetarget && me.health < 10 && lua.do("is ok"))" - combine your lua scripts (if you use several lua calls in one condition try to combine it to one call)
-
Wotlk Wrong Version?
I really think it's not the default client, try to re upload wow to another site Try also to install Slimdx and vc++: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
-
Remote Screen not updating
Run in windowed mode (not maximized, minimized or full screen)
-
"Wanding"
hello, this code is for Vanilla
-
Bad dinterract npc distance
Hello, wait next update and use this: wManager.Wow.ObjectManager.WoWUnit.MaxInteractDistance = 50.0f; wManager.Wow.ObjectManager.WoWUnit.MinInteractDistance = 4.3f;
-
need som help, wont mount. [VANILLA]
It is what you said but I need to see it, if you want help share log of session without addons and plugin enabled please, if you don't want do it I cannot help you
-
need som help, wont mount. [VANILLA]
[E] 14:12:33.628 - Warning: It is recommended to disable all wow AddOns. Disable wow addons and share your log of session without addon please
-
Pulls mobs without pet, then trying to summon in combat
Hello, I think it is fightclass problem
-
Remote Screen not updating
Hello, do you use window mode (and not maximized and not minimized)? Do you have error in your log?
-
Wotlk Wrong Version?
Hello, I still need a log file
-
Server connection...
sorry, step 7: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
-
Server connection...
Hello, can you read this: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ install "Slimdx" and "vc++ 2010"
-
Probleme pour prendre quette
Bonjour, ce problème vient probablement de votre profil, essayer de désactiver l'étape (step) dans l'onget "product settings"
-
[vanilla] mesh error (video provided)
Hello, add offmesh connection: https://wrobot.eu/forums/topic/5283-offmesh-connections/ (I'll try to fix it server side)
-
need som help, wont mount. [VANILLA]
Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
Bot stopping when opening other apps in full screen
if you use windows 10 you can try to use virtual desktop windows
-
Deeprun Tram broken pathfinding
ok thank I'll generate new meshes wait few hours
-
Deeprun Tram broken pathfinding
it is only in continent name DeeprunTram ?
-
Deeprun Tram broken pathfinding
Someone have tram gameobject entry id?
-
Minimize CPU
Hello, You get this problem with all profiles or only quester profiles?