headcrab
Members-
Posts
93 -
Joined
Recent Profile Visitors
1155 profile views
headcrab's Achievements
Newbie (1/14)
32
Reputation
-
Pudge reacted to a file: Profession helper
-
DoptFree reacted to a file: Battleground Helper (former Real Auto Accept BG)
-
Try this plugin, it has skinning workaround
-
Huge FPS Drops and freezes while using Battlegrounder
headcrab replied to ScripterQQ's topic in Battlegrounder assistance
Warmane has lags on high populated battlefields, like IoC. And if your fightclass has high fps settings, it will 100% freeze wow client, because client cant handle all robot commands. Simply leave such BG's or slow down your fightclass and all plugins. If you lpay random, use BG blacklist and this plugin: -
vanbotter reacted to a post in a topic: PVP plugins - track enemy players for example
-
PVP plugins - track enemy players for example
headcrab replied to vanbotter's topic in General discussion
You can also try Battleground Helper plugin - it can track enemy players on battlefields when Radar3D switched on, but there are few nice WoW addons (like HHTD) that can do it much better. But Battleground helper can autofocus enemy healers, visual part is just for fun -
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
Why not? Tricky but not impossible. Use c# condition like this new Func<bool>(() => { WoWUnit u = ObjectManager.GetWoWUnitHostile() .Where(u => ObjectManager.Me.Target != u && u.IsAlive && u.GetDistance<20 && bla bla bla) .OrderBy(u => u.GetDistance) .FirstOrDefault(); if (u != null) { Interact.InteractGameObject(u.GetBaseAddress, true, false); return true; } else { return false; } }).Invoke this will switch target for cast current spell and return true (so, enable polymorph cast)
-
Marsbar reacted to a file: Profession helper
-
miltonbrad started following headcrab
-
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
Lua function IsEquippableItem called in disenchant procedure. Did you put true for "DE green items" option? Anyway, IsEquippableItem is present in vanilla WoW: http://vanilla-wow.wikia.com/wiki/API_IsEquippableItem I did not tested disenchant in vanilla, maybe it not works. You can try to fix this error: open plugin in notepad, find 'IsEquippableItem' (line 77) and comment this line like this: //if (!Lua.LuaDoString<bool>("return IsEquippableItem(" + item.Entry + ")")) continue;
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
- 28 comments
-
- profession
- tailoring
-
(and 5 more)
Tagged with:
-
there is plugin
-
BetterSister reacted to a file: LuaSpy
-
Version 1.0.0
97 downloads
This is developer's plugin. Sometimes is usefull to see what Lua commands robot sends to WoW client. But for now all Lua strings in wrobot are encrypted. There are many ways to see this strings, but i found Harmony library with which the process became very simple. Also this library can be usefull to patch wrobot code on runtime. copy 0Harmony.dll to Bin folder copy LuaSpy.dll to Plugins folder enable plugin and start any product In console window you will see Lua commands like this: [D] 16:15:22 - [LuaSpy] Int32 GetSpellCooldownTimeLeft(System.String) [D] 16:15:22 - [LuaSpy] local t = 0; local start, duration, enabled = GetSpellCooldown('Snake Trap'); if enabled then t = math.floor((start + duration - GetTime()) * 1000); if t < 0 then t = 0; end end return t; [F] 16:15:22 - [Spell] Cast Snake Trap (Snake Trap) [D] 16:15:22 - [LuaSpy] Int32 get_LatencyReal() [D] 16:15:22 - [LuaSpy] local _, _, lagHome, lagWorld = GetNetStats(); return lagHome + lagWorld; [F] 16:15:23 - [FightClass] Launch C# code: /*castOnGround("Snake Trap",40)*/ There are always 2 sequental strings marked with [LuaSpy] calling method signature called lua In settings you can also add filter tokens for calling method. There are no screenshort, because in 2.x they all like this main picture: -
battlegrounder dont work on priv server 7.3.5
headcrab replied to manny80's topic in WRobot for Wow Legion - Help and support
Some private servers detect and disable protected function AcceptBattlefieldPort. If so, you have to patch wrobot and use plugin: