Matenia
Elite user-
Posts
2230 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Matenia
-
Also it should be "Not spell, is Lua script", the other part is Lua code for the bot (so for example, using Lua to access the objectmanager etc).
-
You downloaded wRobot for 7.3.5 Legion and you're wondering why it doesn't work on 3.3.5 wotlk? Do a fresh install and download the one for 3.3.5
-
This is correct
-
Bot tries attacking friendly units
Matenia replied to triciamc's topic in WRobot for Wow Vanilla - Help and support
Has happened to me plenty of times and I could never find out what caused this. had to solve it through detargeting friendly units while Fight.InFight == true. -
Fight Class issue - help pls
Matenia replied to Kr8zycdn's topic in WRobot for Wow Vanilla - Help and support
No, there's an actual setting (upper left corner I believe) to set the range. In C# you implement a getter for the range property. -
Fight Class issue - help pls
Matenia replied to Kr8zycdn's topic in WRobot for Wow Vanilla - Help and support
Set range in fightclass editor to 25 or 30 yards -
You are running with your client forced to 60 Hz, vsync on and ALL of your monitors running at 60 Hz?
-
warmane bans
Matenia replied to zatvorgt's topic in WRobot for Wow Wrath of the Lich King - Help and support
Just use the 1-60 quester for Warmane: -
Make your own or buy FNV's or Eeny's quester profiles. For grinder, you should NEVER use anything public.
-
Warmane Honor Farming
Matenia replied to urkeysjim's topic in WRobot for Wow The Burning Crusade - Help and support
WRobot was never made for BGs. You only have limited options in creating your own profiles, but you definitely need to do it. It is not detected on Warmane and defaults Warden scans anyway. That being said, back in the day I botted 16 hours/day on most of my chars on Warmane and never got banned. Eventually, my main got caught because I was careless and they improved their "natural" detection. Also, depending on your class will you HAVE TO write your fightclasses in C# or they will be too obviously bots. -
-
Questie Addon and Wrobot
Matenia replied to Glacious's topic in WRobot for Wow Vanilla - Help and support
Don't use Questie. It hooks half of the UIs functions and overwrites some of their functionality. This WILL mess with wRobot. I'm one of the authors of the addon. Turn it off when you use wRobot -
Go To Trainers command (for all classes)
Matenia replied to ScripterQQ's topic in Quester assistance
Can this be added, pretty please? -
Dieser Lizens key ist für ein anderes Wrobot programm
Matenia replied to Quauhtemoc's topic in Deutsch
Auf Deutsch wird dir hier keiner helfen können. Frag auf Englisch im Supportforum nach, sowas kann nur Droidz beantworten. Schau mal unter https://wrobot.eu/clients/purchases/ ob dein 10 Session key dort überhaupt aufgeführt wird. -
paid FNV316 1-45 Quester Profile Pack Alliance Vanilla
Matenia commented on FNV316's file in Quester - Vanilla
-
It will only equip items with stats and ignore armor entirely The Lua error can be entirely ignored. It's one of the downsides of recreating tooltips. Too many people reported they had problems with auto equip prior to this update. It's really just a visual problem. Regarding the best quest reward, please check your log. If the bot says it's selecting one item, but wRobot is selecting another (the first item), this is a latency issue and can be solved by moving your wRobot latency settings anywhere from 350 to 500ms. If you have any issues with selling, you can disable the automatic vendoring feature. FNV's quester usually handles this very well and even recommends you disable this setting. I don't know what could cause your bot to not go selling at all, but I know during specific steps in the quester where you're expected to die a lot, vendoring gets disabled and the bot just follows a route before it all gets enabled again.
-
-
-
force drinking and sitting still
Matenia replied to dvdood's topic in WRobot for Wow Vanilla - Help and support
MovementManager.StopMoveTo(false, 1500) will stop the pot from running for 1.5 seconds. -
Decompile wManager.dll change: Vendor.BuyItem(wManagerSetting.CurrentSetting.FoodName, 1); Vendor.BuyItem(wManagerSetting.CurrentSetting.DrinkName, 1); Vendor.BuyItem(wManagerSetting.CurrentSetting.FoodName, 4); Vendor.BuyItem(wManagerSetting.CurrentSetting.DrinkName, 4); Recompile. Do this every wRobot update or wait for @Droidz to fix the loop that only goes for(var i=0; i < 10; i++), all he has to do is set it to 20 or 30.
-
[Vanilla] Me.Rooted state is not read correctly
Matenia commented on Matenia's bug report in Bug Tracker
With me rooted by Dragonmaw Rider: 09:23:42 - meUnitFlags: 528392 - targetUnitFlags: 557056 (ObjectManager.Me.Rooted: false) With me not rooted and no target: 09:25:20 - meUnitFlags: 4104 - targetUnitFlags: 0 -
Always returns false, even if the character is rooted. I think it is either implemented incorrectly (it checks for Influenced) or the offset for character state rooted is wrong. It works with Me.IsStunned.
-
Vanilla: ObjectManager.Me.GlobalCooldownEnabled always returns false
Matenia commented on Ordush's bug report in Bug Tracker
@Ordush @Droidz public static float GetGlobalCooldown() { string luaString = @" local i = 1 while true do local spellName, spellRank = GetSpellName(i, BOOKTYPE_SPELL); if not spellName or i >= 10 then break; end local start, duration, enabled = GetSpellCooldown(i, BOOKTYPE_SPELL); if enabled == 1 and start > 0 and duration > 0 then local cooldownLeft = duration - (GetTime() - start) --DEFAULT_CHAT_FRAME:AddMessage('GCD check for ' .. spellName .. ' ' .. cooldownLeft); if (cooldownLeft < 1500 and cooldownLeft ~= 0) then return cooldownLeft / 1000; end end i = i + 1; end return 0; "; return Lua.LuaDoString<float>(luaString); } Correct me if I'm wrong, but this should work (pure Lua, vanilla). Checks 10 first spells in spellbook for their cd. Rogues have 1 second GCD tho, so idk