<?xml version="1.0"?>
<rss version="2.0"><channel><title>Bug Tracker: Bug Tracker</title><link>https://wrobot.eu/bugtracker/?d=3</link><description>Bug Tracker: Bug Tracker</description><language>en</language><item><title>[Security] CastSpellByName</title><link>https://wrobot.eu/bugtracker/security-castspellbyname-r1622/</link><description><![CDATA[<p>
	Hello <a contenteditable="false" data-ipshover="" data-ipshover-target="https://wrobot.eu/profile/1-droidz/?do=hovercard" data-mentionid="1" href="https://wrobot.eu/profile/1-droidz/" rel="">@<span style="color:#ff0000;">Droidz</span></a>,
</p>

<p>
	I would like to propose an improvement to WRobot's spell casting functionality that enhances both evasion capabilities and reliability on servers that implement Lua-based detection mechanisms.
</p>

<p>
	<strong>Problem Statement</strong>
</p>

<p>
	Several private servers employ Lua hooks on the <code>CastSpellByName</code> function to detect and flag bot activity. The current implementation's reliance on this Lua function creates a detectable pattern that can be exploited for bot identification.
</p>

<p>
	<strong>Solution Overview</strong>
</p>

<p>
	I have developed two native methods that bypass the Lua layer entirely, thereby reducing the bot's detectable footprint:
</p>

<p>
	<strong>Method 1: Direct Spell ID Resolution</strong>
</p>

<p>
	The <code>GetSpellIdByName</code> method directly invokes the game's internal <code>GetSpellIdByName</code> function (0x00540200), retrieving both the spell ID and rank without requiring Lua interaction:
</p>

<pre class="ipsCode prettyprint lang-c prettyprinted"><span class="pln">    </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">static</span><span class="pln"> </span><span class="typ">int</span><span class="pln"> </span><span class="typ">GetSpellIdByName</span><span class="pun">(</span><span class="pln">string spellName</span><span class="pun">,</span><span class="pln"> out </span><span class="typ">int</span><span class="pln"> rank</span><span class="pun">)</span><span class="pln">
    </span><span class="pun">{</span><span class="pln">
        rank </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span><span class="pln">

        </span><span class="kwd">try</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span class="typ">uint</span><span class="pln"> </span><span class="typ">GetSpellIdByNameAddr</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0x00540200</span><span class="pun">;</span><span class="pln">

            </span><span class="com">// Allocate space for spell name string</span><span class="pln">
            var nameBytes </span><span class="pun">=</span><span class="pln"> </span><span class="typ">System</span><span class="pun">.</span><span class="typ">Text</span><span class="pun">.</span><span class="typ">Encoding</span><span class="pun">.</span><span class="pln">UTF8</span><span class="pun">.</span><span class="typ">GetBytes</span><span class="pun">(</span><span class="pln">spellName </span><span class="pun">+</span><span class="pln"> </span><span class="str">"\0"</span><span class="pun">);</span><span class="pln">
            </span><span class="typ">uint</span><span class="pln"> nameSpace </span><span class="pun">=</span><span class="pln"> wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">AllocData</span><span class="pun">.</span><span class="typ">Get</span><span class="pun">(</span><span class="pln">nameBytes</span><span class="pun">.</span><span class="typ">Length</span><span class="pun">);</span><span class="pln">

            </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">nameSpace </span><span class="pun">&lt;=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">)</span><span class="pln">
                </span><span class="kwd">return</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span><span class="pln">

            </span><span class="com">// Allocate space for rank (int = 4 bytes)</span><span class="pln">
            </span><span class="typ">uint</span><span class="pln"> rankSpace </span><span class="pun">=</span><span class="pln"> wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">AllocData</span><span class="pun">.</span><span class="typ">Get</span><span class="pun">(</span><span class="lit">4</span><span class="pun">);</span><span class="pln">

            </span><span class="com">// Allocate space to store the return value (spell ID from eax)</span><span class="pln">
            </span><span class="typ">uint</span><span class="pln"> spellIdSpace </span><span class="pun">=</span><span class="pln"> wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">AllocData</span><span class="pun">.</span><span class="typ">Get</span><span class="pun">(</span><span class="lit">4</span><span class="pun">);</span><span class="pln">

            </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">nameSpace </span><span class="pun">&lt;=</span><span class="pln"> </span><span class="lit">0</span><span class="pln"> </span><span class="pun">||</span><span class="pln"> rankSpace </span><span class="pun">&lt;=</span><span class="pln"> </span><span class="lit">0</span><span class="pln"> </span><span class="pun">||</span><span class="pln"> spellIdSpace </span><span class="pun">&lt;=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">)</span><span class="pln">
                </span><span class="kwd">return</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span><span class="pln">

            </span><span class="com">// Write spell name to memory</span><span class="pln">
            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WriteBytes</span><span class="pun">(</span><span class="pln">nameSpace</span><span class="pun">,</span><span class="pln"> nameBytes</span><span class="pun">);</span><span class="pln">
            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WriteInt32</span><span class="pun">(</span><span class="pln">rankSpace</span><span class="pun">,</span><span class="pln"> </span><span class="lit">0</span><span class="pun">);</span><span class="pln">
            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WriteInt32</span><span class="pun">(</span><span class="pln">spellIdSpace</span><span class="pun">,</span><span class="pln"> </span><span class="lit">0</span><span class="pun">);</span><span class="pln">

            var </span><span class="kwd">asm</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="kwd">new</span><span class="pun">[]</span><span class="pln">
            </span><span class="pun">{</span><span class="pln">
                </span><span class="str">"push "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> rankSpace</span><span class="pun">,</span><span class="pln">           </span><span class="com">// Push pointer to rank (2nd arg)</span><span class="pln">
                </span><span class="str">"push "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> nameSpace</span><span class="pun">,</span><span class="pln">           </span><span class="com">// Push pointer to name (1st arg)</span><span class="pln">
                </span><span class="str">"call "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="typ">GetSpellIdByNameAddr</span><span class="pun">,</span><span class="pln">
                </span><span class="str">"add esp, 8"</span><span class="pun">,</span><span class="pln">
            
                </span><span class="com">// Store the spell ID (eax) to spellIdSpace</span><span class="pln">
                </span><span class="str">"mov ecx, "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> spellIdSpace</span><span class="pun">,</span><span class="pln">
                </span><span class="str">"mov [ecx], eax"</span><span class="pun">,</span><span class="pln">

                </span><span class="str">"retn"</span><span class="pln">
            </span><span class="pun">};</span><span class="pln">

            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">InjectAndExecute</span><span class="pun">(</span><span class="kwd">asm</span><span class="pun">);</span><span class="pln">

            </span><span class="com">// Read back the spell ID and rank</span><span class="pln">
            </span><span class="typ">int</span><span class="pln"> spellId </span><span class="pun">=</span><span class="pln"> wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">ReadInt32</span><span class="pun">(</span><span class="pln">spellIdSpace</span><span class="pun">);</span><span class="pln">
            rank </span><span class="pun">=</span><span class="pln"> wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">ReadInt32</span><span class="pun">(</span><span class="pln">rankSpace</span><span class="pun">);</span><span class="pln">

            </span><span class="com">// Free allocated memory</span><span class="pln">
            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">AllocData</span><span class="pun">.</span><span class="typ">Free</span><span class="pun">(</span><span class="pln">nameSpace</span><span class="pun">);</span><span class="pln">
            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">AllocData</span><span class="pun">.</span><span class="typ">Free</span><span class="pun">(</span><span class="pln">rankSpace</span><span class="pun">);</span><span class="pln">
            wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">AllocData</span><span class="pun">.</span><span class="typ">Free</span><span class="pun">(</span><span class="pln">spellIdSpace</span><span class="pun">);</span><span class="pln">

            </span><span class="kwd">return</span><span class="pln"> spellId</span><span class="pun">;</span><span class="pln">
        </span><span class="pun">}</span><span class="pln">
        </span><span class="kwd">catch</span><span class="pln"> </span><span class="pun">(</span><span class="typ">System</span><span class="pun">.</span><span class="typ">Exception</span><span class="pln"> ex</span><span class="pun">)</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span class="typ">Logging</span><span class="pun">.</span><span class="typ">WriteError</span><span class="pun">(</span><span class="str">"Error getting spell ID by name: "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> ex</span><span class="pun">.</span><span class="typ">Message</span><span class="pun">);</span><span class="pln">
            </span><span class="kwd">return</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span><span class="pln">
        </span><span class="pun">}</span><span class="pln">
    </span><span class="pun">}</span></pre>

<p>
	<strong>Method 2: Direct Spell Casting with GUID Support</strong>
</p>

<p>
	The <code>CastSpell</code> method invokes the native spell casting function (0x080DA40) directly, accepting a GUID parameter to eliminate the need for target selection: 
</p>

<pre class="ipsCode prettyprint lang-c prettyprinted"><span class="kwd">public</span><span class="pln"> </span><span class="kwd">static</span><span class="pln"> </span><span class="kwd">void</span><span class="pln"> </span><span class="typ">CastSpell</span><span class="pun">(</span><span class="typ">int</span><span class="pln"> spellid</span><span class="pun">,</span><span class="pln"> ulong guid </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">)</span><span class="pln">
</span><span class="pun">{</span><span class="pln">
    </span><span class="kwd">try</span><span class="pln">
    </span><span class="pun">{</span><span class="pln">
        </span><span class="typ">uint</span><span class="pln"> </span><span class="typ">CastSpell</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0x080DA40</span><span class="pun">;</span><span class="pln">
        </span><span class="typ">uint</span><span class="pln"> guidLow </span><span class="pun">=</span><span class="pln"> </span><span class="pun">(</span><span class="typ">uint</span><span class="pun">)(</span><span class="pln">guid </span><span class="pun">&amp;</span><span class="pln"> </span><span class="lit">0xFFFFFFFF</span><span class="pun">);</span><span class="pln">
        </span><span class="typ">uint</span><span class="pln"> guidHigh </span><span class="pun">=</span><span class="pln"> </span><span class="pun">(</span><span class="typ">uint</span><span class="pun">)(</span><span class="pln">guid </span><span class="pun">&gt;&gt;</span><span class="pln"> </span><span class="lit">32</span><span class="pun">);</span><span class="pln">

        var </span><span class="kwd">asm</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="kwd">new</span><span class="pun">[]</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span class="str">"push 0"</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"push "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> guidHigh</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"push "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> guidLow</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"push 0"</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"push "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> spellid</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"call "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="typ">CastSpell</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"add esp, 0x14"</span><span class="pun">,</span><span class="pln">
            </span><span class="str">"retn"</span><span class="pln">
        </span><span class="pun">};</span><span class="pln">

        wManager</span><span class="pun">.</span><span class="typ">Wow</span><span class="pun">.</span><span class="typ">Memory</span><span class="pun">.</span><span class="typ">WowMemory</span><span class="pun">.</span><span class="typ">InjectAndExecute</span><span class="pun">(</span><span class="kwd">asm</span><span class="pun">);</span><span class="pln">
    </span><span class="pun">}</span><span class="pln">
    </span><span class="kwd">catch</span><span class="pln"> </span><span class="pun">(</span><span class="typ">System</span><span class="pun">.</span><span class="typ">Exception</span><span class="pln"> ex</span><span class="pun">)</span><span class="pln">
    </span><span class="pun">{</span><span class="pln">
        </span><span class="typ">Logging</span><span class="pun">.</span><span class="typ">WriteError</span><span class="pun">(</span><span class="str">"Error casting spell: "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> ex</span><span class="pun">.</span><span class="typ">Message</span><span class="pun">);</span><span class="pln">
    </span><span class="pun">}</span><span class="pln">
</span><span class="pun">}</span></pre>

<p>
	<strong>Performance Optimization</strong>
</p>

<p>
	While repeated calls to <code>GetSpellIdByName</code> could introduce minor latency, this can be mitigated through result caching with cache invalidation upon skill acquisition or update events.
</p>

<p>
	<strong>Benefits</strong>
</p>

<ul>
	<li>
		Eliminates dependency on the Lua <code>CastSpellByName</code> function, significantly reducing detection risk on Lua-hook protected servers
	</li>
	<li>
		Supports targeted spell casting without requiring target changes
	</li>
</ul>
]]></description><guid isPermaLink="false">1622</guid><pubDate>Sun, 12 Apr 2026 00:28:43 +0000</pubDate></item><item><title>Wow crashes after starting bot</title><link>https://wrobot.eu/bugtracker/wow-crashes-after-starting-bot-r1621/</link><description><![CDATA[<p>
	My wow always crashing after starting bot.<br>
	<br>
	Just using a clean 2.4.3, whenever I start the bot it just crashes the game<br>
	Also using it on a 3.3.5 and no probs there.<br>
	<br>
	I do have wrobot installed twice, 2 defferent maps, one for tbc and one for wotlk, woul this give an error?<br>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="18769" width="499" alt="image.png.b6b16d4124984656d11c77bae362293c.png" src="https://wrobot.eu/uploads/monthly_2026_03/image.png.b6b16d4124984656d11c77bae362293c.png" loading="lazy" height="274.45">
</p>
]]></description><guid isPermaLink="false">1621</guid><pubDate>Sat, 28 Mar 2026 13:11:41 +0000</pubDate></item><item><title>Pathfinder Server Down</title><link>https://wrobot.eu/bugtracker/pathfinder-server-down-r1620/</link><description><![CDATA[<p>
	The Bot did not Move and got an exception<br />
	the Bot did not start
</p>
]]></description><guid isPermaLink="false">1620</guid><pubDate>Fri, 27 Mar 2026 08:33:34 +0000</pubDate></item><item><title>uwow legion x100 dont work</title><link>https://wrobot.eu/bugtracker/uwow-legion-x100-dont-work-r1557/</link><description><![CDATA[<p>
	uwow legion x100 dont work "game version incorrect"
</p>
]]></description><guid isPermaLink="false">1557</guid><pubDate>Fri, 30 Jan 2026 16:37:44 +0000</pubDate></item><item><title>booty bay path finder fath bug</title><link>https://wrobot.eu/bugtracker/booty-bay-path-finder-fath-bug-r1556/</link><description><![CDATA[<p>
	The following type of problem, the bot cannot find a route to the pier in the booty bay, when the bot is outside the bay area, it ignores the tunnel that leads to the bay and chooses a bypass route through the water and then jumps under the pier in the water, although the point is higher:<br>
	[D] 19:42:00 - [Quester] RunCode[2]: //spot test<br>
	wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(-14290.09, 540.8121, 8.756604, "None"));<br>
	[N] 19:42:00 - [Path-Finding] FindPath from -14248,63 ; 327,3172 ; 24,39926 ; "None" to -14290,09 ; 540,8121 ; 8,756604 ; "None" (Azeroth)<br>
	[N] 19:42:01 - [Path-Finding] Path Count: 16 (435,0354y, 400ms) (resultPartial=True, resultSuccess=True (more info with server log option))<br>
	I am attaching a test profile of the quester that I used
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2026_01/wrongpathbooty.png.177c2208c1794d54e73ac4a48a0c8894.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18738" src="https://wrobot.eu/uploads/monthly_2026_01/wrongpathbooty.png.177c2208c1794d54e73ac4a48a0c8894.png" width="603" class="ipsImage ipsImage_thumbnailed" alt="wrong path booty.png" loading="lazy" height="428.13"></a></p><p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18737&amp;key=d14a1b15e4c9767ef70ae6c6ef881dda" data-fileext="xml" data-fileid="18737" data-filekey="d14a1b15e4c9767ef70ae6c6ef881dda">bootybaytest.xml</a></p>]]></description><guid isPermaLink="false">1556</guid><pubDate>Thu, 08 Jan 2026 16:50:27 +0000</pubDate></item><item><title>WRobot_7.3.5_26124 pathfinder problem</title><link>https://wrobot.eu/bugtracker/wrobot_735_26124-pathfinder-problem-r1555/</link><description><![CDATA[<p>
	Hi
</p>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18736&amp;key=b2f5c18e2ced1589b4a1855e24f2f15c" data-fileExt='html' data-fileid='18736' data-filekey='b2f5c18e2ced1589b4a1855e24f2f15c'>5 янв 2026 16H27.log.html</a></p>]]></description><guid isPermaLink="false">1555</guid><pubDate>Mon, 05 Jan 2026 13:34:26 +0000</pubDate></item><item><title>ClickOnTerrain crash client wow</title><link>https://wrobot.eu/bugtracker/clickonterrain-crash-client-wow-r1554/</link><description><![CDATA[<p>
	Hi, on the WoW Sirus ClickOnTerrain are crashing the game client
</p>
]]></description><guid isPermaLink="false">1554</guid><pubDate>Wed, 24 Dec 2025 19:11:36 +0000</pubDate></item><item><title>wotlk pathfinder</title><link>https://wrobot.eu/bugtracker/wotlk-pathfinder-r1552/</link><description><![CDATA[<p>
	Hi, Pathfinder errors appear at night, but during the day everything is usually fine.
</p>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18727&amp;key=99fe977e0f6bca6365955ff8b4398254" data-fileExt='html' data-fileid='18727' data-filekey='99fe977e0f6bca6365955ff8b4398254'>10 дек 2025 20H51 - bsdeDz.log.html</a></p>]]></description><guid isPermaLink="false">1552</guid><pubDate>Wed, 10 Dec 2025 21:36:28 +0000</pubDate></item><item><title>Server Connection Failed to Wrobot server</title><link>https://wrobot.eu/bugtracker/server-connection-failed-to-wrobot-server-r1549/</link><description><![CDATA[<p>
	Server Connection Failed to Wrobot server as today, use vpn also the same
</p>
]]></description><guid isPermaLink="false">1549</guid><pubDate>Thu, 17 Apr 2025 01:55:26 +0000</pubDate></item><item><title>Log spam</title><link>https://wrobot.eu/bugtracker/log-spam-r1548/</link><description><![CDATA[<p>
	bot is stopped but keep spamming<br>
	<br>
	[E] 19:59:08 - GetReqWithAuthHeader(string url, String userName, String userPassword): System.Net.WebException: The remote server returned an error: (400) Bad Request.<br>
	   at System.Net.HttpWebRequest.GetResponse()<br>
	   at robotManager.Helpful.Others.GetReqWithAuthHeader(String url, String userName, String userPassword, String othersValue)<br>
	<br>
	<br>
	in  logs.
</p>

<p>
	 
</p>

<p>
	 <img class="ipsImage ipsImage_thumbnailed" data-fileid="18640" width="827" alt="image.png.8b4bd2bab00d50540f043a3f0b1ef5fb.png" src="https://wrobot.eu/uploads/monthly_2025_04/image.png.8b4bd2bab00d50540f043a3f0b1ef5fb.png" loading="lazy" height="611.98">
</p>
]]></description><guid isPermaLink="false">1548</guid><pubDate>Tue, 15 Apr 2025 00:59:45 +0000</pubDate></item><item><title>I'm not sure, that bug, but...</title><link>https://wrobot.eu/bugtracker/im-not-sure-that-bug-but-r1547/</link><description><![CDATA[<p>
	Hi @Droidz,<br>
	I don’t know why, but when I use Wrobot for a long time, after a while, it stops working. I can use it for 10 or 20 hours, and it still works fine. However, when I use Wrobot for 3-5 hours, the bot crashes and gives me errors, it doesn't load profiles until I reload PC. then works fine again. 
</p>

<p>
	I'm not sure if this is a bug, but I would appreciate your opinion on the matter. I’ve attached a screenshot of the error, maybe you can help me figure it out or, if it's a bug, help fix it.<br>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="18632" width="357" alt="image.png.1eab2c4388248c311a6de7cad0175410.png" src="https://wrobot.eu/uploads/monthly_2025_03/image.png.1eab2c4388248c311a6de7cad0175410.png" loading="lazy" height="478.38"><img class="ipsImage ipsImage_thumbnailed" data-fileid="18633" width="359" alt="image.png.7417b5f47fba4a4f186f648abbcd37dd.png" src="https://wrobot.eu/uploads/monthly_2025_03/image.png.7417b5f47fba4a4f186f648abbcd37dd.png" loading="lazy" height="154.37">
</p>
]]></description><guid isPermaLink="false">1547</guid><pubDate>Tue, 18 Mar 2025 03:05:27 +0000</pubDate></item><item><title>WRobot Spell Casting "&#x82F1;&#x52C7;&#x6253;&#x51FB;" Language Issue</title><link>https://wrobot.eu/bugtracker/wrobot-spell-casting-%E8%8B%B1%E5%8B%87%E6%89%93%E5%87%BB-language-issue-r1546/</link><description><![CDATA[<h1>
	WRobot Spell Casting Language Issue
</h1>

<h2>
	Problem Description
</h2>

<p>
	I'm experiencing an issue with the WRobot bot where it's detecting spell names in Chinese characters (simplified Chinese), even though my game client is set to English. This causes spells not to be cast properly during combat.
</p>

<h2>
	Technical Details
</h2>

<ul>
	<li>
		When the bot tries to cast spells during combat, the log shows Chinese characters instead of English spell names.
	</li>
	<li>
		Example from logs: <code>[Spell] Cast 英勇打击 (Heroic Strike)</code>
	</li>
	<li>
		The bot seems to recognize the English name in parentheses but still tries to cast using the Chinese characters.
	</li>
	<li>
		Because of this language mismatch, the spells fail to cast properly and combat functionality is broken.
	</li>
</ul>

<h2>
	What I've Tried
</h2>

<ul>
	<li>
		I've attempted to implement a plugin that intercepts spell casting events and replaces them with direct <code>/cast</code> commands using the English spell names.
	</li>
	<li>
		I've tried several versions of this plugin with different approaches (event hooks, log monitoring).
	</li>
	<li>
		The plugins compile correctly but the issue persists - the bot continues to detect spells in Chinese.
	</li>
</ul>

<h2>
	Log Sample
</h2>

<pre><code>14:32:52 - [Fight] Player Attack Small Crag Boar (lvl 3)
[F] 14:33:00 - [Spell] Cast 英勇打击 (Heroic Strike)
[F] 14:33:00 - [Spell] Cast 英勇打击 (Heroic Strike)
[F] 14:33:01 - [Spell] Cast 英勇打击 (Heroic Strike)
</code></pre>

<h2>
	Request
</h2>

<p>
	I need assistance to:
</p>

<ol>
	<li>
		Fix the language detection so the bot uses English spell names instead of Chinese
	</li>
	<li>
		OR provide a working plugin that can properly intercept the Chinese spell names and replace them with English commands
	</li>
	<li>
		OR guide me on how to modify game or bot configuration files to ensure consistent language detection
	</li>
</ol>

<p>
	Thank you for your assistance.
</p>
]]></description><guid isPermaLink="false">1546</guid><pubDate>Sat, 08 Mar 2025 13:47:07 +0000</pubDate></item><item><title>mount bug</title><link>https://wrobot.eu/bugtracker/mount-bug-r1545/</link><description><![CDATA[<p>
	hey my char doesnt use my mount always try but nothing happen
</p>
]]></description><guid isPermaLink="false">1545</guid><pubDate>Mon, 03 Mar 2025 10:02:31 +0000</pubDate></item><item><title>changewowpath error</title><link>https://wrobot.eu/bugtracker/changewowpath-error-r1544/</link><description><![CDATA[<p>
	We are talking about a relogger profile that is running and has many tasks and was running before the problems appeared. If at some point changewowpath of pofile changes (in my case, the disk volume with wow  folder simply disappeared due to a malfunction), the profile will not stop and will not throw an exception, but will continue to execute tasks, but instead of running the changewowpath task, before each Run Task, it will run wow.exe from the general relogger settings.<br />
	I think that the relogger should throw an exception if the wow path from the ChangeWowPath task is not found, even if there were no problems when starting the profile. That is, the check for the existence of the path should be not only at startup, but also inside the profile task loop.
</p>
]]></description><guid isPermaLink="false">1544</guid><pubDate>Tue, 31 Dec 2024 12:34:59 +0000</pubDate></item><item><title>EventsLua.AttachEventLua</title><link>https://wrobot.eu/bugtracker/eventsluaattacheventlua-r1543/</link><description><![CDATA[<p>
	Strange behavior.<br />
	public static void AttachEventLua(string eventid, MethodDelegate method);<br />
	public static void AttachEventLua(LuaEventsId id, MethodDelegate method);<br />
	<br />
	1. I checked on different computers<br />
	2. Reinstalled Wrobot<br />
	3. Disable all plugins and addons<br />
	<br />
	After disconnection stops intercepting events, you need to call spam events only in this case the handler wakes up. Also because of this the quest module stops responding to PLAYER_LEVEL_UP. <br />
	If anyone sees this, could you confirm that it's not just me.<br />
	 
</p>
]]></description><guid isPermaLink="false">1543</guid><pubDate>Fri, 20 Dec 2024 11:42:10 +0000</pubDate></item><item><title>Traveler's tundra mammoth</title><link>https://wrobot.eu/bugtracker/travelers-tundra-mammoth-r1542/</link><description><![CDATA[<p>
	Windows 10
</p>

<p>
	Game version : 10.1.7 51261
</p>

<p>
	 
</p>

<p>
	Hello, in the first days no problem summoning the mount but since it was only days when summoning the mount I have an error message in games which says that: my character has this mount but this character cannot not use it. but I can invoke it manually
</p>

<p>
	 
</p>

<p>
	Thanks in advance
</p>

<div>
	
</div>

<div>
	<pre dir="ltr" style="text-align:left;">
 </pre>
</div>

<p>
	<span> </span><span><span title="Écouter"></span></span>
</p>

<div>
	 
</div>

<p>
	<span><span title="Effacer le texte source"></span></span>
</p>

<div>
	<div>
		 
	</div>
</div>

<div>
	<div>
		<div>
			<div>
				<pre dir="ltr" style="text-align:left;">
 </pre>
			</div>
		</div>
	</div>
</div>
]]></description><guid isPermaLink="false">1542</guid><pubDate>Thu, 03 Oct 2024 13:07:38 +0000</pubDate></item><item><title>can't find route to flight master and it black lists it MOP 5.4.8 server</title><link>https://wrobot.eu/bugtracker/cant-find-route-to-flight-master-and-it-black-lists-it-mop-548-server-r1541/</link><description><![CDATA[<p>
	So this comes out of my logs
</p>

<p>
	"17:20:26.637 - [FlightMaster] Try to take taxi node Sen'jin Village, Durotar to Razor Hill, Durotar, go to npc.<br>
	17:20:26.787 - [FlightMaster] Cannot found npc of taxi node Sen'jin Village, Durotar, disable it."
</p>

<p>
	 
</p>

<p>
	I have the point available on my map and I can maually fly there no problems. But the bot is having
</p>

<p>
	issues.  So why can I fly there manually if I click on the point on the flight master it works fine
</p>

<p>
	but the bot can't!  Again I believe this to be an issue with wrobot.
</p>

<p>
	 
</p>

<p>
	17:02:02.913 - [FlightMaster] Try to take taxi node Valormok, Azshara to The Crossroads, Northern Barrens, go to npc.<br>
	[N] 17:02:02.914 - [Path-Finding] FindPath from 2863.327 ; -3941.308 ; 106.1167 ; "None" to 2988.13 ; -4161.36 ; 101.27 ; "None" (Kalimdor)<br>
	[N] 17:02:03.197 - [Path-Finding] Path Count: 23 (522.7786y, 283ms)<br>
	[N] 17:02:10.977 - [Path-Finding] FindPath from 2805.897 ; -3955.974 ; 95.51775 ; "None" to 2834.984 ; -4130.222 ; 93.10928 ; "None" (Kalimdor)<br>
	[N] 17:02:11.335 - [Path-Finding] Path Count: 7 (187.8232y, 358ms)<br>
	[N] 17:02:11.335 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:02:27.309 - [Path-Finding] FindPath from 2827.789 ; -4068.108 ; 106.5094 ; "None" to 2988.13 ; -4161.36 ; 101.27 ; "None" (Kalimdor)<br>
	[N] 17:02:28.111 - [Path-Finding] Path Count: 7 (204.7178y, 801ms)<br>
	[N] 17:02:28.111 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	17:02:50.385 - [FlightMaster] Try to take taxi at Kroum<br>
	[N] 17:02:50.385 - [Path-Finding] FindPath from 2958.772 ; -4161.136 ; 100.4799 ; "None" to 2990.2 ; -4164.109 ; 101.3392 ; "None" (Kalimdor)<br>
	[N] 17:02:50.730 - [Path-Finding] Path Count: 4 (32.36767y, 344ms)<br>
	[N] 17:02:51.047 - [Path-Finding] FindPath from 2960.679 ; -4161.183 ; 100.6506 ; "None" to 2990.2 ; -4164.109 ; 101.3392 ; "None" (Kalimdor)<br>
	[N] 17:02:51.320 - [Path-Finding] Path Count: 4 (30.45699y, 273ms)<br>
	[N] 17:02:57.018 - [Path-Finding] FindPath from -441.8 ; -2596.08 ; 96.06 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:02:57.018 - [Path-Finding] Path Count: 3 (106.9421y, 0ms)<br>
	17:02:57.915 - [FlightMaster] Use FlightMaster Kroum, use taxi to The Crossroads, Northern Barrens.<br>
	17:02:59.027 - [FlightMaster] Cannot take taxi, Blacklist flightmaster 30 min and taxi node for session.<br>
	[N] 17:02:59.028 - [Path-Finding] FindPath from 2986.989 ; -4162.238 ; 101.2567 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:02:59.688 - [Path-Finding] Path Count: 97 (5175.895y, 660ms)<br>
	[N] 17:02:59.714 - [Path-Finding] FindPath from 2986.989 ; -4162.238 ; 101.2567 ; "None" to 1798.27 ; -4363.27 ; 102.848 ; "None" (Kalimdor)<br>
	[N] 17:03:02.289 - [Path-Finding] Path Count: 65 (2100.792y, 2574ms) (resultPartial=True, resultSuccess=True (more info with server log option))<br>
	17:03:02.289 - [FlightMaster] Cannot make path to Orgrimmar, Durotar, blacklist flightmaster and taxi node for session.<br>
	[N] 17:03:02.369 - [Path-Finding] FindPath from 2969.093 ; -4168.974 ; 100.9447 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:03:03.351 - [Path-Finding] Path Count: 98 (6611.5y, 981ms)<br>
	[N] 17:03:03.351 - [Path-Finding] FindPath from -441.8 ; -2596.08 ; 96.06 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:03:03.351 - [Path-Finding] Path Count: 3 (106.9421y, 0ms)<br>
	17:03:03.351 - [FlightMaster] Try to take taxi node Razor Hill, Durotar to The Crossroads, Northern Barrens, go to npc.<br>
	[N] 17:03:03.351 - [Path-Finding] FindPath from 2961.941 ; -4172.36 ; 100.5921 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:03:04.418 - [Path-Finding] Path Count: 96 (6603.541y, 1066ms)<br>
	[N] 17:03:18.105 - [Path-Finding] FindPath from 2859.494 ; -4154.732 ; 93.10169 ; "None" to 0 ; 0 ; 0 ; "None" (Kalimdor)<br>
	[N] 17:03:18.105 - [Path-Finding] FindPath from 2859.494 ; -4154.732 ; 93.10169 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:03:18.721 - [Path-Finding] Path Count: 88 (5028.197y, 616ms)<br>
	17:03:18.827 - [Fight] Player Attacked by Talrendis Sentinel (lvl 20)<br>
	[F] 17:03:19.001 - [Spell] Cast Cat Form (Cat Form)<br>
	[F] 17:03:21.218 - [Spell] Cast Rake (Rake)<br>
	[F] 17:03:33.117 - [Spell] Cast Ferocious Bite (Ferocious Bite)<br>
	[F] 17:03:36.849 - [Spell] Cast Rake (Rake)<br>
	17:03:37.798 - [Looting] Loot Talrendis Sentinel<br>
	17:03:40.796 - [Regen] Started<br>
	17:03:41.950 - [Regen] Use food Mutton Chop<br>
	17:03:48.086 - [Regen] Finished<br>
	[N] 17:03:48.375 - [Path-Finding] FindPath from 2850.709 ; -4144.352 ; 92.5096 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:03:48.966 - [Path-Finding] Path Count: 90 (5014.891y, 591ms)<br>
	[N] 17:03:49.801 - [Path-Finding] FindPath from 2844.863 ; -4139.069 ; 92.44195 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:03:50.692 - [Path-Finding] Path Count: 92 (6462.355y, 890ms)<br>
	[N] 17:03:50.692 - [Path-Finding] FindPath from -441.8 ; -2596.08 ; 96.06 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:03:50.692 - [Path-Finding] Path Count: 3 (106.9421y, 0ms)<br>
	17:03:50.692 - [FlightMaster] Try to take taxi node Razor Hill, Durotar to The Crossroads, Northern Barrens, go to npc.<br>
	[N] 17:03:50.692 - [Path-Finding] FindPath from 2838.103 ; -4132.968 ; 92.73483 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:03:51.803 - [Path-Finding] Path Count: 92 (6453.249y, 1110ms)<br>
	[N] 17:03:52.181 - [Path-Finding] FindPath from 2827.397 ; -4122.65 ; 94.43301 ; "None" to 0 ; 0 ; 0 ; "None" (Kalimdor)<br>
	[N] 17:03:52.182 - [Path-Finding] FindPath from 2827.397 ; -4122.65 ; 94.43301 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:03:52.742 - [Path-Finding] Path Count: 88 (4982.872y, 559ms)<br>
	17:03:52.823 - [Fight] Player Attacked by Talrendis Defender (lvl 19)<br>
	[F] 17:03:54.696 - [Spell] Cast Rake (Rake)<br>
	[F] 17:03:55.625 - [Spell] Cast Bear Form (Bear Form)<br>
	[F] 17:03:57.497 - [Spell] Cast (onself) Rejuvenation (Rejuvenation)<br>
	[F] 17:03:58.905 - [Spell] Cast Bear Form (Bear Form)<br>
	[F] 17:04:19.618 - [Spell] Cast (onself) Rejuvenation (Rejuvenation)<br>
	[F] 17:04:21.419 - [Spell] Cast Bear Form (Bear Form)<br>
	17:04:35.389 - [Fight] Player Attacked by Talrendis Defender (lvl 19)<br>
	[F] 17:04:43.434 - [Spell] Cast (onself) Rejuvenation (Rejuvenation)<br>
	[F] 17:04:45.177 - [Spell] Cast Bear Form (Bear Form)<br>
	[F] 17:05:08.503 - [Spell] Cast (onself) Rejuvenation (Rejuvenation)<br>
	[F] 17:05:10.329 - [Spell] Cast Bear Form (Bear Form)<br>
	17:05:29.287 - [Fight] Player Attacked by Talrendis Sentinel (lvl 20)<br>
	[F] 17:05:29.698 - [Spell] Cast Cat Form (Cat Form)<br>
	[F] 17:05:31.299 - [Spell] Cast Rake (Rake)<br>
	[F] 17:05:43.615 - [Spell] Cast Ferocious Bite (Ferocious Bite)<br>
	[F] 17:05:46.794 - [Spell] Cast Rake (Rake)<br>
	17:05:47.653 - [Looting] Loot Talrendis Defender<br>
	17:05:50.967 - [Regen] Started<br>
	17:05:52.137 - [Regen] Use food Mutton Chop<br>
	17:06:03.598 - [Regen] Finished<br>
	[N] 17:06:03.854 - [Path-Finding] FindPath from 2818.062 ; -4111.929 ; 96.64392 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:06:04.596 - [Path-Finding] Path Count: 89 (4968.691y, 743ms)<br>
	[N] 17:06:05.309 - [Path-Finding] FindPath from 2813.247 ; -4108.233 ; 97.72144 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:06:05.575 - [Path-Finding] FindPath from 2811.288 ; -4106.532 ; 98.19338 ; "None" to 2773.715 ; -3869.558 ; 91.35628 ; "None" (Kalimdor)<br>
	[N] 17:06:06.552 - [Path-Finding] Path Count: 91 (6418.029y, 1241ms)<br>
	[N] 17:06:06.552 - [Path-Finding] FindPath from -441.8 ; -2596.08 ; 96.06 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:06:06.552 - [Path-Finding] Path Count: 3 (106.9421y, 0ms)<br>
	17:06:06.552 - [FlightMaster] Try to take taxi node Razor Hill, Durotar to The Crossroads, Northern Barrens, go to npc.<br>
	[N] 17:06:06.552 - [Path-Finding] FindPath from 2804.302 ; -4099.544 ; 99.77269 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:06:06.688 - [Path-Finding] Path Count: 15 (272.185y, 1113ms)<br>
	[N] 17:06:06.688 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:06:07.587 - [Path-Finding] Path Count: 94 (6430.834y, 1034ms)<br>
	[N] 17:06:13.537 - [Path-Finding] FindPath from 2819.303 ; -4054.275 ; 97.30022 ; "None" to 2804.255 ; -3808.632 ; 85.37701 ; "None" (Kalimdor)<br>
	[N] 17:06:13.906 - [Path-Finding] Path Count: 22 (326.8018y, 368ms)<br>
	[N] 17:06:13.906 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:06:28.710 - [Path-Finding] FindPath from 2853.235 ; -3940.399 ; 98.12086 ; "None" to 2834.84 ; -3762.978 ; 83.02107 ; "None" (Kalimdor)<br>
	[N] 17:06:29.066 - [Path-Finding] Path Count: 13 (237.4888y, 356ms)<br>
	[N] 17:06:29.066 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:09:25.044 - [Path-Finding] FindPath from 2119.984 ; -2570.289 ; 101.1768 ; "None" to -441.8 ; -2596.08 ; 96.06 ; "None" (Kalimdor)<br>
	[N] 17:09:25.659 - [Path-Finding] Path Count: 48 (3064.038y, 614ms)<br>
	[N] 17:09:25.660 - [Path-Finding] FindPath from 269.917 ; -4766.76 ; 11.4946 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:09:25.935 - [Path-Finding] Path Count: 1 (0y, 274ms)<br>
	17:09:25.935 - [FlightMaster] Try to take taxi node The Crossroads, Northern Barrens to Razor Hill, Durotar, go to npc.<br>
	[N] 17:09:25.935 - [Path-Finding] FindPath from 2114.036 ; -2563.649 ; 100.2247 ; "None" to -441.8 ; -2596.08 ; 96.06 ; "None" (Kalimdor)<br>
	[N] 17:09:26.395 - [Path-Finding] Path Count: 48 (3055.076y, 460ms)<br>
	[N] 17:11:02.858 - [Path-Finding] FindPath from 1390.321 ; -2249.629 ; 90.69899 ; "None" to 1157.201 ; -2316.637 ; 91.88213 ; "None" (Kalimdor)<br>
	[N] 17:11:03.210 - [Path-Finding] Path Count: 17 (302.5255y, 353ms)<br>
	[N] 17:11:03.210 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:11:25.181 - [MovementManager] Think we are stuck<br>
	[N] 17:11:25.181 - [MovementManager] Trying something funny, hang on<br>
	17:11:28.359 - [FlightMaster] Try to take taxi at Gort Goreflight<br>
	[N] 17:11:28.360 - [Path-Finding] FindPath from 1227.534 ; -2329.863 ; 93.39071 ; "None" to 1202.19 ; -2210.24 ; 92.22494 ; "None" (Kalimdor)<br>
	[N] 17:11:28.848 - [Path-Finding] Path Count: 5 (130.3058y, 487ms)<br>
	[N] 17:11:33.770 - [Path-Finding] FindPath from 1218.964 ; -2279.424 ; 91.68446 ; "None" to 1202.19 ; -2210.24 ; 92.22494 ; "None" (Kalimdor)<br>
	[N] 17:11:34.066 - [Path-Finding] Path Count: 2 (71.19007y, 295ms)<br>
	[N] 17:11:42.752 - [Path-Finding] FindPath from -441.8 ; -2596.08 ; 96.06 ; "None" to -441.8 ; -2596.08 ; 96.06 ; "None" (Kalimdor)<br>
	[N] 17:11:43.100 - [Path-Finding] Path Count: 1 (0y, 347ms)<br>
	17:11:44.000 - [FlightMaster] Use FlightMaster Gort Goreflight, use taxi to The Crossroads, Northern Barrens.<br>
	[N] 17:12:44.568 - [Path-Finding] FindPath from -440.1614 ; -2597.802 ; 99.46565 ; "None" to -441.8 ; -2596.08 ; 96.06 ; "None" (Kalimdor)<br>
	[N] 17:12:44.933 - [Path-Finding] Path Count: 2 (4.153126y, 364ms)<br>
	17:12:45.043 - [FlightMaster] Try to take taxi at Devrak<br>
	[N] 17:12:45.044 - [Path-Finding] FindPath from -440.3705 ; -2597.938 ; 95.89381 ; "None" to -437.1371 ; -2596.005 ; 95.78757 ; "None" (Kalimdor)<br>
	[N] 17:12:45.339 - [Path-Finding] Path Count: 2 (3.76862y, 295ms)<br>
	17:12:47.452 - [FlightMaster] No found useful destination on FlightMaster Devrak, skip it.<br>
	17:12:47.452 - [FlightMaster] Cannot take taxi, Blacklist flightmaster 30 min and taxi node for session.<br>
	[N] 17:12:47.453 - [Path-Finding] FindPath from -440.3705 ; -2597.938 ; 95.89381 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:12:48.429 - [Path-Finding] Path Count: 22 (2712.102y, 975ms)<br>
	[N] 17:12:48.450 - [Path-Finding] FindPath from -440.3705 ; -2597.938 ; 95.89381 ; "None" to -437.1371 ; -2596.005 ; 95.78757 ; "None" (Kalimdor)<br>
	[N] 17:12:48.744 - [Path-Finding] Path Count: 2 (3.76862y, 294ms)<br>
	[N] 17:12:48.744 - [Path-Finding] FindPath from 269.917 ; -4766.76 ; 11.4946 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:12:48.744 - [Path-Finding] Path Count: 1 (0y, 0ms)<br>
	17:12:48.744 - [FlightMaster] Try to take taxi node The Crossroads, Northern Barrens to Razor Hill, Durotar, go to npc.<br>
	17:12:48.781 - [FlightMaster] Cannot found npc of taxi node The Crossroads, Northern Barrens, disable it.<br>
	17:12:48.781 - [FlightMaster] Try to take taxi at<br>
	[N] 17:12:48.781 - [Path-Finding] FindPath from -439.173 ; -2598.532 ; 95.80238 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:12:49.584 - [Path-Finding] Path Count: 22 (2711.007y, 803ms)<br>
	[N] 17:12:49.981 - [Path-Finding] FindPath from -436.8505 ; -2598.17 ; 95.78763 ; "None" to -894.59 ; -3773.01 ; 11.48 ; "None" (Kalimdor)<br>
	[N] 17:12:50.310 - [Path-Finding] Path Count: 28 (1432.627y, 328ms)<br>
	[N] 17:12:50.310 - [Path-Finding] FindPath from 269.917 ; -4766.76 ; 11.4946 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:12:50.310 - [Path-Finding] Path Count: 1 (0y, 0ms)<br>
	17:12:50.310 - [FlightMaster] Try to take taxi node Ratchet, Northern Barrens to Razor Hill, Durotar, go to npc.<br>
	[N] 17:12:50.310 - [Path-Finding] FindPath from -434.0349 ; -2597.73 ; 95.78763 ; "None" to -894.59 ; -3773.01 ; 11.48 ; "None" (Kalimdor)<br>
	[N] 17:12:50.640 - [Path-Finding] Path Count: 29 (1434.143y, 330ms)<br>
	[N] 17:13:38.172 - [Path-Finding] FindPath from -630.7003 ; -2914.594 ; 95.78586 ; "None" to -869.2781 ; -3109.278 ; 95.74213 ; "None" (Kalimdor)<br>
	[N] 17:13:38.523 - [Path-Finding] Path Count: 10 (378.4675y, 350ms)<br>
	[N] 17:13:38.523 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	17:15:53.697 - [FlightMaster] Try to take taxi at Bragok<br>
	[N] 17:15:53.697 - [Path-Finding] FindPath from -921.1739 ; -3759.691 ; 10.00402 ; "None" to -898.2459 ; -3769.652 ; 11.71033 ; "None" (Kalimdor)<br>
	[N] 17:15:54.126 - [Path-Finding] Path Count: 5 (26.10562y, 429ms)<br>
	[N] 17:15:54.440 - [Path-Finding] FindPath from -919.4678 ; -3760.713 ; 10.07996 ; "None" to -898.2459 ; -3769.652 ; 11.71033 ; "None" (Kalimdor)<br>
	[N] 17:15:54.720 - [Path-Finding] Path Count: 5 (24.11729y, 280ms)<br>
	17:15:59.400 - [FlightMaster] No found useful destination on FlightMaster Bragok, skip it.<br>
	17:15:59.400 - [FlightMaster] Cannot take taxi, Blacklist flightmaster 30 min and taxi node for session.<br>
	[N] 17:15:59.400 - [Path-Finding] FindPath from -900.6973 ; -3770.224 ; 11.80656 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:15:59.924 - [Path-Finding] Path Count: 32 (1797.742y, 523ms)<br>
	[N] 17:15:59.956 - [Path-Finding] FindPath from -900.6973 ; -3770.224 ; 11.80656 ; "None" to -898.2459 ; -3769.652 ; 11.71033 ; "None" (Kalimdor)<br>
	[N] 17:16:00.265 - [Path-Finding] Path Count: 2 (2.519053y, 309ms)<br>
	[N] 17:16:00.266 - [Path-Finding] FindPath from 269.917 ; -4766.76 ; 11.4946 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:16:00.266 - [Path-Finding] Path Count: 1 (0y, 0ms)<br>
	17:16:00.266 - [FlightMaster] Try to take taxi node Ratchet, Northern Barrens to Razor Hill, Durotar, go to npc.<br>
	17:16:00.304 - [FlightMaster] Cannot found npc of taxi node Ratchet, Northern Barrens, disable it.<br>
	17:16:00.304 - [FlightMaster] Try to take taxi at<br>
	[N] 17:16:00.304 - [Path-Finding] FindPath from -898.6525 ; -3771.263 ; 11.68992 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:16:00.799 - [Path-Finding] Path Count: 32 (1795.453y, 495ms)<br>
	[N] 17:16:01.505 - [Path-Finding] FindPath from -894.2318 ; -3774.017 ; 11.49134 ; "None" to -780.267 ; -4890.28 ; 19.6215 ; "None" (Kalimdor)<br>
	[N] 17:16:01.923 - [Path-Finding] Path Count: 35 (1466.601y, 416ms)<br>
	[N] 17:16:01.923 - [Path-Finding] FindPath from 269.917 ; -4766.76 ; 11.4946 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:16:01.923 - [Path-Finding] Path Count: 1 (0y, 0ms)<br>
	17:16:01.923 - [FlightMaster] Try to take taxi node Sen'jin Village, Durotar to Razor Hill, Durotar, go to npc.<br>
	[N] 17:16:01.923 - [Path-Finding] FindPath from -891.287 ; -3775.851 ; 11.57794 ; "None" to -780.267 ; -4890.28 ; 19.6215 ; "None" (Kalimdor)<br>
	[N] 17:16:02.339 - [Path-Finding] Path Count: 36 (1468.634y, 415ms)<br>
	17:20:17.711 - [FlightMaster] Try to take taxi at Handler Marnlek<br>
	[N] 17:20:17.711 - [Path-Finding] FindPath from -805.7629 ; -4875.351 ; 18.80334 ; "None" to -775.776 ; -4890.74 ; 19.81552 ; "None" (Kalimdor)<br>
	[N] 17:20:18.982 - [Path-Finding] Path Count: 3 (34.53947y, 1270ms)<br>
	[N] 17:20:19.343 - [Path-Finding] FindPath from -795.3427 ; -4879.775 ; 18.8921 ; "None" to -775.776 ; -4890.74 ; 19.81552 ; "None" (Kalimdor)<br>
	[N] 17:20:19.626 - [Path-Finding] Path Count: 5 (26.16189y, 282ms)<br>
	[N] 17:20:20.040 - [MovementManager] Think we are stuck<br>
	[N] 17:20:20.040 - [MovementManager] Trying something funny, hang on<br>
	17:20:25.932 - [FlightMaster] No found useful destination on FlightMaster Handler Marnlek, skip it.<br>
	17:20:25.932 - [FlightMaster] Cannot take taxi, Blacklist flightmaster 30 min and taxi node for session.<br>
	[N] 17:20:25.932 - [Path-Finding] FindPath from -778.7282 ; -4888.519 ; 19.6673 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:20:26.344 - [Path-Finding] Path Count: 12 (1097.324y, 410ms)<br>
	[N] 17:20:26.360 - [Path-Finding] FindPath from -778.7282 ; -4888.519 ; 19.6673 ; "None" to -775.776 ; -4890.74 ; 19.81552 ; "None" (Kalimdor)<br>
	[N] 17:20:26.637 - [Path-Finding] Path Count: 2 (3.697459y, 277ms)<br>
	[N] 17:20:26.637 - [Path-Finding] FindPath from 269.917 ; -4766.76 ; 11.4946 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:20:26.637 - [Path-Finding] Path Count: 1 (0y, 0ms)<br>
	17:20:26.637 - [FlightMaster] Try to take taxi node Sen'jin Village, Durotar to Razor Hill, Durotar, go to npc.<br>
	17:20:26.787 - [FlightMaster] Cannot found npc of taxi node Sen'jin Village, Durotar, disable it.<br>
	17:20:26.787 - [FlightMaster] Try to take taxi at<br>
	[N] 17:20:26.788 - [Path-Finding] FindPath from -777.366 ; -4887.35 ; 19.72447 ; "None" to 269.917 ; -4766.76 ; 11.4946 ; "None" (Kalimdor)<br>
	[N] 17:20:27.120 - [Path-Finding] Path Count: 12 (1095.71y, 331ms)<br>
	[N] 17:21:00.563 - [Path-Finding] FindPath from -547.1452 ; -4782.921 ; 37.1127 ; "None" to 0 ; 0 ; 0 ; "None" (Kalimdor)<br>
	[N] 17:21:00.563 - [Path-Finding] FindPath from -547.1452 ; -4782.921 ; 37.1127 ; "None" to -352.4188 ; -2537.483 ; 95.79605 ; "None" (Kalimdor)<br>
	[N] 17:21:01.131 - [Path-Finding] Path Count: 44 (3155.639y, 568ms)<br>
	17:21:01.206 - [Fight] Player Attacked by Clattering Scorpid (lvl 5)<br>
	[F] 17:21:02.524 - [Spell] Cast Cat Form (Cat Form)<br>
	[F] 17:21:04.235 - [Spell] Cast Rake (Rake)<br>
	17:21:05.713 - [Looting] Loot Clattering Scorpid<br>
	17:21:08.277 - [Looting] Skin/Gather/Mine  Clattering Scorpid<br>
	17:21:10.023 - [Farming] Farm Copper Vein &gt; -553.141 ; -4898.07 ; 37.51 ; "None"<br>
	[N] 17:21:10.024 - [Path-Finding] FindPath from -547.7708 ; -4778.563 ; 36.64029 ; "None" to -553.141 ; -4898.07 ; 37.51 ; "None" (Kalimdor)<br>
	[N] 17:21:10.463 - [Path-Finding] Path Count: 5 (120.929y, 439ms)<br>
	17:21:27.179 - [Farming] Farm successful<br>
	[N] 17:21:27.467 - [Path-Finding] FindPath from -554.7073 ; -4895.347 ; 35.98061 ; "None" to -416.6255 ; -2598.19 ; 95.9067 ; "None" (Kalimdor)<br>
	[N] 17:21:28.023 - [Path-Finding] Path Count: 45 (3098.372y, 555ms)<br>
	17:21:29.672 - [Fight] Player Attacked by Clattering Scorpid (lvl 5)<br>
	[F] 17:21:30.749 - [Spell] Cast Cat Form (Cat Form)<br>
	[F] 17:21:32.521 - [Spell] Cast Rake (Rake)<br>
	[F] 17:21:34.247 - [Spell] Cast Ferocious Bite (Ferocious Bite)<br>
	17:21:35.084 - [Looting] Loot Clattering Scorpid<br>
	17:21:37.745 - [Looting] Skin/Gather/Mine  Clattering Scorpid<br>
	[N] 17:21:39.692 - [Path-Finding] FindPath from -568.7339 ; -4881.924 ; 34.2638 ; "None" to -416.6255 ; -2598.19 ; 95.9067 ; "None" (Kalimdor)<br>
	[N] 17:21:40.247 - [Path-Finding] Path Count: 45 (3078.998y, 554ms)<br>
	[N] 17:27:18.412 - [Path-Finding] FindPath from -890.981 ; -3164.76 ; 92.12399 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:18.896 - [Path-Finding] Path Count: 7 (302.2866y, 483ms)<br>
	[N] 17:27:18.896 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:42.900 - [Path-Finding] FindPath from -760.4906 ; -3012.98 ; 93.04221 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:43.265 - [Path-Finding] Path Count: 3 (91.10567y, 364ms)<br>
	[N] 17:27:43.265 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:46.777 - [Path-Finding] FindPath from -752.6324 ; -2988.817 ; 92.03096 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:47.064 - [Path-Finding] Path Count: 3 (59.07146y, 287ms)<br>
	[N] 17:27:47.064 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:48.744 - [Path-Finding] FindPath from -744.4668 ; -2982.423 ; 92.01607 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:49.029 - [Path-Finding] Path Count: 3 (48.77176y, 285ms)<br>
	[N] 17:27:49.029 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:50.535 - [Path-Finding] FindPath from -738.2006 ; -2976.59 ; 92.8281 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:50.820 - [Path-Finding] Path Count: 3 (40.17637y, 284ms)<br>
	[N] 17:27:50.820 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:52.312 - [Path-Finding] FindPath from -731.3685 ; -2971.494 ; 93.98772 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:52.596 - [Path-Finding] Path Count: 2 (31.29045y, 284ms)<br>
	[N] 17:27:52.596 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:53.842 - [Path-Finding] FindPath from -722.3581 ; -2970.982 ; 93.95669 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:54.124 - [Path-Finding] Path Count: 2 (22.2911y, 281ms)<br>
	[N] 17:27:54.124 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:55.884 - [Path-Finding] FindPath from -714.4259 ; -2971.524 ; 94.40986 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:56.167 - [Path-Finding] Path Count: 3 (15.08747y, 283ms)<br>
	[N] 17:27:56.167 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:57.688 - [Path-Finding] FindPath from -705.8142 ; -2971.786 ; 94.97716 ; "None" to -700.1207 ; -2970.874 ; 95.4997 ; "None" (Kalimdor)<br>
	[N] 17:27:57.971 - [Path-Finding] Path Count: 3 (6.409249y, 282ms)<br>
	[N] 17:27:57.971 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:27:59.655 - [Path-Finding] FindPath from -697.915 ; -2968.706 ; 95.27871 ; "None" to -502.1497 ; -2772.626 ; 91.81147 ; "None" (Kalimdor)<br>
	[N] 17:27:59.952 - [Path-Finding] Path Count: 4 (277.1279y, 296ms)<br>
	[N] 17:27:59.952 - [MovementManager] Try to avoid unsafe zone, change current path<br>
	[N] 17:28:48.110 - [Path-Finding] FindPath from -418.3163 ; -2600.396 ; 95.99565 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:28:48.468 - [Path-Finding] Path Count: 2 (19.32846y, 358ms)<br>
	17:37:12.102 - [Quester] Stopped<br>
	17:37:12.500 - Session statistics:<br>
	Elapsed time: 00h:40m:06s<br>
	XP/HR: 5257 - 152 min<br>
	Kills: 10 (14/hr)<br>
	Deaths: 0 (0/hr)<br>
	Stucks: 0 (0/hr)<br>
	Farms: 4 (5/hr)<br>
	Loots: 6 (8/hr)<br>
	Money/HR: 0 G 00 S 00 C (0 G 00 S 00 C)<br>
	[F] 17:38:55.099 - [FightClass] Loading Fight class: D:\Program Files (x86)\WR MOP\\FightClass\3.3.5a Feral druid by DarkShado.xml<br>
	17:38:56.093 - [Quester] Started<br>
	[N] 17:38:56.687 - [Path-Finding] FindPath from -439.2863 ; -2648.479 ; 96.15613 ; "None" to -416.6255 ; -2598.19 ; 95.9067 ; "None" (Kalimdor)<br>
	[N] 17:38:57.163 - [Path-Finding] Path Count: 2 (55.15965y, 477ms)<br>
	[N] 17:39:04.152 - [Path-Finding] FindPath from -417.9638 ; -2601.072 ; 95.93791 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:04.573 - [Path-Finding] Path Count: 2 (19.83331y, 421ms)<br>
	[N] 17:39:04.890 - [Path-Finding] FindPath from -419.0457 ; -2600.064 ; 96.07163 ; "None" to -437.1371 ; -2596.005 ; 95.78757 ; "None" (Kalimdor)<br>
	[N] 17:39:05.172 - [Path-Finding] Path Count: 2 (18.54343y, 283ms)<br>
	[N] 17:39:07.969 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:08.248 - [Path-Finding] Path Count: 2 (3.528975y, 278ms)<br>
	[N] 17:39:09.600 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:09.600 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:10.759 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:10.759 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:11.881 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:11.881 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:13.021 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:13.021 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:14.177 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:14.177 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:15.390 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:15.390 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:16.570 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:16.570 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:17.715 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:17.715 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:18.877 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:18.878 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:19.985 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:19.985 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:21.316 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:21.316 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:22.440 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:22.440 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:23.602 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:23.602 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:24.742 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:24.742 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:25.915 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:25.915 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:27.150 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:27.150 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:28.290 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:28.290 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:29.466 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:29.466 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:30.638 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:30.638 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:31.822 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:31.822 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:33.088 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:33.088 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:34.194 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:34.194 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:35.352 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:35.352 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:36.477 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:36.477 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:37.615 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:37.615 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:38.885 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:38.885 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:40.041 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:40.041 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:41.181 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:41.181 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:42.320 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:42.320 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:43.479 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:43.479 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	[N] 17:39:44.730 - [Path-Finding] FindPath from -433.6938 ; -2596.773 ; 95.78831 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:39:44.730 - [Path-Finding] Path Count: 2 (3.528975y, 0ms)<br>
	17:39:45.735 - [Quester] Stopped<br>
	17:39:46.389 - Session statistics:<br>
	Elapsed time: 00h:00m:52s<br>
	XP/HR: 0 - 0 min<br>
	Kills: 0 (0/hr)<br>
	Deaths: 0 (0/hr)<br>
	Stucks: 0 (0/hr)<br>
	Farms: 0 (0/hr)<br>
	Loots: 0 (0/hr)<br>
	Money/HR: 0 G 00 S 00 C (0 G 00 S 00 C)<br>
	[F] 17:43:20.006 - [FightClass] Loading Fight class: D:\Program Files (x86)\WR MOP\\FightClass\3.3.5a Feral druid by DarkShado.xml<br>
	[N] 17:43:21.663 - [Path-Finding] FindPath from -345.4928 ; -2566.789 ; 97.46761 ; "None" to -357.4422 ; -2543.706 ; 95.74972 ; "None" (Kalimdor)<br>
	[N] 17:43:22.097 - [Path-Finding] Path Count: 5 (26.58311y, 434ms)<br>
	17:43:22.348 - [Quester] Started<br>
	[N] 17:43:35.411 - [Path-Finding] FindPath from -414.4835 ; -2596.399 ; 95.86983 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:35.411 - [Path-Finding] Path Count: 2 (22.79207y, 0ms)<br>
	[N] 17:43:35.837 - [Path-Finding] FindPath from -417.3385 ; -2596.98 ; 95.99021 ; "None" to -437.1371 ; -2596.005 ; 95.78757 ; "None" (Kalimdor)<br>
	[N] 17:43:36.190 - [Path-Finding] Path Count: 2 (19.82364y, 353ms)<br>
	[N] 17:43:39.188 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:39.476 - [Path-Finding] Path Count: 2 (3.722877y, 288ms)<br>
	[N] 17:43:40.617 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:40.617 - [Path-Finding] Path Count: 2 (3.722877y, 0ms)<br>
	[N] 17:43:41.771 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:41.771 - [Path-Finding] Path Count: 2 (3.722877y, 0ms)<br>
	[N] 17:43:42.931 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:42.931 - [Path-Finding] Path Count: 2 (3.722877y, 0ms)<br>
	[N] 17:43:44.182 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:44.182 - [Path-Finding] Path Count: 2 (3.722877y, 0ms)<br>
	[N] 17:43:45.326 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:45.326 - [Path-Finding] Path Count: 2 (3.722877y, 0ms)<br>
	[N] 17:43:46.449 - [Path-Finding] FindPath from -433.4187 ; -2596.184 ; 95.78761 ; "None" to -437.137 ; -2596 ; 95.78783 ; "None" (Kalimdor)<br>
	[N] 17:43:46.449 - [Path-Finding] Path Count: 2 (3.722877y, 0ms)<br>
	17:43:47.063 - [Quester] Stopped<br>
	17:43:47.508 - Session statistics:<br>
	Elapsed time: 00h:00m:28s<br>
	XP/HR: 0 - 0 min<br>
	Kills: 0 (0/hr)<br>
	Deaths: 0 (0/hr)<br>
	Stucks: 0 (0/hr)<br>
	Farms: 0 (0/hr)<br>
	Loots: 0 (0/hr)<br>
	Money/HR: 0 G 00 S 00 C (0 G 00 S 00 C)
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	It keeps trying to fly to points and it says that it cant' reach them so it black lists them. I check my points at the flight master
</p>

<p>
	and I have the points avaiable and I can fly manually to the point  when I click on it but the bot can't fly there.
</p>

<p>
	 
</p>

<p>
	Mists of Pandara server (MOP) 5.4.8
</p>

<p>
	Running the latest version of wrobot 2.8.2 (38292) for MOP) and yes I have the right version of the bot
</p>

<p>
	installed.
</p>

<p>
	The profile I was using was downloaded from here on the wrobot.eu website  10 - 60 HordeOneClick MOP.
</p>

<p>
	 
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="28909" data-embedcontent="" data-embedid="embed1853338097" src="https://wrobot.eu/files/file/699-10-60-hordeoneclick-mop/?do=embed" style="height:471px;max-width:502px;" loading="lazy"></iframe>

<p>
	 
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="28909" data-embedcontent="" data-embedid="embed1379234229" src="https://wrobot.eu/files/file/699-10-60-hordeoneclick-mop/?do=embed" style="height:469px;max-width:502px;" loading="lazy"></iframe>

<p>
	I don't know why I am  reporting this the developer will probably just close this off and
</p>

<p>
	say unconfirmed or not a bug like he always does.  He won't seem to fix anything
</p>

<p>
	but I am reporting it anyways.
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1541</guid><pubDate>Tue, 01 Oct 2024 00:02:26 +0000</pubDate></item><item><title>WoW 10.1.7 relogger, error in game window on start with relogger</title><link>https://wrobot.eu/bugtracker/wow-1017-relogger-error-in-game-window-on-start-with-relogger-r1540/</link><description><![CDATA[
<p><a href="https://wrobot.eu/uploads/monthly_2024_09/1747707349_bandicam2023-01-1709-03-14-595.jpg.84650141a36dc622994261b4a840cff8.jpg.8e8b45348a41052889817f5f7662e890.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18542" src="https://wrobot.eu/uploads/monthly_2024_09/1747707349_bandicam2023-01-1709-03-14-595.jpg.84650141a36dc622994261b4a840cff8.jpg.8e8b45348a41052889817f5f7662e890.jpg" width="462" class="ipsImage ipsImage_thumbnailed" alt="1747707349_bandicam2023-01-1709-03-14-595.jpg.84650141a36dc622994261b4a840cff8.jpg" loading="lazy" height="378.84"></a></p>]]></description><guid isPermaLink="false">1540</guid><pubDate>Sun, 29 Sep 2024 16:41:03 +0000</pubDate></item><item><title>Refound Plz it doesn't work for me..</title><link>https://wrobot.eu/bugtracker/refound-plz-it-doesnt-work-for-me-r1539/</link><description><![CDATA[<p>
	I though the bot work in official server, can you make me a refound pls? thanks
</p>
]]></description><guid isPermaLink="false">1539</guid><pubDate>Fri, 27 Sep 2024 12:50:14 +0000</pubDate></item><item><title>[Vanilla] Thousand Needs / Freewind Post Elevator walking off end before elevator gets there</title><link>https://wrobot.eu/bugtracker/vanilla-thousand-needs-freewind-post-elevator-walking-off-end-before-elevator-gets-there-r1538/</link><description><![CDATA[<p>
	So I am trying to get the elevators to work right in my grind profile<br />
	in Thousand Needles. Instead of the character waiting for the Elevator<br />
	to come up it just walks right off the edge and dies
</p>

<p>
	And yes I have the SlimDX 4.0 installed
</p>

<p>
	<a href="https://wrobot.eu/bugtracker/problem-with-elevators-after-update-r1471/" rel="">https://wrobot.eu/bugtracker/problem-with-elevators-after-update-r1471/</a>
</p>

<p>
	<a href="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/slimdx/SlimDX%20Runtime%20.NET%204.0%20x86%20(January%202012).msi" rel="external nofollow">https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/slimdx/SlimDX Runtime .NET 4.0 x86 (January 2012).msi</a>
</p>

<p>
	Even with NO addons and Smooth Path under Enter advanced settings, path-finding<br />
	disabled it still does this and plugins disabled.
</p>

<p>
	<a href="https://wrobot.eu/forums/topic/10834-elevator-tbfp/" rel="">https://wrobot.eu/forums/topic/10834-elevator-tbfp/</a>
</p>

<p>
	<br />
	Use Flying mount is also disabled.  Now I used the profile creator and created a test profile<br />
	I never changed anything and yet it still just walks right off the edge. It<br />
	should just stand there and wait for the elevator but it doesn't it walks<br />
	off the edge.
</p>

<p>
	The test profile starts in Freewind Post at the Flight master and it should<br />
	walk out to the end and then take the elevator down and then stop once it gets<br />
	down off the end but instead it walks off the end instead of waiting for<br />
	the elevtaor and dies.
</p>

<p>
	A copy of the test profile can be downloaded at
</p>

<p>
	<a href="https://sharedby.blomp.com/KZjYg7" rel="external nofollow">https://sharedby.blomp.com/KZjYg7</a>
</p>

<p>
	 
</p>

<p>
	Now the logs can be seen at<br />
	<a href="https://sharedby.blomp.com/PUqrid" rel="external nofollow">https://sharedby.blomp.com/PUqrid</a>
</p>

<p>
	You will want to look at starting at time stamp 13:47:45.607
</p>

<p>
	Now I find it intresting that your profile creator which is what<br />
	I used to create this grind profile automatically assumes<br />
	that you can fly to this location even though I have flying turned<br />
	off.  Why is this?  I think that alone in your profile creator is<br />
	a fatal flaw. It should not automatically assume that you can fly<br />
	to a location.  When a person has flying turned off your profile creator<br />
	should not assume you can immediately fly to that location.
</p>

<p>
	I did not add the CanFlyTo your profile creator immediately did that.
</p>

<p>
	This is an example line from the untounched profile created by your<br />
	profile editor.
</p>

<p>
	&lt;Vector3 X="-5383.621" Y="-2486.721" Z="89.06526" Type="CanFlyTo" /&gt;
</p>

<p>
	So I created a 2nd copy of the profile and I called it test2.xml<br />
	again it starts from the flight master in Freewind post and I removed<br />
	the Type="CanFlyTo" and I removed it so now the line looks like
</p>

<p>
	&lt;Vector3 X="-5383.621" Y="-2486.721" Z="89.06526" /&gt;
</p>

<p>
	A copy of the 2nd profile can be downloaded at<br />
	<a href="https://sharedby.blomp.com/VYN10H" rel="external nofollow">https://sharedby.blomp.com/VYN10H</a> this is test2.xml
</p>

<p>
	So then I tested the profile test2.xml and nope it still walked right<br />
	off the cliff again!  Even when it doesn't think it can fly to the<br />
	spot it still walks right off the edge. This is maddening your<br />
	bot is broken beyond belief when it comes to elevators.
</p>

<p>
	I am running the latest version of wrobot too as of today's<br />
	date.  Wrobot 2.8.0 (26869) today is September 18 2024.
</p>

<p>
	The server I am on is a 3.3.5a (Wrath of the Lich King) private<br />
	server.  I am running the right version of the bot and the bot<br />
	works for everything else except this elevator. I have been running<br />
	the bot now for a couple of months now.
</p>

<p>
	Even with all plugins disabled as well it still does this too.
</p>

<p>
	<br />
	Look I am a trained network admin and If I am having this much problems<br />
	with your bot then there are serious issues with this. This bot (Wrobot)<br />
	is severely flawed but unfortunately there are not many other options<br />
	out there.  
</p>

<p>
	You need to look at your bot when it comes to dealing with Elevators.
</p>

<p>
	I am seeing another old ticket from back in 2018, 2019 about this and it is<br />
	marked fixed but this issue is definately NOT fixed.
</p>

<p>
	<a href="https://wrobot.eu/bugtracker/vanilla-wrobot-will-not-take-the-elevator-at-freewind-post-in-thousand-needles-r1193/" rel="">https://wrobot.eu/bugtracker/vanilla-wrobot-will-not-take-the-elevator-at-freewind-post-in-thousand-needles-r1193/</a>
</p>

<p>
	<a href="https://wrobot.eu/bugtracker/thousand-needles-bad-meshes-tries-to-walk-up-huge-cliffs-ignoring-z-coordinate-r1139/" rel="">https://wrobot.eu/bugtracker/thousand-needles-bad-meshes-tries-to-walk-up-huge-cliffs-ignoring-z-coordinate-r1139/</a>
</p>

<p>
	<a href="https://wrobot.eu/bugtracker/elevators-1k-needles-and-tb-tbc-server-r1237/" rel="">https://wrobot.eu/bugtracker/elevators-1k-needles-and-tb-tbc-server-r1237/</a>
</p>

<p>
	<a href="https://wrobot.eu/bugtracker/elevators-offmeshconnection-all-seem-broken-since-latest-update-r1208/" rel="">https://wrobot.eu/bugtracker/elevators-offmeshconnection-all-seem-broken-since-latest-update-r1208/</a>
</p>

<p>
	<a href="https://wrobot.eu/bugtracker/vanilla-something-is-fundamentaly-wrong-with-the-barrens-to-1k-elevator-r1046/" rel="">https://wrobot.eu/bugtracker/vanilla-something-is-fundamentaly-wrong-with-the-barrens-to-1k-elevator-r1046/</a>
</p>

<p>
	I mean there are lots of reports of this issue.
</p>

<p>
	The devs have marked all of these as resolved or unconfirmed and the issue is not fixed. As I said I have smooth path<br />
	disabled as well and it is STILL doing this.
</p>

<p>
	Do not simply close off this ticket please fix this issue because clearly it is not resolved.
</p>

<p>
	I would like the owner / head developer of Wrobot at this point.
</p>

<p>
	Please fix this problem the elevator at Thounsand Needles at Freewind Post<br />
	is not working right.
</p>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18534&amp;key=fb632d3d54a7e87103be55f6853716d8" data-fileExt='xml' data-fileid='18534' data-filekey='fb632d3d54a7e87103be55f6853716d8'>test.xml</a> 
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18535&amp;key=3c56f3df4459ff44a3dddfad6b44795c" data-fileExt='xml' data-fileid='18535' data-filekey='3c56f3df4459ff44a3dddfad6b44795c'>test2.xml</a> 
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18536&amp;key=be3719d88b5c63ef423fd1f0691b71b9" data-fileExt='html' data-fileid='18536' data-filekey='be3719d88b5c63ef423fd1f0691b71b9'>18 Sep 2024 13H17.log.html</a> 
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18537&amp;key=bb962aa5203f93f333b30bdc52a6bca4" data-fileExt='html' data-fileid='18537' data-filekey='bb962aa5203f93f333b30bdc52a6bca4'>18 Sep 2024 14H21.log.html</a></p>]]></description><guid isPermaLink="false">1538</guid><pubDate>Wed, 18 Sep 2024 20:58:43 +0000</pubDate></item><item><title>Bot not working Legion - Felsong</title><link>https://wrobot.eu/bugtracker/bot-not-working-legion-felsong-r1537/</link><description><![CDATA[<p>
	The game client is the correct version, i have checked and double checked and triple checked. It sees felsong as incompatible and the program hangs every single time i try to launch the bot. Just downloaded today in hopes of testing it out and maybe purchasing. 
</p>
]]></description><guid isPermaLink="false">1537</guid><pubDate>Thu, 15 Aug 2024 18:55:13 +0000</pubDate></item><item><title>[Auction] Auction house not open.</title><link>https://wrobot.eu/bugtracker/auction-auction-house-not-open-r1535/</link><description><![CDATA[<p>
	[Auction] Auction house not open.
</p>
]]></description><guid isPermaLink="false">1535</guid><pubDate>Fri, 12 Jul 2024 05:33:30 +0000</pubDate></item><item><title>Client Crash when you go to start bot</title><link>https://wrobot.eu/bugtracker/client-crash-when-you-go-to-start-bot-r1534/</link><description><![CDATA[<p>
	Ok so I was going to order your bot but it appears that there is a major bug here with your
</p>

<p>
	bot at this point. I was on the TRIAL to test it and it was a good thing I did.
</p>

<p>
	 
</p>

<p>
	So I have all of the files needed installed
</p>

<p>
	 
</p>

<p>
	I have the Redistributable Visual C + + 2010 (64 bit) and SlimDX Runtime (64 Bit)
</p>

<p>
	So I went in and I told it to start the bot then I selected the process from the list
</p>

<p>
	after I refreshed the list it finds the wow process after I am logged in no problem.
</p>

<p>
	 
</p>

<p>
	And then I click on Start Bot and the client crashes I did this twice both times the
</p>

<p>
	client crashed.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	This is on a server called ReforgedCraft.  I never had this issue previously running
</p>

<p>
	just the client and has only done this when I go to start WRobot.
</p>

<p>
	<a href="https://reforgedcraft.com/" rel="external nofollow">https://reforgedcraft.com/</a>
</p>

<p>
	 
</p>

<p>
	The client is a supported client being 3.3.5.12340 as per your list of supported version
</p>

<p>
	<a href="https://wrobot.eu/#wrobot_ancre" rel="">https://wrobot.eu/#wrobot_ancre</a>
</p>

<p>
	<b>Wrath of the Lich King</b><br>
	<i>Wotlk 3.3.5a build 12340</i>
</p>

<p>
	this version should be supported.  But the client crashes every time.
</p>

<p>
	 
</p>

<p>
	EDIT: I did get it to not crash once but it seems to be quite touchy. I am not sure why.
</p>

<p>
	 
</p>

<p>
	I installed the latest version of the multi-version bot and yes I installed the right bot version for 3.3.5a
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="1" data-embedcontent="" data-embedid="embed7738267698" src="https://wrobot.eu/files/file/2-wrobot-official/?do=embed" style="height:471px;max-width:502px;" loading="lazy"></iframe>

<p>
	 
</p>

<p>
	This does look like a bug can you please look into this.   The client and bot shouldn't just
</p>

<p>
	crash well the bot is exiting I think after the client crashes.
</p>

<p>
	 
</p>

<p>
	I am not your average end user either I am highly technical I am a trained net admin myself
</p>

<p>
	and have worked in the I.T. field.
</p>

<p>
	 
</p>

<p>
	Please see the attached files  the full error is in the screenshot when I go to start the bot and
</p>

<p>
	the client crashes itself.
</p>

<p>
	 
</p>

<p>
	Thanks,
</p>

<p>
	 
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2024_07/ReforgedcraftDetailsWindow.jpg.24f2215fffd68d775f77f9d9cb18f296.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18513" src="https://wrobot.eu/uploads/monthly_2024_07/ReforgedcraftDetailsWindow.jpg.24f2215fffd68d775f77f9d9cb18f296.jpg" width="420" class="ipsImage ipsImage_thumbnailed" alt="Reforgedcraft Details Window.jpg" loading="lazy" height="550.2"></a></p>
<p><a href="https://wrobot.eu/uploads/monthly_2024_07/WrobotcrashclientReforgedcraftServer.jpg.8eeb91bd6fbfe130b5ce1c9d048a4edf.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18514" src="https://wrobot.eu/uploads/monthly_2024_07/WrobotcrashclientReforgedcraftServer.thumb.jpg.9ca4f16df9046db32fae6aeed9875975.jpg" width="1000" class="ipsImage ipsImage_thumbnailed" alt="Wrobot crash client Reforgedcraft Server.jpg" loading="lazy" height="460"></a></p>]]></description><guid isPermaLink="false">1534</guid><pubDate>Thu, 11 Jul 2024 01:57:38 +0000</pubDate></item><item><title>Suggestion in Relogger</title><link>https://wrobot.eu/bugtracker/suggestion-in-relogger-r1533/</link><description><![CDATA[<div style="border-right:1px solid #c8c7cc;">
	<span style="color:#ffffff;"><span style="font-size:22px;">Hi <a contenteditable="false" data-ipshover="" data-ipshover-target="https://wrobot.eu/profile/1-droidz/?do=hovercard" data-mentionid="1" href="https://wrobot.eu/profile/1-droidz/" rel="">@<span style="color:#ff0000;">Droidz</span></a> I have some problems with Relogger, I use each .exe of wow to share proxies to each window. BUT Relogger does not have a separation of launches for 1 character - 1 .exe, only 1 .exe = all characters,<br />
	<br />
	How can I fix this and will it fix it at all? If there is no such function, could you add it?</span></span>
</div>
]]></description><guid isPermaLink="false">1533</guid><pubDate>Wed, 03 Jul 2024 23:49:45 +0000</pubDate></item><item><title>Failing to login with relogger</title><link>https://wrobot.eu/bugtracker/failing-to-login-with-relogger-r1531/</link><description><![CDATA[<p>
	When i use relogger it opens my wow and then my wrobot like normal. Now i see the character list and relogger tried to login to the char i set. I always get the message login failed. I have to manually click on ok and the the bot is able to login.
</p>
]]></description><guid isPermaLink="false">1531</guid><pubDate>Mon, 08 Apr 2024 14:22:38 +0000</pubDate></item><item><title>Can't detect killed moby</title><link>https://wrobot.eu/bugtracker/cant-detect-killed-moby-r1530/</link><description><![CDATA[<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18457&amp;key=b90fefef1452de7cb52df1f242991451" data-fileExt='xml' data-fileid='18457' data-filekey='b90fefef1452de7cb52df1f242991451'>1-70 test.xml</a></p>]]></description><guid isPermaLink="false">1530</guid><pubDate>Mon, 25 Mar 2024 23:09:54 +0000</pubDate></item><item><title><![CDATA[UC-> Northrend zepp]]></title><link>https://wrobot.eu/bugtracker/uc-northrend-zepp-r1529/</link><description><![CDATA[<p>
	return Usefuls.ContinentId == (int) ContinentId.Azeroth;<br />
	return Usefuls.ContinentId == (int) ContinentId.Northrend &amp;&amp; !ObjectManager.Me.InTransport;
</p>

<p>
	// Sample of how to use Zeppelin/Ship
</p>

<p>
	/* Quest settings:<br />
	    * Can condition: "return Usefuls.ContinentId == (int) ContinentId.Azeroth;"<br />
	    * Is complete condition: "return Usefuls.ContinentId == (int) ContinentId.Northrend &amp;&amp; !ObjectManager.Me.InTransport;"<br />
	    * Not required in quest log: "True"<br />
	    * Quest type: "OverridePulseCSharpCode"<br />
	*/
</p>

<p>
	// You can get zeppelin/ship/player positions and entry ID in tab "Tools" &gt; "Development Tools" &gt; "Dump all informations" (or "Memory information").
</p>

<p>
	// Settings:<br />
	var zeppelinEntryId = 181689; // Zeppelin/Ship EntryId<br />
	// From<br />
	var fromZeppelinWaitPosition = new Vector3(2056.493, 381.6347, 100.362); // Position where Zeppelin/Ship waits players (from)<br />
	var fromPlayerWaitPosition = new Vector3(2062.561f, 360.3267f, 82.48441f); // Position where the player waits Zeppelin/Ship (from)<br />
	var fromPlayerInZeppelinPosition = new Vector3(2060.485f, 369.5409f, 82.4969f); // Position where the player waits in the Zeppelin/Ship (from)<br />
	// To<br />
	var toZeppelinWaitPosition = new Vector3(1989.353f, -6082.776f, 85.59646f); // Position where Zeppelin/Ship waits players (to)<br />
	var toPlayerLeavePosition = new Vector3(1971.037f, -6102.614f, 67.15821f); // Position to go out the Zeppelin/Ship (to)
</p>

<p>
	// Change WRobot settings:<br />
	wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false;
</p>

<p>
	// Code:<br />
	if (!Conditions.InGameAndConnectedAndProductStartedNotInPause)<br />
	    return true;
</p>

<p>
	if (Usefuls.ContinentId == (int)ContinentId.Azeroth)<br />
	{<br />
	    if (!ObjectManager.Me.InTransport)<br />
	    {<br />
	        if (GoToTask.ToPosition(fromPlayerWaitPosition))<br />
	        {<br />
	            var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o =&gt; o.GetDistance).FirstOrDefault();<br />
	            if (zeppelin != null &amp;&amp; zeppelin.Position.DistanceTo(fromZeppelinWaitPosition) &lt; 2)<br />
	            {<br />
	                GoToTask.ToPosition(fromPlayerInZeppelinPosition);<br />
	            }<br />
	        }<br />
	    }<br />
	}<br />
	else if (Usefuls.ContinentId == (int)ContinentId.Northrend)<br />
	{<br />
	    if (ObjectManager.Me.InTransport)<br />
	    {<br />
	        var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o =&gt; o.GetDistance).FirstOrDefault();<br />
	        if (zeppelin != null &amp;&amp; zeppelin.Position.DistanceTo(toZeppelinWaitPosition) &lt; 2)<br />
	        {<br />
	            GoToTask.ToPosition(toPlayerLeavePosition);<br />
	        }<br />
	    }<br />
	}<br />
	return true;
</p>

<p>
	<font color="#C71585" style="font-size:medium;">[D] 09:43:02 - [Quester] New step (784): UcNortrend&gt;PulseAllInOne</font><br style="color:#000000;font-size:medium;" />
	<font color="#0000FF" style="font-size:medium;">[N] 09:43:02 - [Path-Finding] FindPath from 2066,194 ; 347,5914 ; 82,38099 ; "None" to 2062,561 ; 360,3267 ; 82,48441 ; "None" (Azeroth)</font><br style="color:#000000;font-size:medium;" />
	<font color="#0000FF" style="font-size:medium;">[N] 09:43:02 - [Path-Finding] Path Count: 2 (13,24361y, 319ms)</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 09:43:02 - [Wholesome Inventory Manager]: Adjusting Light Throwing Knife DPS (1,25) to 0,0625</font><br style="color:#000000;font-size:medium;" />
	<font color="#0000FF" style="font-size:medium;">[N] 09:43:03 - [Path-Finding] FindPath from 2063,209 ; 358,0473 ; 82,46566 ; "None" to 2060,485 ; 369,5409 ; 82,4969 ; "None" (Azeroth)</font><br style="color:#000000;font-size:medium;" />
	<font color="#0000FF" style="font-size:medium;">[N] 09:43:03 - [Path-Finding] Path Count: 3 (11,60452y, 0ms)</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 09:44:17 - [Spell] Dual Wield (Id found: 674, Name found: Dual Wield, NameInGame found: Dual Wield, Know = True, IsSpellUsable = True)</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 09:44:18 - [Info] Continent change, Azeroth to Northrend</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 09:44:18 - [Blacklist] Added, 0 uniques Npcs, 0 Blackspots and 0 Npcs types (Training dummy ignored = True).</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 09:44:18 - [Spell] Dual Wield (Id found: 674, Name found: Dual Wield, NameInGame found: Dual Wield, Know = True, IsSpellUsable = True)</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 09:44:18 - [Spell] Dual Wield (Id found: 674, Name found: Dual Wield, NameInGame found: Dual Wield, Know = True, IsSpellUsable = True)</font>
</p>

<p>
	so, the bot sits down in the zepp at undercity, flying to northrend and cant go out of the zepp there <a contenteditable="false" data-ipshover="" data-ipshover-target="https://wrobot.eu/profile/1-droidz/?do=hovercard" data-mentionid="1" href="https://wrobot.eu/profile/1-droidz/" rel="">@<span style="color:#ff0000;">Droidz</span></a>
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1529</guid><pubDate>Wed, 17 Jan 2024 07:09:24 +0000</pubDate></item><item><title>Problem with the combat system</title><link>https://wrobot.eu/bugtracker/problem-with-the-combat-system-r1528/</link><description><![CDATA[<p>
	<span style="background-color:#161616;color:#efefef;font-size:14px;">I used a Wrobot a few years ago and everything was fine, so I decided to buy it again. A lot of problems arose immediately, but they were solved fairly quickly.</span><br style="background-color:#161616;color:#efefef;font-size:14px;" />
	<span style="background-color:#161616;color:#efefef;font-size:14px;">There is only 1 unresolved difficulty—the bot in any mode does not attack players in response. Attack before being attacked is enabled in the General Settings section. In the Product Settings section, the Disable attack before being attacked option is disabled.<br />
	I used different fighting classes and changed all the settings in advanced settings, but there is no result. Also, ignoring the battle with the players is disabled. The bot fights mobs perfectly, but if a player attacks, then he just runs about his business. <br />
	I am very sorry that such a great product does not work properly. I can assume that the issue is related to my settings, but it was dug up from and to. Furthermore, I have already reread all similar topics on the forum, and now I ask for your help.<br />
	<br />
	I did a clean installation. And again I set everything up several times. I activated the gatherer and attacked my character with another. He was just healing and trying to escape. At low health, he became AFK. Log in attachment.</span><br />
	<span style="background-color:#161616;color:#efefef;font-size:14px;">----</span><br />
	Another strange thing we noticed was that pathfinding works differently in Gatherer and Grinder modes. In Grinder mode, the path is built as if on the ground, but at a very low altitude. This is very disturbing.
</p>

<div style="background-color:#ffffff;color:#202124;font-size:medium;">
	<div>
		<div>
			<div>
				<div>
					<div style="background-color:#f8f9fa;font-size:0px;">
						<div style="font-size:0px;padding:10px 16px 48px;">
							<div>
								<div>
									 
								</div>
							</div>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18435&amp;key=a828aec6319eda5d84b7d6e3c932a7af" data-fileExt='html' data-fileid='18435' data-filekey='a828aec6319eda5d84b7d6e3c932a7af'>2023 10H01.log.html</a></p>]]></description><guid isPermaLink="false">1528</guid><pubDate>Thu, 21 Dec 2023 14:54:08 +0000</pubDate></item><item><title>WRobot does not start</title><link>https://wrobot.eu/bugtracker/wrobot-does-not-start-r1527/</link><description><![CDATA[<p>
	<span style="background-color:#ffffff;color:#353c41;font-size:14px;">WRobot has stopped running. Windows opens a window informing you of an error connecting to the server. Disabling the firewall and antivirus does not help.</span>
</p>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18430&amp;key=e1f4dee805daab00b37bf5fc62b57105" data-fileExt='html' data-fileid='18430' data-filekey='e1f4dee805daab00b37bf5fc62b57105'>8 дек 2023 06H04.log.html</a></p>]]></description><guid isPermaLink="false">1527</guid><pubDate>Fri, 08 Dec 2023 12:11:09 +0000</pubDate></item><item><title>Add condition bug and solution</title><link>https://wrobot.eu/bugtracker/add-condition-bug-and-solution-r1526/</link><description><![CDATA[<p>
	Sry my english.I found a bug while debugging the Druid's Lacerate skill. In the "Add condition" section, the "Buff Time Left Target" option is not working properly. The "Bigger/Smaller" comparisons are ineffective, making it impossible to correctly assess the remaining time of the debuff on the target. I am using WR2.8.0, and the game version is 3.3.5. Currently, my workaround is to write my own Lua script to check the stack count and remaining time, as follows: 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://wrobot.eu/uploads/monthly_2023_12/1.png.9a2093715c36cc6e86bf0fb122fbb78a.png" data-fileid="18421" data-fileext="png" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="18421" width="928" alt="1.thumb.png.172165dd1691f6804079872cfa7032d3.png" src="https://wrobot.eu/uploads/monthly_2023_12/1.thumb.png.172165dd1691f6804079872cfa7032d3.png" loading="lazy" height="742.4"></a>
</p>

<pre class="ipsCode prettyprint lang-lua prettyprinted"><span class="com">-- 函数：检查目标的 Debuff 并获取其剩余时间和层数</span><span class="pln">
</span><span class="kwd">local</span><span class="pln"> </span><span class="kwd">function</span><span class="pln"> CheckDebuff</span><span class="pun">(</span><span class="pln">target</span><span class="pun">,</span><span class="pln"> debuffId</span><span class="pun">)</span><span class="pln">
    </span><span class="kwd">for</span><span class="pln"> i </span><span class="pun">=</span><span class="pln"> </span><span class="lit">1</span><span class="pun">,</span><span class="pln"> </span><span class="lit">40</span><span class="pln"> </span><span class="kwd">do</span><span class="pln">
        </span><span class="kwd">local</span><span class="pln"> name</span><span class="pun">,</span><span class="pln"> _</span><span class="pun">,</span><span class="pln"> count</span><span class="pun">,</span><span class="pln"> _</span><span class="pun">,</span><span class="pln"> _</span><span class="pun">,</span><span class="pln"> duration</span><span class="pun">,</span><span class="pln"> expirationTime</span><span class="pun">,</span><span class="pln"> _</span><span class="pun">,</span><span class="pln"> _</span><span class="pun">,</span><span class="pln"> _</span><span class="pun">,</span><span class="pln"> spellId </span><span class="pun">=</span><span class="pln"> UnitDebuff</span><span class="pun">(</span><span class="pln">target</span><span class="pun">,</span><span class="pln"> i</span><span class="pun">)</span><span class="pln">
        </span><span class="kwd">if</span><span class="pln"> spellId </span><span class="pun">==</span><span class="pln"> debuffId </span><span class="kwd">then</span><span class="pln">
            </span><span class="kwd">local</span><span class="pln"> remainingTime </span><span class="pun">=</span><span class="pln"> expirationTime </span><span class="pun">-</span><span class="pln"> GetTime</span><span class="pun">()</span><span class="pln">
            </span><span class="kwd">return</span><span class="pln"> remainingTime</span><span class="pun">,</span><span class="pln"> count
        </span><span class="kwd">end</span><span class="pln">
    </span><span class="kwd">end</span><span class="pln">
    </span><span class="kwd">return</span><span class="pln"> </span><span class="kwd">nil</span><span class="pun">,</span><span class="pln"> </span><span class="kwd">nil</span><span class="pln">
</span><span class="kwd">end</span><span class="pln">

</span><span class="com">-- 常量：Lacerate 的 Debuff ID</span><span class="pln">
</span><span class="kwd">local</span><span class="pln"> LACERATE_DEBUFF_ID </span><span class="pun">=</span><span class="pln"> </span><span class="lit">48568</span><span class="pln">

</span><span class="com">-- 检查目标的 Lacerate Debuff 剩余时间和层数</span><span class="pln">
</span><span class="kwd">local</span><span class="pln"> remainingTime</span><span class="pun">,</span><span class="pln"> stackCount </span><span class="pun">=</span><span class="pln"> CheckDebuff</span><span class="pun">(</span><span class="str">"target"</span><span class="pun">,</span><span class="pln"> LACERATE_DEBUFF_ID</span><span class="pun">)</span><span class="pln">

</span><span class="com">-- 如果剩余时间小于 10 秒或层数小于 3 层，则释放 Lacerate</span><span class="pln">
</span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">remainingTime </span><span class="kwd">and</span><span class="pln"> remainingTime </span><span class="pun">&lt;</span><span class="pln"> </span><span class="lit">10</span><span class="pun">)</span><span class="pln"> </span><span class="kwd">or</span><span class="pln"> </span><span class="pun">(</span><span class="pln">stackCount </span><span class="kwd">and</span><span class="pln"> stackCount </span><span class="pun">&lt;</span><span class="pln"> </span><span class="lit">3</span><span class="pun">)</span><span class="pln"> </span><span class="kwd">then</span><span class="pln">
    </span><span class="com">-- 使用 CastSpellByName 函数释放 Lacerate</span><span class="pln">
    </span><span class="com">-- 注意：这种自动施法的行为可能违反游戏规则</span><span class="pln">
    CastSpellByName</span><span class="pun">(</span><span class="str">"割伤"</span><span class="pun">)</span><span class="pln">
</span><span class="kwd">end</span></pre>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1526</guid><pubDate>Sun, 03 Dec 2023 08:39:44 +0000</pubDate></item><item><title>***Turtle wow (v1.17) auto loot or looting is bugged. ATTENTION***</title><link>https://wrobot.eu/bugtracker/turtle-wow-v117-auto-loot-or-looting-is-bugged-attention-r1525/</link><description><![CDATA[<p>
	The bot runs to loot opens loot box and then leaves after not picking it up.
</p>

<p>
	I tried to use auto loot in Vanilla-Tweaks and turning off all addons. When i take over i can right click the mob and it picks up the loot. Is there a possible fix? otherwise I'll have not bot because of this <span><span class="ipsEmoji">😞</span></span>
</p>
]]></description><guid isPermaLink="false">1525</guid><pubDate>Fri, 17 Nov 2023 06:14:30 +0000</pubDate></item><item><title>ObjectManager</title><link>https://wrobot.eu/bugtracker/objectmanager-r1524/</link><description><![CDATA[<p>
	how to fix this?
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2023_11/_2023-11-13_131107802.png.6f52890691b7a48ee2a829c2c95c9cd3.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18403" src="https://wrobot.eu/uploads/monthly_2023_11/_2023-11-13_131107802.thumb.png.d46d749a2e3a9ecbc883be2c0b09f205.png" width="1000" class="ipsImage ipsImage_thumbnailed" alt="изображение_2023-11-13_131107802.png" loading="lazy" height="560"></a></p>]]></description><guid isPermaLink="false">1524</guid><pubDate>Mon, 13 Nov 2023 10:11:26 +0000</pubDate></item><item><title>Bot stucks</title><link>https://wrobot.eu/bugtracker/bot-stucks-r1523/</link><description><![CDATA[<p>
	Hello, in some cases ( 1 in 10-30 min) the bot starting to infinite repeat the nodes. idk how to fix it
</p>
]]></description><guid isPermaLink="false">1523</guid><pubDate>Wed, 01 Nov 2023 04:40:30 +0000</pubDate></item><item><title>relogger&#xFF0C;wobot not start</title><link>https://wrobot.eu/bugtracker/relogger%EF%BC%8Cwobot-not-start-r1521/</link><description><![CDATA[<p>
	The relogger configuration is correct, start WOW and Wrobot, and the game login is successful. After Wrobot loads, Wrobot does not start executing tasks. How to Fix？
</p>
]]></description><guid isPermaLink="false">1521</guid><pubDate>Wed, 06 Sep 2023 08:05:12 +0000</pubDate></item><item><title>Bug Path Finding</title><link>https://wrobot.eu/bugtracker/bug-path-finding-r1520/</link><description><![CDATA[<p>
	Error : [E] 09:02:04.380 - DecompressInMemoryFromBase64(string base64string): System.FormatException: The input is not a valid Base-64 string because it contains non-Base-64 characters, or contains more than two padding characters, or contains an invalid character between the padding characters.
</p>

<p>
	- [Fight] Can't reach Muigin, blacklisting it.
</p>

<p>
	[Security] Pathfinder server seem down, pause bot for 10 secondes
</p>

<p>
	i paid for this and nothing doesnt work...
</p>
]]></description><guid isPermaLink="false">1520</guid><pubDate>Wed, 06 Sep 2023 07:05:59 +0000</pubDate></item><item><title>I already purchase but I didnt received an product</title><link>https://wrobot.eu/bugtracker/i-already-purchase-but-i-didnt-received-an-product-r1519/</link><description><![CDATA[<p>
	I already purchase an 10.99 euro subscription but i diodnt recieved .. please help
</p>
]]></description><guid isPermaLink="false">1519</guid><pubDate>Mon, 04 Sep 2023 15:01:39 +0000</pubDate></item><item><title>Wrobot pathing</title><link>https://wrobot.eu/bugtracker/wrobot-pathing-r1518/</link><description><![CDATA[<p>
	No idea why the bot, alweys fucked up pathing.
</p>

<video controls class="ipsEmbeddedVideo" data-fileid="18353" data-controller="core.global.core.embeddedvideo" preload="metadata">
	<source src="https://wrobot.eu/uploads/monthly_2023_08/buggedpath.mp4.4f6fcf290a45694acdaa4b22661c1d65.mp4" type="video/mp4">
	<a class="ipsAttachLink" href="//wrobot.eu/applications/core/interface/file/attachment.php?id=18353&amp;key=0dfb01bd2bbea8cd9beeda0dba026ba6">bugged path.mp4</a>
</source></video><p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18354&amp;key=bdc8543cb56867322a9d83cd5965e6d6" data-fileext="html" data-fileid="18354" data-filekey="bdc8543cb56867322a9d83cd5965e6d6">29 авг 2023 15H56.log.html</a></p>]]></description><guid isPermaLink="false">1518</guid><pubDate>Tue, 29 Aug 2023 13:02:42 +0000</pubDate></item><item><title>Aura.GUID is zero in vanilla 1.12</title><link>https://wrobot.eu/bugtracker/auraguid-is-zero-in-vanilla-112-r1517/</link><description><![CDATA[<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">IEnumerable</span><span class="tag">&lt;Aura&gt;</span><span class="pln"> AuraList = ObjectManager.Me.GetAllBuff();
foreach (Aura aura in AuraList)
{
    List</span><span class="tag">&lt;ulong&gt;</span><span class="pln"> list = ObjectManager.Me.BuffCastedByAll(aura.GetSpell.Name);
    Logging.Write(aura.GetSpell.Name + " GUID " + list[0] + " count " + list.Count);
}</span></pre>

<p>
	output is below:
</p>

<p>
	17:39:14 - Power Word: Fortitude GUID 0 count 1<br />
	17:39:14 - Inner Fire GUID 0 count 1<br />
	17:39:14 - Shadow Protection GUID 0 count 1
</p>
]]></description><guid isPermaLink="false">1517</guid><pubDate>Tue, 29 Aug 2023 10:12:27 +0000</pubDate></item><item><title>WotLK 3.3.5 (Warmane) navigation no longer working correctly</title><link>https://wrobot.eu/bugtracker/wotlk-335-warmane-navigation-no-longer-working-correctly-r1516/</link><description><![CDATA[<p>
	The bot seems to run into walls, fall off of edges, run in circles and overall does not function for the last couple of weeks. Was there an update?
</p>
]]></description><guid isPermaLink="false">1516</guid><pubDate>Sat, 26 Aug 2023 16:12:17 +0000</pubDate></item><item><title>wotlk Cath zepp</title><link>https://wrobot.eu/bugtracker/wotlk-cath-zepp-r1515/</link><description><![CDATA[<p>
	At wotlk expansion cath zepp doesnt work, its will run down under the zepp
</p>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=18350&amp;key=818691279ab613837dca7036a5de0003" data-fileExt='html' data-fileid='18350' data-filekey='818691279ab613837dca7036a5de0003'>22 авг 2023 10H56.log.html</a></p>]]></description><guid isPermaLink="false">1515</guid><pubDate>Tue, 22 Aug 2023 07:59:23 +0000</pubDate></item><item><title>Fightback dont work</title><link>https://wrobot.eu/bugtracker/fightback-dont-work-r1514/</link><description><![CDATA[<pre style="border-bottom-width:1px;border-color:#888888;border-right-width:1px;border-style:solid;border-top-width:1px;color:#efefef;font-size:14px;padding:2px;"><span style="color:#efefef;">wManager</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">Wow</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">Helpers</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">Conditions</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">ForceIgnoreIsAttacked</span><span style="color:#efefef;"> </span><span style="color:#b3b350;">=</span><span style="color:#efefef;"> </span><span style="color:#64b7ff;">true</span><span style="color:#b3b350;">;</span></pre>

<p>
	 
</p>

<pre style="border-bottom-width:1px;border-color:#888888;border-right-width:1px;border-style:solid;border-top-width:1px;color:#efefef;font-size:14px;padding:2px;"><span style="color:#efefef;">wManager</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">Wow</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">Helpers</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">Conditions</span><span style="color:#b3b350;">.</span><span style="color:#ff9dff;">ForceIgnoreIsAttacked</span><span style="color:#efefef;"> </span><span style="color:#b3b350;">=</span><span style="color:#efefef;"> </span><span style="color:#64b7ff;">false</span><span style="color:#b3b350;">;</span></pre>

<p>
	<font color="#b3b350">This code isnt working, the boot still do fightsback</font>
</p>

<p>
	First shot the bot follow the way, second do fightback, third the way is broken bcoz bot do the fightback.
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2023_08/23123123123.jpg.bf1956a9334022376cd598e91e514c27.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18345" src="https://wrobot.eu/uploads/monthly_2023_08/23123123123.thumb.jpg.df72b31de57646510fa5f6c393da4734.jpg" width="1000" class="ipsImage ipsImage_thumbnailed" alt="23123123123.jpg" loading="lazy" height="560"></a></p>
<p><a href="https://wrobot.eu/uploads/monthly_2023_08/12312312312.jpg.07c836482235d41debe24b9126c74be7.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18346" src="https://wrobot.eu/uploads/monthly_2023_08/12312312312.thumb.jpg.26932f880aca947fe9bce862c8f74a90.jpg" width="1000" class="ipsImage ipsImage_thumbnailed" alt="12312312312.jpg" loading="lazy" height="560"></a></p>
<p><a href="https://wrobot.eu/uploads/monthly_2023_08/13123123123.jpg.0e648115c212da2faaac4a1b4d7474b8.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18347" src="https://wrobot.eu/uploads/monthly_2023_08/13123123123.thumb.jpg.c8e1db6c410f0f9fc742efad38d39ae9.jpg" width="1000" class="ipsImage ipsImage_thumbnailed" alt="13123123123.jpg" loading="lazy" height="560"></a></p>]]></description><guid isPermaLink="false">1514</guid><pubDate>Mon, 21 Aug 2023 07:54:19 +0000</pubDate></item><item><title>How to stop fighting threads In Quest mode</title><link>https://wrobot.eu/bugtracker/how-to-stop-fighting-threads-in-quest-mode-r1513/</link><description><![CDATA[<p>
	<span style="background-color:#ffffff;color:#353c41;font-size:14px;text-align:left;"> Fight.StopFight(); </span>
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2023_07/_20230713115740.png.da04524ad55daaf320d959ac5fae83e6.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18292" src="https://wrobot.eu/uploads/monthly_2023_07/_20230713115740.png.da04524ad55daaf320d959ac5fae83e6.png" width="443" class="ipsImage ipsImage_thumbnailed" alt="微信图片_20230713115740.png" loading="lazy" height="429.71"></a></p>]]></description><guid isPermaLink="false">1513</guid><pubDate>Thu, 13 Jul 2023 04:00:06 +0000</pubDate></item><item><title>StopFight invalid&#xFF0C;The thread has been blocked</title><link>https://wrobot.eu/bugtracker/stopfight-invalid%EF%BC%8Cthe-thread-has-been-blocked-r1512/</link><description><![CDATA[<p>
	<span style="background-color:#ffffff;color:#353c41;font-size:14px;text-align:left;"> Fight.StopFight();</span>
</p>
]]></description><guid isPermaLink="false">1512</guid><pubDate>Thu, 13 Jul 2023 03:42:59 +0000</pubDate></item><item><title>WOTLK Warrior You Are Too Close Combat Bug Wont Attack 3.3.5</title><link>https://wrobot.eu/bugtracker/wotlk-warrior-you-are-too-close-combat-bug-wont-attack-335-r1511/</link><description><![CDATA[<p>
	Im having this error in end-game dungeons and raids, where bigger enemies and more specifically big bosses trigger a "You are too close" and my warrior does not complete any attack rotation. Even if I set off the check distance option in the fight class editor. 
</p>

<p>
	While attacking bosses that are larger than the general unit size, the rotation just does not work most of the time. Maybe a few spells or buffs trigger but overall it just doesn't work. I have tried a few options in the fight class editor too. Unless I'm missing something?
</p>

<p>
	If I use keyboard keys while the bot is still running then the rotation does work when receiving that message. As in if I am jamming numbers 1,2,3 for spells bloodlust, whirlwind, and HS. But I would obviously like this to be autonomous.
</p>

<p>
	Some examples that I have tried to use to fix have been in the fight class editor:
</p>

<p>
	1. Setting all moves as buffs 
</p>

<p>
	2. check distance false
</p>

<p>
	3. check id spell usable false
</p>

<p>
	4. enable Wrobot movement true /false (in wrobot settings)
</p>

<p>
	5. Check if the target is in view false
</p>

<p>
	**would there maybe be an option to ignore the "Your are too close" ? as in to just use rotation regardless of any factors except any set conditions?
</p>
]]></description><guid isPermaLink="false">1511</guid><pubDate>Mon, 12 Jun 2023 08:40:12 +0000</pubDate></item><item><title>server seems to be down, you may try to disable your Anti-virus or Firewall and try again.</title><link>https://wrobot.eu/bugtracker/server-seems-to-be-down-you-may-try-to-disable-your-anti-virus-or-firewall-and-try-again-r1510/</link><description><![CDATA[<p>
	[D] 00：40：35 - [信息] 日志文件创建： 30 <font color="#C71585" style="font-size:medium;">5月 2023 00H40.log.html</font><br style="color:#000000;font-size:medium;" />
	[D] 00：40：35 - [信息] <font color="#C71585" style="font-size:medium;">WRobot 版本： 2.8.0 （19808） 对于 WOW： 4.3.4_15595</font>[D] 00：40：35 - [信息] 官方网站： <a href="https://wrobot.eu/" rel="">https://wrobot.eu/</a><br style="color:#000000;font-size:medium;" />
	[D] 00：40：35 - [信息] 操作系统详细信息： 视窗 10 企业<br style="color:#000000;font-size:medium;" />
	版[D] 00：40：35<br style="color:#000000;font-size:medium;" />
	- [<font color="#C71585" style="font-size:medium;">信息] 郎： 中文（简体，中国）</font><br style="color:#000000;font-size:medium;" />
	[<font color="#808080" style="font-size:medium;">法] 00：40：36 - [内存] 找到 D3D9： 6A 14 B8 B0 1C BC 72 E8 CA 9F</font><br style="color:#000000;font-size:medium;" />
	<font color="#FF0000" style="font-size:medium;">[E] 00：40：36 - GetRequest： <a href="https://download.wrobot.eu/wrobotcata/alert.php" rel="external nofollow">https://download.wrobot.eu/wrobotcata/alert.php</a> -&gt; System.Net.Http.HttpRequestException： 发送请求时出错。---&gt; System.Net.WebException： 基础连接已经关闭： 发送时发生错误。---&gt; System.IO.IOException： 无法从传输连接中读取数据： 远程主机强迫关闭了一个现有的连接。。---&gt; System.Net.Sockets.SocketException： 远程主机强迫关闭了一个现有的连接。<br />
	在 System.Net.Sockets.Socket.EndReceive（IAsyncResult asyncResult）在 System.Net.Sockets.NetworkStream.EndRead（IAsyncResult asyncResult）--- 内部异常堆栈跟踪的结尾 ---在 System.Net.TlsStream.EndWrite（IAsyncResult asyncResult）在 System.Net.PooledStream.EndWrite（IAsyncResult asyncResult）在 System.Net.ConnectStream.WriteHeadersCallback（IAsyncResult ar）<br />
	<br />
	<br />
	<br />
	<br />
	--- 内部异常堆栈跟踪的结尾 ---<br />
	<br />
	在 System.Net.HttpWebRequest.EndGetResponse（IAsyncResult asyncResult）在 System.Net.Http.HttpClientHandler.GetResponseCallback（IAsyncResult ar）--- 内部异常堆栈跟踪的结尾 ---<br />
	在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess（Task task）在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification（Task task）<br />
	<br />
	<br />
	<br />
	在 robotManager.Help.Others..MoveNext（）</font>[F]<br style="color:#000000;font-size:medium;" />
	00：40：36 - [内存] <font color="#808080" style="font-size:medium;">D3D11 找到： 8B FF 55 8B EC 83 E4 F8 83 EC</font><br style="color:#000000;font-size:medium;" />
	[F] 00：40：<font color="#808080" style="font-size:medium;">36 - [内存] D3D9 已使用</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 00：40：50 - GetRequest（string url=“https://download.wrobot.eu/wrobotcata/isOnline.php”， string data=“”）： System.Net.WebException： 基础连接已经关闭： 发送时发生错误。---&gt; System.IO.IOException： 无法从传输连接中读取数据： 远程主机强迫关闭了一个现有的连接。。---&gt; System.Net.Sockets.SocketException： 远程主机强迫关闭了一个现有的连接。在 System.Net.Sockets.Socket.Receive（Byte[] buffer， Int32 offset， Int32 size， SocketFlags socketFlags）在 System.Net.Sockets.NetworkStream.Read（Byte[] buffer， Int32 offset， Int32 size）--- 内部异常堆栈跟踪的结尾 ---<br />
	在 System.Net.Sockets.NetworkStream.Read（Byte[] buffer， Int32 offset， Int32 size）在 System.Net.FixedSizeReader.ReadPacket（Byte[] buffer， Int32 offset， Int32 count）<br />
	<br />
	<br />
	<br />
	<br />
	在 System.Net.Security.SslState.StartReceiveBlob（Byte[] buffer， AsyncProtocolRequest asyncRequest）在 System.Net.Security.SslState.CheckCompletionBeforeNextReceive（ProtocolToken message， AsyncProtocolRequest asyncRequest）在 System.Net.Security.SslState.StartSendBlob（Byte[] incoming， Int32 count， AsyncProtocolRequest asyncRequest， Boolean renegotiation）<br />
	<br />
	<br />
	在 System.Net.Security.SslState.ForceAuthentication（Boolean receiveFirst， Byte[] buffer， AsyncProtocolRequest asyncRequest， Boolean renegotiation）在 System.Net.Security.SslState.ProcessAuthentication（LazyAsyncResult lazyResult）在 System.Net.TlsStream.CallProcessAuthentication（Object state）<br />
	<br />
	<br />
	在 System.Threading.ExecutionContext.RunInternal（ExecutionContext executionContext， ContextCallback callback， Object state， Boolean preserveSyncCtx）<br />
	在 System.Threading.ExecutionContext.Run（ExecutionContext executionContext， ContextCallback callback， Object state， Boolean preserveSyncCtx）在 System.Threading.ExecutionContext.Run（ExecutionContext executionContext， ContextCallback callback， Object state）在 System.Net.TlsStream.ProcessAuthentication（LazyAsyncResult result）在 System.Net.TlsStream.Write（Byte[] buffer， Int32 offset， Int32 size）在 System.Net.PooledStream.Write（Byte[] buffer， Int32 offset， Int32 size）<br />
	<br />
	<br />
	<br />
	<br />
	在 System.Net.ConnectStream.WriteHeaders(Boolean async)<br />
	--- 内部异常堆栈跟踪的结尾 ---<br />
	在 System.Net.HttpWebRequest.GetResponse()<br />
	--- 引发异常的上一位置中堆栈跟踪的末尾 ---<br />
	在  .(Exception )<br />
	在  .(Object )<br />
	在  .(MethodBase , Boolean )<br />
	在  .( )<br />
	在  . ( ,  )<br />
	在  . ()<br />
	在  . (Boolean )</font><br style="color:#000000;font-size:medium;" />
	<font color="#FF0000" style="font-size:medium;">[E] 00:40:54 - System.Char[]</font>
</p>
]]></description><guid isPermaLink="false">1510</guid><pubDate>Tue, 30 May 2023 03:35:44 +0000</pubDate></item><item><title>Error when starting Quester</title><link>https://wrobot.eu/bugtracker/error-when-starting-quester-r1509/</link><description><![CDATA[<p>
	Whenever I start any profile I get this error:
</p>

<p>
	<br />
	[E] 16:13:46 - Engine &gt; Pulse(): System.InvalidOperationException: A gyűjtemény módosult, előfordulhat, hogy a számbavételi művelet nem fut le.<br />
	   a következő helyen: System.ThrowHelper.ThrowInvalidOperationException(ExceptionResource resource)<br />
	   a következő helyen: System.Collections.Generic.List`1.Enumerator.MoveNextRare()<br />
	   a következő helyen: System.Collections.Generic.List`1.Enumerator.MoveNext()<br />
	   a következő helyen: robotManager.FiniteStateMachine.Engine.Pulse()
</p>
]]></description><guid isPermaLink="false">1509</guid><pubDate>Thu, 11 May 2023 14:19:11 +0000</pubDate></item><item><title>Wrobot st&#xFC;rzt nach ca 5-10 min ab Wow wird dann beendet</title><link>https://wrobot.eu/bugtracker/wrobot-st%C3%BCrzt-nach-ca-5-10-min-ab-wow-wird-dann-beendet-r1508/</link><description><![CDATA[<p>
	<span><span style="font-size:10pt;">Liebe grüße,</span></span>
</p>

<p>
	<span><span style="font-size:10pt;">Ich habe mir gerade wrobot für 6 monate gekauft und wollte diese auf einem Privatserver ausprobieren und benutzen, bin dahin hab ich bereits profile für questen und grinden hinzugefügt, sowie auch die fightclass wenn ich das ganze dann starte bzw. wärend ich wow im fenstermodus an habe stürzt das ganze ab </span></span>
</p>

<p>
	<span><span style="font-size:10pt;"> </span></span>
</p>

<p>
	<span><span style="font-size:10pt;">Ich finde im Internet auch nichts darüber deswegen schreibe ich ihnen hier ... Bitte gerne schnellstmöglich melden </span></span>
</p>
]]></description><guid isPermaLink="false">1508</guid><pubDate>Sun, 16 Apr 2023 10:26:47 +0000</pubDate></item><item><title>WoW 9.2.7 auction bot does not put the items up for auction</title><link>https://wrobot.eu/bugtracker/wow-927-auction-bot-does-not-put-the-items-up-for-auction-r1507/</link><description><![CDATA[<p>
	Hi, auction bot does not put the items up for auction
</p>
]]></description><guid isPermaLink="false">1507</guid><pubDate>Sat, 15 Apr 2023 12:58:09 +0000</pubDate></item><item><title>ForceDisableResurrect</title><link>https://wrobot.eu/bugtracker/forcedisableresurrect-r1506/</link><description><![CDATA[<p>
	Hello, it would be great if you added the ForceDisableResurrect option to WmanagerSettings.
</p>

<p>
	Despite the fact that it works with
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">RemoveStateByName("Resurrect")</span></pre>

<p>
	anyway, after the bot was closed and StaticPopup was on the screen at that moment (and the character is dead), after relaunching the bot still does Release Spirit without having time to load the code from the plugin or profile
</p>
]]></description><guid isPermaLink="false">1506</guid><pubDate>Wed, 22 Feb 2023 14:10:43 +0000</pubDate></item><item><title>WRobot crashes as soon as I pass the mouse over a button where a popup appears (play button, pause button)</title><link>https://wrobot.eu/bugtracker/wrobot-crashes-as-soon-as-i-pass-the-mouse-over-a-button-where-a-popup-appears-play-button-pause-button-r1505/</link><description><![CDATA[<p>
	Good morning,<br />
	I am writing these lines to you because despite a complete reinstallation WRobot crashes as soon as I pass the mouse over a button where a popup appears (play button, pause button) and suddenly it crashes enormously randomly, if I stagnate on the WRobot window with the mouse I can be sure it will crash..
</p>

<p>
	Windows 11,<br />
	Wrobot /WoW3.3.5<br />
	Wholesome Plugins + Product (autoquester)
</p>

<p>
	I'm sure I didn't have this problem before... <span><span class="ipsEmoji">😕</span></span>
</p>
]]></description><guid isPermaLink="false">1505</guid><pubDate>Tue, 14 Feb 2023 01:30:25 +0000</pubDate></item><item><title>Map not centered</title><link>https://wrobot.eu/bugtracker/map-not-centered-r1504/</link><description><![CDATA[<p>
	It only Noticeable when working on a small screen:
</p>

<p>
	 
</p>

<p>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="18117" width="387" alt="image.png.5cf8a9bcdf75c1daaf1f55591dfb34e2.png" src="https://wrobot.eu/uploads/monthly_2023_02/image.png.5cf8a9bcdf75c1daaf1f55591dfb34e2.png" loading="lazy" height="367.65">
</p>

<p>
	 
</p>

<p>
	your map is centred in the window tab area, not in the visual seen area (minus the sidebar to enable/disable options).
</p>

<p>
	Could you center it correctly so it is operatable on small laptop screens (1337x768 or so) with wow and another thing opened?
</p>

<p>
	also if yo on it, add a way to hide the right toolbar on such small viewports and add a status line that shows bot state into the map as requested otherwise.
</p>

<p>
	 
</p>

<p>
	Thanks in advance
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1504</guid><pubDate>Sat, 04 Feb 2023 16:46:37 +0000</pubDate></item><item><title>relogger 5.4.8 does not enter login and password</title><link>https://wrobot.eu/bugtracker/relogger-548-does-not-enter-login-and-password-r1503/</link><description><![CDATA[<p>
	does not enter login and password, only restarts the wow window
</p>
]]></description><guid isPermaLink="false">1503</guid><pubDate>Wed, 18 Jan 2023 05:41:12 +0000</pubDate></item><item><title>WoW 9.2.7 relogger, error in game window on start with relogger</title><link>https://wrobot.eu/bugtracker/wow-927-relogger-error-in-game-window-on-start-with-relogger-r1502/</link><description><![CDATA[
<p><a href="https://wrobot.eu/uploads/monthly_2023_01/1747707349_bandicam2023-01-1709-03-14-595.jpg.84650141a36dc622994261b4a840cff8.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="18095" src="https://wrobot.eu/uploads/monthly_2023_01/1747707349_bandicam2023-01-1709-03-14-595.jpg.84650141a36dc622994261b4a840cff8.jpg" width="462" class="ipsImage ipsImage_thumbnailed" alt="bandicam 2023-01-17 09-03-14-595.jpg" loading="lazy" height="378.84"></a></p>]]></description><guid isPermaLink="false">1502</guid><pubDate>Tue, 17 Jan 2023 06:08:07 +0000</pubDate></item><item><title>Check unstuck algo regarding while in battle</title><link>https://wrobot.eu/bugtracker/check-unstuck-algo-regarding-while-in-battle-r1501/</link><description><![CDATA[<p>
	See
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="44656" data-embedcontent="" data-embedid="embed1821784275" src="https://wrobot.eu/forums/topic/13941-bot-thinks-it-is-stuck-after-charging/?do=embed&amp;comment=64772&amp;embedComment=64772&amp;embedDo=findComment#comment-64772" style="height:298px;max-width:502px;" loading="lazy"></iframe><iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="1" data-embedcontent="" data-embedid="embed6541541361" src="https://wrobot.eu/files/file/671-stuck-alert/?do=embed" style="height:267px;max-width:502px;" loading="lazy"></iframe>

<p>
	you should handle it differently in battle then in just moving... suggestion at forum post, it is to critical in battle in considering char as stuck
</p>
]]></description><guid isPermaLink="false">1501</guid><pubDate>Fri, 30 Dec 2022 21:38:34 +0000</pubDate></item><item><title>wotlk: The Barrens Add NPCs from Camp Taurajo to build in Town list</title><link>https://wrobot.eu/bugtracker/wotlk-the-barrens-add-npcs-from-camp-taurajo-to-build-in-town-list-r1500/</link><description><![CDATA[<p>
	My Bot is allways trying to go ride the long way up to the Crossroads to sell stuff, i guess the NPCs in Camp Taurajo are not in the List of NPCs, please add them
</p>
]]></description><guid isPermaLink="false">1500</guid><pubDate>Fri, 30 Dec 2022 12:45:45 +0000</pubDate></item><item><title>Usage of Grinder Profile Editor is possible doing runtime but button "Profile Creator" is disabled?</title><link>https://wrobot.eu/bugtracker/usage-of-grinder-profile-editor-is-possible-doing-runtime-but-button-profile-creator-is-disabled-r1499/</link><description><![CDATA[<p>
	i can use the grinding profile editor/profile creator while the bot is active (maybe to add aditional mobs or so) but i cant launch it, the button is disabled, please just enable them always.
</p>

<p>
	 
</p>

<p>
	just allow me to click on that button while the thing is running,
</p>

<p>
	 
</p>

<p>
	and as feature request, if possible allow switches like attack before being attackt, ignore on travelling, etc to turned on and of while running...
</p>
]]></description><guid isPermaLink="false">1499</guid><pubDate>Fri, 30 Dec 2022 12:10:32 +0000</pubDate></item><item><title>Feature Request: write info from "in game" view to logfile</title><link>https://wrobot.eu/bugtracker/feature-request-write-info-from-in-game-view-to-logfile-r1498/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	i think it would be a good idea to write information shown in the "in game" screen also to the log file like, when bot state is changing the new one, and maybe every minute a compilation of the statistics like xp per minute, bag slots, etc...
</p>

<p>
	This would make the log more useful to read if you want to know what has happened when
</p>

<p>
	also have a look into my carbonite event-log:
</p>

<p>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="18071" width="483" alt="image.png.974d0c4c915631e046378086c6e9ab34.png" src="https://wrobot.eu/uploads/monthly_2022_12/image.png.974d0c4c915631e046378086c6e9ab34.png" loading="lazy" height="260.82">
</p>

<p>
	its a nice way where you could see some things to add to your log to, like every xp gained deserves a line in your log to...
</p>

<p>
	and what i would like to read on the Map screen, is a status bar maybe with Bot state, level and xp per minute, ah the xp to the next level could also be shown as a progress bar at the in game screen <span class="ipsEmoji">😉</span>
</p>

<p>
	 
</p>

<p>
	thanks a lot in advance
</p>
]]></description><guid isPermaLink="false">1498</guid><pubDate>Thu, 29 Dec 2022 05:56:30 +0000</pubDate></item><item><title>Feature Request: show position and progress of the schedule mode</title><link>https://wrobot.eu/bugtracker/feature-request-show-position-and-progress-of-the-schedule-mode-r1497/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	 
</p>

<p>
	schedule mode is fine for unattended botting, but it would be niche if you would see the progress like this:
</p>

<p>
	 
</p>

<p>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="18070" width="599" alt="704607301_2022-12-2906_41_26-WRobot_feature_request.png.d603f8709b2d6ae4155075116f57339e.png" src="https://wrobot.eu/uploads/monthly_2022_12/704607301_2022-12-2906_41_26-WRobot_feature_request.png.d603f8709b2d6ae4155075116f57339e.png" loading="lazy" height="353.41">
</p>

<p>
	 
</p>

<p>
	thanks in advance
</p>
]]></description><guid isPermaLink="false">1497</guid><pubDate>Thu, 29 Dec 2022 05:47:47 +0000</pubDate></item><item><title>Chat Tab isnt able to handle big amount of text when selecting/deselecting category</title><link>https://wrobot.eu/bugtracker/chat-tab-isnt-able-to-handle-big-amount-of-text-when-selectingdeselecting-category-r1496/</link><description><![CDATA[<p>
	My WRobot interface is hanging at this state:
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://wrobot.eu/uploads/monthly_2022_12/image.png.d5bf51438e324ecbb3664cbdd9882479.png" data-fileid="18069" data-fileext="png" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="18069" width="534" alt="image.thumb.png.9aa574daac96e7b2295e314b7bd92d68.png" src="https://wrobot.eu/uploads/monthly_2022_12/image.thumb.png.9aa574daac96e7b2295e314b7bd92d68.png" loading="lazy" height="747.6"></a>
</p>

<p>
	it is still running but i am unable to control it.
</p>

<p>
	 
</p>

<p>
	what lead up to the situation:
</p>

<p>
	bot is running for many hours, at the beginning i set the checks like this because i use the addon carbonite together with others on this server (attatched below) which uses own hidden channels to comunicate players positions, archivements, etc with area/guild and friends, this normally not visible messages are filling up the chat screen of wrobot so i disable them
</p>

<p>
	you may should check your string manipulation algo here, it seams to be very inefficient also two suggestions of improvements: first, remember what is checked and what not, secondly, channel messages are shown but not which channel they originate from. and third add option to filter on channel base and while at it, i think it would be a good idea to filter carbonite channels by default <span class="ipsEmoji">😉</span>
</p>

<p>
	 
</p>

<p>
	thanks in advance !
</p>
]]></description><guid isPermaLink="false">1496</guid><pubDate>Thu, 29 Dec 2022 00:51:14 +0000</pubDate></item><item><title>Gather\skinning</title><link>https://wrobot.eu/bugtracker/gatherskinning-r1495/</link><description><![CDATA[<p>
	Bot doesn't gather herbs/skinning mobs. Bot interrupt action after +\- 1sec
</p>

<p>
	 
</p>

<p>
	Client Version 1.12.1
</p>

<p>
	Bot version 32758
</p>
]]></description><guid isPermaLink="false">1495</guid><pubDate>Thu, 08 Dec 2022 07:58:28 +0000</pubDate></item><item><title>Others.Random is bugged</title><link>https://wrobot.eu/bugtracker/othersrandom-is-bugged-r1494/</link><description><![CDATA[<pre class="ipsCode prettyprint lang-c prettyprinted"><span class="typ">Others</span><span class="pun">.</span><span class="typ">Random</span><span class="pun">(</span><span class="lit">1</span><span class="pun">,</span><span class="pln"> </span><span class="lit">3</span><span class="pun">);</span><span class="pln"> </span><span class="com">// always returns 1</span><span class="pln">
</span><span class="typ">Others</span><span class="pun">.</span><span class="typ">Random</span><span class="pun">(</span><span class="lit">2</span><span class="pun">,</span><span class="pln"> </span><span class="lit">3</span><span class="pun">);</span><span class="pln"> </span><span class="com">// always returns 2</span><span class="pln">
</span><span class="com">//etc</span></pre>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1494</guid><pubDate>Tue, 22 Nov 2022 22:21:59 +0000</pubDate></item><item><title>Bag.GetBagItem() | InBag</title><link>https://wrobot.eu/bugtracker/baggetbagitem-inbag-r1493/</link><description><![CDATA[<p>
	Hey for some reason the boolean InBag is returning false if its in bag. (Not equipped.) Bug ?
</p>
]]></description><guid isPermaLink="false">1493</guid><pubDate>Wed, 16 Nov 2022 04:24:19 +0000</pubDate></item><item><title>Server connection...</title><link>https://wrobot.eu/bugtracker/server-connection-r1492/</link><description><![CDATA[<p>
	Hello, 
</p>

<p>
	sometimes i can connect to the server, but when i try a bit later with a second client i cant connect:
</p>

<p>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="18013" width="400" alt="image.png.4767c891561b14acfba9743077ab1c8d.png" src="https://wrobot.eu/uploads/monthly_2022_11/image.png.4767c891561b14acfba9743077ab1c8d.png" loading="lazy" height="284">
</p>

<p>
	The only way to fix it currently is to restart and hope for the best. Running more than 1 client is not working.
</p>
]]></description><guid isPermaLink="false">1492</guid><pubDate>Fri, 11 Nov 2022 20:04:05 +0000</pubDate></item><item><title>Bugs / better movement in Battlegrounds</title><link>https://wrobot.eu/bugtracker/bugs-better-movement-in-battlegrounds-r1491/</link><description><![CDATA[<p>
	hello,
</p>

<p>
	I wonder if it is possible to improve a few paths on battlegrounds which are basically the only reason someone can rate the behavior as "bot". I am playing on the Alliance side (wotlk version) and here are the things that have been causing problems for a long time:<br />
	- Warsong Gulch - after respawn / resurrect: the character does not go down (right next to the graveyard) like other players, but runs to the left of the spawn (and finally tries to run up from the bottom of the graveyard)<br />
	- Arathi Basin - the character often runs through the water to get to the second part of the map<br />
	- Alterac Valley - the character often runs to the back of the respawn (mine - entrance near bridge)<br />
	- Eye of the Storm - the character often, after falling from the respawn, returns to the same place on the ground (below the respawn platform, which causes him to fall even lower).
</p>

<p>
	I'm surprised that these bugs - after so many years of running the scribe - still exist. What is the impossibility of repairing them - is it too difficult? complicated? is the project abandoned?
</p>

<p>
	'
</p>
]]></description><guid isPermaLink="false">1491</guid><pubDate>Sat, 22 Oct 2022 23:47:38 +0000</pubDate></item><item><title>game version incorrect</title><link>https://wrobot.eu/bugtracker/game-version-incorrect-r1490/</link><description><![CDATA[<p>
	Hello I would like to know if there will be a corect version for woLTK Please because it puts me <span>:</span>
</p>

<p>
	 
</p>

<p>
	<span>game version incorrect</span>
</p>
]]></description><guid isPermaLink="false">1490</guid><pubDate>Wed, 19 Oct 2022 13:23:34 +0000</pubDate></item><item><title>Wrobot doesnt open. WOLTK</title><link>https://wrobot.eu/bugtracker/wrobot-doesnt-open-woltk-r1489/</link><description><![CDATA[<p>
	When clicking on the wrobot.exe i just get a blank small screen for a couple of seconds and then it closes itself.<br />
	No error message nothing.
</p>

<p>
	Installed directx, visual c++ x86 everything according to the tips listed.<br />
	When trying for legion it does work it opens the sign in screen. And manage to sign in with the TRIAL code.<br />
	<br />
	Log:
</p>

<p>
	<font color="#C71585" style="font-size:medium;">[D] 17:00:58 - [Info] Log file created: 26 Sep 2022 17H00.log.html</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 17:00:58 - [Info] WRobot Version: 2.7.2 (37099) for wow: 3.3.5a_12340</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 17:00:58 - [Info] Offical website: <a href="https://wrobot.eu/" rel="">https://wrobot.eu/</a></font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 17:00:58 - [Info] Operating System Details: Windows 10 Enterprise</font><br style="color:#000000;font-size:medium;" />
	<font color="#C71585" style="font-size:medium;">[D] 17:00:58 - [Info] Lang: English (United States)</font>
</p>
]]></description><guid isPermaLink="false">1489</guid><pubDate>Tue, 27 Sep 2022 00:06:20 +0000</pubDate></item><item><title>Login error</title><link>https://wrobot.eu/bugtracker/login-error-r1488/</link><description><![CDATA[<p>
	from yesterday to today it gives a login error <img class="ipsImage ipsImage_thumbnailed" data-fileid="18003" width="504" alt="702482148_(1).png.d34a7faa9736e698c03efaa3a1e35084.png" src="https://wrobot.eu/uploads/monthly_2022_09/702482148_(1).png.d34a7faa9736e698c03efaa3a1e35084.png" loading="lazy" height="181.44">
</p>
]]></description><guid isPermaLink="false">1488</guid><pubDate>Sun, 25 Sep 2022 11:00:49 +0000</pubDate></item><item><title>License Key is for an other Wrobot Program</title><link>https://wrobot.eu/bugtracker/license-key-is-for-an-other-wrobot-program-r1487/</link><description><![CDATA[<p>
	just bought a licence and it says that is for another wrobot program
</p>

<p>
	 
</p>

<p>
	i'm using for <a href="https://wrobot.eu/bugtracker/license-key-is-for-an-other-wrobot-program-legion-735-26124-r1484/" style="background-color:#ffffff;font-size:14px;text-align:left;" rel="">Legion 7.3.5 26124</a>
</p>
]]></description><guid isPermaLink="false">1487</guid><pubDate>Sat, 17 Sep 2022 19:10:19 +0000</pubDate></item><item><title>wrobot keeps closing down my client</title><link>https://wrobot.eu/bugtracker/wrobot-keeps-closing-down-my-client-r1486/</link><description><![CDATA[<p>
	After ive logged inn on wow and click on the character in Wrobot, it just closes wow client
</p>
]]></description><guid isPermaLink="false">1486</guid><pubDate>Fri, 02 Sep 2022 12:49:32 +0000</pubDate></item><item><title>&#x5BC6;&#x5319;&#x9519;&#x8BEF;</title><link>https://wrobot.eu/bugtracker/%E5%AF%86%E5%8C%99%E9%94%99%E8%AF%AF-r1485/</link><description><![CDATA[<p>
	你好！我的机器人刚买了5年3开的    但发给我的邮箱密码是错误的
</p>
]]></description><guid isPermaLink="false">1485</guid><pubDate>Tue, 16 Aug 2022 10:01:53 +0000</pubDate></item><item><title>License Key is for an other Wrobot Program ( Legion 7.3.5 26124)</title><link>https://wrobot.eu/bugtracker/license-key-is-for-an-other-wrobot-program-legion-735-26124-r1484/</link><description><![CDATA[<p>
	<span style="background-color:#ffffff;color:#353c41;font-size:14px;">Hey,</span><br style="background-color:#ffffff;color:#353c41;font-size:14px;" />
	<span style="background-color:#ffffff;color:#353c41;font-size:14px;">my license Key is not working for wRobot 7.3.5 (26124). Anyone know why? It always says my key is invalid.</span><br style="background-color:#ffffff;color:#353c41;font-size:14px;" />
	<span style="background-color:#ffffff;color:#353c41;font-size:14px;">However the bot recognize my char and my gameversion.</span>
</p>
]]></description><guid isPermaLink="false">1484</guid><pubDate>Tue, 02 Aug 2022 10:17:47 +0000</pubDate></item><item><title>Stuck on "Server connection..."</title><link>https://wrobot.eu/bugtracker/stuck-on-server-connection-r1483/</link><description><![CDATA[<p>
	First time it happens, started today. I have not changed anything on my computer.
</p>

<p>
	Tried everything I found in the forum: reinstalls, close products, full co<a class="ipsAttachLink" data-fileid="17936" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=17936&amp;key=10b522ee96b86bc169c063e2739bd32d" data-fileext="html" rel="">19 jul 2022 14H09.log.html</a>ntrol...
</p>
]]></description><guid isPermaLink="false">1483</guid><pubDate>Tue, 19 Jul 2022 17:11:56 +0000</pubDate></item><item><title>WRobot can't attach to a newly launched server. BlueRing: WOTLK+</title><link>https://wrobot.eu/bugtracker/wrobot-cant-attach-to-a-newly-launched-server-bluering-wotlk-r1482/</link><description><![CDATA[<p>
	Can the bot support this server?
</p>

<p>
	it's called BlueRing: WOTLK+<br />
	Their Discord: <a href="https://discord.gg/u2xvzuzM" rel="external nofollow">https://discord.gg/u2xvzuzM</a><br />
	Link to download their client: <a href="https://download.bluering.gg/" rel="external nofollow">https://download.bluering.gg/</a>
</p>

<p>
	I tried using a different client that Ni can attach to by editing realmlist.wtf. I was able to reach character selection but I can't log into the game world. The game shows an error and brings me back to character selection.
</p>
]]></description><guid isPermaLink="false">1482</guid><pubDate>Sat, 16 Jul 2022 08:32:52 +0000</pubDate></item><item><title>Need help with my WR</title><link>https://wrobot.eu/bugtracker/need-help-with-my-wr-r1481/</link><description><![CDATA[<pre dir="ltr" style="background-color:#303134;border:none;color:#e8eaed;font-size:28px;padding:2px 0.14em 2px 0px;text-align:left;"><span lang="en" xml:lang="en">Today I came across a peculiar situation. My wrobot started to close after a few seconds of use. </span></pre>

<p dir="ltr">
	 
</p>

<pre dir="ltr" style="background-color:#303134;border:none;color:#e8eaed;font-size:28px;padding:2px 0.14em 2px 0px;text-align:left;"><span lang="en" xml:lang="en">It didn't report any errors. It just disappears and stops working</span></pre>

<p dir="ltr">
	 
</p>

<pre dir="ltr" style="background-color:#303134;border:none;color:#e8eaed;font-size:28px;padding:2px 0.14em 2px 0px;text-align:left;"><span lang="en" xml:lang="en">I disabled everything. From the anti virus to my firewall</span></pre>

<p dir="ltr">
	 
</p>

<pre dir="ltr" style="background-color:#303134;border:none;color:#e8eaed;font-size:28px;padding:2px 0.14em 2px 0px;text-align:left;"><span lang="en" xml:lang="en">And in the last instance I reinstalled windows but the problem remains</span></pre>

<pre dir="ltr" style="background-color:#303134;border:none;color:#e8eaed;font-size:28px;padding:2px 0.14em 2px 0px;text-align:left;"><span lang="en" xml:lang="en">Are there any options in the game that I have to change?</span></pre>
]]></description><guid isPermaLink="false">1481</guid><pubDate>Mon, 11 Jul 2022 14:53:02 +0000</pubDate></item><item><title>Relogger Working Schedule Randomizer fields</title><link>https://wrobot.eu/bugtracker/relogger-working-schedule-randomizer-fields-r1480/</link><description><![CDATA[<p>
	Hello, could you add a similar function to the relogger to randomize the profile launch schedule, just if you do it through the plugin, the launch setting changes forever, but I would like the default values to be saved.<br />
	 
</p>

<pre class="ipsCode prettyprint lang-c prettyprinted"><span class="kwd">for</span><span class="pln"> </span><span class="pun">(</span><span class="typ">int</span><span class="pln"> i </span><span class="pun">=</span><span class="pln"> </span><span class="lit">0</span><span class="pun">;</span><span class="pln"> i </span><span class="pun">&lt;</span><span class="pln"> </span><span class="typ">Relogger</span><span class="pun">.</span><span class="typ">Classes</span><span class="pun">.</span><span class="typ">ReloggerGeneralSettings</span><span class="pun">.</span><span class="typ">CurrentSetting</span><span class="pun">.</span><span class="typ">Profiles</span><span class="pun">.</span><span class="typ">Count</span><span class="pun">;</span><span class="pln"> i</span><span class="pun">++)</span><span class="pln">
            </span><span class="pun">{</span><span class="pln">
                
                var p </span><span class="pun">=</span><span class="pln"> </span><span class="typ">Relogger</span><span class="pun">.</span><span class="typ">Classes</span><span class="pun">.</span><span class="typ">ReloggerGeneralSettings</span><span class="pun">.</span><span class="typ">CurrentSetting</span><span class="pun">.</span><span class="typ">Profiles</span><span class="pun">[</span><span class="pln">i</span><span class="pun">];</span><span class="pln">
                </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">p</span><span class="pun">.</span><span class="typ">Settings</span><span class="pun">.</span><span class="typ">ScheduleFrom</span><span class="pun">.</span><span class="typ">TimeOfDay</span><span class="pln"> </span><span class="pun">!=</span><span class="pln"> </span><span class="kwd">new</span><span class="pln"> </span><span class="typ">TimeSpan</span><span class="pun">(</span><span class="lit">0</span><span class="pun">,</span><span class="pln"> </span><span class="lit">0</span><span class="pun">,</span><span class="pln"> </span><span class="lit">0</span><span class="pun">))</span><span class="pln">
                </span><span class="pun">{</span><span class="pln">
                  var rndseconds </span><span class="pun">=</span><span class="pln"> </span><span class="typ">Others</span><span class="pun">.</span><span class="typ">Random</span><span class="pun">(</span><span class="lit">30</span><span class="pun">,</span><span class="pln"> </span><span class="lit">120</span><span class="pun">);</span><span class="pln">
                    var rnd </span><span class="pun">=</span><span class="pln"> </span><span class="typ">Others</span><span class="pun">.</span><span class="typ">Random</span><span class="pun">(</span><span class="lit">1</span><span class="pun">,</span><span class="pln"> </span><span class="lit">2</span><span class="pun">);</span><span class="pln">
                    </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">rnd </span><span class="pun">==</span><span class="pln"> </span><span class="lit">1</span><span class="pun">)</span><span class="pln">
                    </span><span class="pun">{</span><span class="pln">
                        p</span><span class="pun">.</span><span class="typ">Settings</span><span class="pun">.</span><span class="typ">ScheduleFrom</span><span class="pun">.</span><span class="typ">AddSeconds</span><span class="pun">(</span><span class="pln">rndseconds</span><span class="pun">);</span><span class="pln">
                        </span><span class="typ">Logging</span><span class="pun">.</span><span class="typ">Write</span><span class="pun">(</span><span class="pln">rndseconds </span><span class="pun">+</span><span class="pln"> </span><span class="str">" was added to "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> p</span><span class="pun">.</span><span class="typ">Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">" shedulefrom"</span><span class="pun">);</span><span class="pln">
                    </span><span class="pun">}</span><span class="pln">
                    </span><span class="kwd">else</span><span class="pln">
                    </span><span class="pun">{</span><span class="pln">
                        p</span><span class="pun">.</span><span class="typ">Settings</span><span class="pun">.</span><span class="typ">ScheduleFrom</span><span class="pun">.</span><span class="typ">AddSeconds</span><span class="pun">(-</span><span class="pln">rndseconds</span><span class="pun">);</span><span class="pln">
                        </span><span class="typ">Logging</span><span class="pun">.</span><span class="typ">Write</span><span class="pun">(</span><span class="pln">rndseconds </span><span class="pun">+</span><span class="pln"> </span><span class="str">" was taken away from "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> p</span><span class="pun">.</span><span class="typ">Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">" shedulefrom"</span><span class="pun">);</span><span class="pln">
                    </span><span class="pun">}</span><span class="pln">

                </span><span class="pun">}</span><span class="pln">

                </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">p</span><span class="pun">.</span><span class="typ">Settings</span><span class="pun">.</span><span class="typ">ScheduleTo</span><span class="pun">.</span><span class="typ">TimeOfDay</span><span class="pln"> </span><span class="pun">!=</span><span class="pln"> </span><span class="kwd">new</span><span class="pln"> </span><span class="typ">TimeSpan</span><span class="pun">(</span><span class="lit">23</span><span class="pun">,</span><span class="pln"> </span><span class="lit">59</span><span class="pun">,</span><span class="pln"> </span><span class="lit">59</span><span class="pun">))</span><span class="pln">
                </span><span class="pun">{</span><span class="pln">
                  var rndseconds </span><span class="pun">=</span><span class="pln"> </span><span class="typ">Others</span><span class="pun">.</span><span class="typ">Random</span><span class="pun">(</span><span class="lit">30</span><span class="pun">,</span><span class="pln"> </span><span class="lit">120</span><span class="pun">);</span><span class="pln">
                    var rnd </span><span class="pun">=</span><span class="pln"> </span><span class="typ">Others</span><span class="pun">.</span><span class="typ">Random</span><span class="pun">(</span><span class="lit">1</span><span class="pun">,</span><span class="pln"> </span><span class="lit">2</span><span class="pun">);</span><span class="pln">
                    </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">rnd </span><span class="pun">==</span><span class="pln"> </span><span class="lit">1</span><span class="pun">)</span><span class="pln">
                    </span><span class="pun">{</span><span class="pln">
                        p</span><span class="pun">.</span><span class="typ">Settings</span><span class="pun">.</span><span class="typ">ScheduleTo</span><span class="pun">.</span><span class="typ">AddSeconds</span><span class="pun">(</span><span class="pln">rndseconds</span><span class="pun">);</span><span class="pln">
                        </span><span class="typ">Logging</span><span class="pun">.</span><span class="typ">Write</span><span class="pun">(</span><span class="pln">rndseconds </span><span class="pun">+</span><span class="pln"> </span><span class="str">" was added to "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> p</span><span class="pun">.</span><span class="typ">Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">" ScheduleTo"</span><span class="pun">);</span><span class="pln">
                    </span><span class="pun">}</span><span class="pln">
                    </span><span class="kwd">else</span><span class="pln">
                    </span><span class="pun">{</span><span class="pln">
                        p</span><span class="pun">.</span><span class="typ">Settings</span><span class="pun">.</span><span class="typ">ScheduleTo</span><span class="pun">.</span><span class="typ">AddSeconds</span><span class="pun">(-</span><span class="pln">rndseconds</span><span class="pun">);</span><span class="pln">
                        </span><span class="typ">Logging</span><span class="pun">.</span><span class="typ">Write</span><span class="pun">(</span><span class="pln">rndseconds </span><span class="pun">+</span><span class="pln"> </span><span class="str">" was taken away from "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> p</span><span class="pun">.</span><span class="typ">Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">" ScheduleTo"</span><span class="pun">);</span><span class="pln">
                    </span><span class="pun">}</span><span class="pln">
                </span><span class="pun">}</span><span class="pln">
            </span><span class="pun">}</span></pre>

<p>
	Or maybe you know how you can change these parameters without saving in the interface?
</p>
]]></description><guid isPermaLink="false">1480</guid><pubDate>Sun, 10 Jul 2022 12:35:48 +0000</pubDate></item><item><title>WRobot freezes on relog</title><link>https://wrobot.eu/bugtracker/wrobot-freezes-on-relog-r1479/</link><description><![CDATA[<p>
	I'm having a weird issue here. I have never had a problem with WRobot before until now.
</p>

<p>
	 
</p>

<p>
	Whenever I use relogger, my WRobot freezes and I get black screen on WoW
</p>

<p>
	Have no idea what to do. Running 1 session, Cata
</p>
]]></description><guid isPermaLink="false">1479</guid><pubDate>Thu, 07 Jul 2022 21:22:07 +0000</pubDate></item><item><title>Wow 7.3.5 (26124)</title><link>https://wrobot.eu/bugtracker/wow-735-26124-r1478/</link><description><![CDATA[<p>
	wow windows start to slow down if you start adding new profiles to the relogger or if you start changing an already configured profile
</p>
]]></description><guid isPermaLink="false">1478</guid><pubDate>Thu, 07 Jul 2022 10:55:20 +0000</pubDate></item><item><title>Tauri wow / Stormforge</title><link>https://wrobot.eu/bugtracker/tauri-wow-stormforge-r1476/</link><description><![CDATA[<p>
	On tauri and stormforge every fight class makes the game crash after 3-4 minutes
</p>
]]></description><guid isPermaLink="false">1476</guid><pubDate>Sun, 03 Jul 2022 12:27:19 +0000</pubDate></item><item><title>Turtle WoW grinder wrong&#xFF0C;walk around randomly, not following the recorded route</title><link>https://wrobot.eu/bugtracker/turtle-wow-grinder-wrong%EF%BC%8Cwalk-around-randomly-not-following-the-recorded-route-r1475/</link><description><![CDATA[<p>
	Turtle WoW grinder wrong，walk around randomly, not following the recorded route
</p>
]]></description><guid isPermaLink="false">1475</guid><pubDate>Sun, 26 Jun 2022 00:07:24 +0000</pubDate></item><item><title>problem with connecting to the server</title><link>https://wrobot.eu/bugtracker/problem-with-connecting-to-the-server-r1474/</link><description><![CDATA[<p>
	Hello. There was a problem with connecting to the server. I added wrobot to the exceptions of all protection systems, but the problem remains. The first time this error came out yesterday. How to fix it?
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2022_06/2022-06-24_11-13-05.png.3b5ddaebd1dd9695f52346394f016fd9.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17908" src="https://wrobot.eu/uploads/monthly_2022_06/2022-06-24_11-13-05.thumb.png.4e4fec7eb0dfa7e052c1316f5b6ab944.png" width="1000" class="ipsImage ipsImage_thumbnailed" alt="2022-06-24_11-13-05.png" loading="lazy" height="350"></a></p>]]></description><guid isPermaLink="false">1474</guid><pubDate>Fri, 24 Jun 2022 08:15:09 +0000</pubDate></item><item><title>Pathing Problem Alliance 6-8 Turtle WoW</title><link>https://wrobot.eu/bugtracker/pathing-problem-alliance-6-8-turtle-wow-r1473/</link><description><![CDATA[<p>
	Hey, problem only occurs when Grinding next to SW. Bot runs to SW, turns around goes back to grinding, runs back and seems to have path finding problems. 2 Chars same issue, only humans and this special location
</p>
<p>
<a class="ipsAttachLink" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=17894&amp;key=2b4071c38cb315ab428e13db3d583c34" data-fileExt='html' data-fileid='17894' data-filekey='2b4071c38cb315ab428e13db3d583c34'>15 Jun 2022 16H30.log.html</a></p>]]></description><guid isPermaLink="false">1473</guid><pubDate>Wed, 15 Jun 2022 14:51:34 +0000</pubDate></item><item><title>server seem to be down</title><link>https://wrobot.eu/bugtracker/server-seem-to-be-down-r1472/</link><description><![CDATA[<p>
	All methods have been tried. Is it the IP <span style="background-color:#ffffff;color:#333333;font-size:14px;text-align:left;">problem？I'm In China.</span>
</p>
]]></description><guid isPermaLink="false">1472</guid><pubDate>Sat, 16 Apr 2022 01:06:15 +0000</pubDate></item><item><title>Problem with elevators after update</title><link>https://wrobot.eu/bugtracker/problem-with-elevators-after-update-r1471/</link><description><![CDATA[<p>
	Hi! After the last update, there was a problem with absolutely all elevators, you have to manually control the bot at this moment.
</p>

<p>
	I attach screenshots.
</p>

<p>
	How to fix it?
</p>
]]></description><guid isPermaLink="false">1471</guid><pubDate>Fri, 01 Apr 2022 22:54:27 +0000</pubDate></item><item><title>TEST</title><link>https://wrobot.eu/bugtracker/test-r1470/</link><description><![CDATA[<p>
	i want to buy Wroot for private server but i want to know is there any test mode to i can test it whether i will get baan or not or something like it<br />
	not 15 min trial because it is really low time<br />
	around 1 or 2 day to i can test it completly ?
</p>
]]></description><guid isPermaLink="false">1470</guid><pubDate>Sun, 27 Mar 2022 16:21:57 +0000</pubDate></item><item><title>Change WoWHead Database</title><link>https://wrobot.eu/bugtracker/change-wowhead-database-r1469/</link><description><![CDATA[<p>
	Hello Droidz,<br>
	<br>
	It would be a good idea if you change the WoWHead Link in the Questeditor to the TBC one, then we can atleast have more information.<br>
	Right now it links to the Retail WoWHead which is wrong
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2022_03/wwwwwnt.JPG.2ae2acb6d9e72d3c017405ace2219800.JPG" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17834" src="https://wrobot.eu/uploads/monthly_2022_03/wwwwwnt.JPG.2ae2acb6d9e72d3c017405ace2219800.JPG" width="589" class="ipsImage ipsImage_thumbnailed" alt="wwwwwnt.JPG" loading="lazy" height="424.08"></a></p>]]></description><guid isPermaLink="false">1469</guid><pubDate>Thu, 10 Mar 2022 16:21:44 +0000</pubDate></item><item><title>The problem with the farm.</title><link>https://wrobot.eu/bugtracker/the-problem-with-the-farm-r1468/</link><description><![CDATA[<p>
	Good afternoon! There is a problem in the bot.
</p>

<p>
	For farm nodes, he gets off the fly mount in advance, the error "You are too far away" appears, and then he starts flying in a circle.
</p>

<p>
	How to fix it?
</p>

<p>
	 
</p>

<p>
	I attach videos and logs.<br />
	<br />
	Video: <a href="https://drive.google.com/file/d/1P3J9wYqbhNimoklPiRmo2TmnXEP8e8s7/view?usp=sharing" rel="external nofollow">https://drive.google.com/file/d/1P3J9wYqbhNimoklPiRmo2TmnXEP8e8s7/view?usp=sharing</a>
</p>

<p>
	<a class="ipsAttachLink" data-fileext="html" data-fileid="17833" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=17833&amp;key=20fd2fcdf541d340c513f5f1b68e8aa3" rel="">22 фев 2022 16H57.log.html</a>
</p>
]]></description><guid isPermaLink="false">1468</guid><pubDate>Tue, 22 Feb 2022 14:08:16 +0000</pubDate></item><item><title>A bug when searching for a mailbox.</title><link>https://wrobot.eu/bugtracker/a-bug-when-searching-for-a-mailbox-r1467/</link><description><![CDATA[<p>
	When the bot tries to find the box, it flies up to it. Then it flies straight up to infinity. I attach a screenshot with the log. How to fix it?
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2022_02/2022-02-21_01-00-39.png.3a9672d261da551e1924550e2b5093c3.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17831" src="https://wrobot.eu/uploads/monthly_2022_02/2022-02-21_01-00-39.thumb.png.3354f5b72de2e6fb87eae5983d1e9ba3.png" width="1000" class="ipsImage ipsImage_thumbnailed" alt="2022-02-21_01-00-39.png" loading="lazy" height="480"></a></p>]]></description><guid isPermaLink="false">1467</guid><pubDate>Sun, 20 Feb 2022 22:05:42 +0000</pubDate></item><item><title>[Cataclysm] Visit trainer only if there are spells to be trained</title><link>https://wrobot.eu/bugtracker/cataclysm-visit-trainer-only-if-there-are-spells-to-be-trained-r1464/</link><description><![CDATA[<p>
	Currently the bot may visit a class trainer even if there is no spell to be trained. It would be nice if in Cataclysm the bot would take into account the spell book information while deciding if it should visit the trainer or not:
</p>

<p>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="17817" width="227" alt="image.png.b0cc9001d231ca89ab39d9d591017990.png" src="https://wrobot.eu/uploads/monthly_2022_01/image.png.b0cc9001d231ca89ab39d9d591017990.png" loading="lazy" height="108.96">
</p>

<p>
	 
</p>

<p>
	I guess the training state could be cancelled via "robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState", but I don't see any method in the Spell/SpellInfo/SpellManger that could return if a method is 'learnable' - is this something that can be added to the API ? (and maybe throw an error on other expansions, since WoTLK and lower would need static lists, and MoP and higher don't have training anymore).
</p>
]]></description><guid isPermaLink="false">1464</guid><pubDate>Wed, 12 Jan 2022 14:56:42 +0000</pubDate></item><item><title>Regeneration state events</title><link>https://wrobot.eu/bugtracker/regeneration-state-events-r1462/</link><description><![CDATA[<p>
	The `Regeneration` state should have event handlers (`Start`/`Loop`/`End`) in order to allow plugins / fight classes to execute rotations. The use case is as following:
</p>

<p>
	 
</p>

<p>
	- The bot doesn't have food
</p>

<p>
	- The bot needs to regenerate HP but has mana
</p>

<p>
	 
</p>

<p>
	In theory the FC could spam heals / potions if they are available, and it would be quite elegant to implement this if special events are added. I know that `FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState` / `FiniteStateMachineEvents.OnRunState` could be used but I think that native events would be cleaner (it also saves everyone from reinventing the wheel and building boiler plate around the FSM system).
</p>
]]></description><guid isPermaLink="false">1462</guid><pubDate>Mon, 03 Jan 2022 13:16:30 +0000</pubDate></item><item><title>Cant login to legion</title><link>https://wrobot.eu/bugtracker/cant-login-to-legion-r1461/</link><description><![CDATA[<p>
	Hi there<br />
	<br />
	I cant logon to legion private server. It says the key is for another wrobot product ,and it tells me that the version is wrong.<br />
	<br />
	Its the server "uwow"
</p>
]]></description><guid isPermaLink="false">1461</guid><pubDate>Mon, 20 Dec 2021 12:46:29 +0000</pubDate></item><item><title>i know mount but cant use</title><link>https://wrobot.eu/bugtracker/i-know-mount-but-cant-use-r1460/</link><description><![CDATA[<p>
	i have problem on wow circle for grinder to use tundras mount say that i know it but can not use but some times i can use it but generaly cant
</p>
]]></description><guid isPermaLink="false">1460</guid><pubDate>Sun, 19 Dec 2021 15:52:37 +0000</pubDate></item><item><title>Unable to Login</title><link>https://wrobot.eu/bugtracker/unable-to-login-r1454/</link><description><![CDATA[<p>
	As of today (31.10.) I am unable to login to Wrobot and run it. It starts as usual and asks for the license key, but then hits me with this error message. 
</p>

<p>
	 
</p>

<p>
	I have already updated Wrobot itself, disabled my anti-Virus and tried checking my connection. However I seem unable to identify the issue.
</p>

<p>
	Yesterday evening it worked just fine as ususal.
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2021_10/1101754196_Screenshot(50).png.62cba64eae2203222dd25a26af95fbd5.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17751" src="https://wrobot.eu/uploads/monthly_2021_10/1101754196_Screenshot(50).png.62cba64eae2203222dd25a26af95fbd5.png" width="407" class="ipsImage ipsImage_thumbnailed" alt="Screenshot (50).png" loading="lazy" height="146.52"></a></p>]]></description><guid isPermaLink="false">1454</guid><pubDate>Sun, 31 Oct 2021 11:20:26 +0000</pubDate></item><item><title>Store: Purchase [Pay]</title><link>https://wrobot.eu/bugtracker/store-purchase-pay-r1451/</link><description><![CDATA[<p>
	Hello,<br>
	I have problem with pay. <br>
	<br>
	It reports this error:<br>
	There was an error processing the payment. Please try a different payment method or contact us for assistance.<br>
	<br>
	I've tried more credit cards, but this error always came up. <br>
	<br>
	Can I pay another way?<br>
	 
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2021_09/image0.png.dc031eec8652d5522fe475b2751b42d9.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17733" src="https://wrobot.eu/uploads/monthly_2021_09/image0.thumb.png.9df03c3715527867b12680ff39ae5905.png" width="1000" class="ipsImage ipsImage_thumbnailed" alt="image0.png" loading="lazy" height="590"></a></p>]]></description><guid isPermaLink="false">1451</guid><pubDate>Thu, 30 Sep 2021 15:04:15 +0000</pubDate></item><item><title>Vanilla WoW Error 132 after update.</title><link>https://wrobot.eu/bugtracker/vanilla-wow-error-132-after-update-r1446/</link><description><![CDATA[<p>
	Vanilla wow seems to be completely broken for me now following the update. I've clean installed wrobot and different vanilla WoW packs, upon reaching the login screen it will throw error 132 no matter what. Any advice? I see this has happened with similar updates in the past.
</p>

<p>
	 
</p>

<p>
	<img alt="image.png.e865c4be9f8cf9764f456f57a9443576.png" class="ipsImage ipsImage_thumbnailed" data-fileid="16157" width="370" src="https://wrobot.eu/uploads/monthly_2019_04/image.png.e865c4be9f8cf9764f456f57a9443576.png" loading="lazy" height="270.1">
</p>
]]></description><guid isPermaLink="false">1446</guid><pubDate>Wed, 01 Sep 2021 04:14:13 +0000</pubDate></item><item><title>Startup program error</title><link>https://wrobot.eu/bugtracker/startup-program-error-r1441/</link><description><![CDATA[<p>
	<font style="vertical-align:inherit;"><font style="vertical-align:inherit;">Start program error, prompt (hooking error) content (error occurred when loading, if the program is not normal, it is recommended to restart the computer or change the directx version of the game), I use the flagship operating system of window7, DirectX version is 11, please help me to solve Thanks for this question</font></font>
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2021_07/wrobot.jpg.4ab31a18d2a7ac2e316c8d78c92daa82.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17654" src="https://wrobot.eu/uploads/monthly_2021_07/wrobot.jpg.4ab31a18d2a7ac2e316c8d78c92daa82.jpg" width="499" class="ipsImage ipsImage_thumbnailed" alt="wrobot.jpg" loading="lazy" height="189.62"></a></p>]]></description><guid isPermaLink="false">1441</guid><pubDate>Fri, 30 Jul 2021 13:55:34 +0000</pubDate></item><item><title>Startup program error</title><link>https://wrobot.eu/bugtracker/startup-program-error-r1440/</link><description><![CDATA[<p>
	<font style="vertical-align:inherit;"><font style="vertical-align:inherit;">启动程序错误，提示（</font></font><span><font style="vertical-align:inherit;"><font style="vertical-align:inherit;">hooking error）内容（加载时出现错误，如果程序不正常，建议重启电脑或更换游戏的directx版本），我用的是window7旗舰操作系统，DirectX版本是11，请帮我解决这个问题，谢谢</font></font></span>
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2021_07/wrobot.jpg.9e91dc26ff0c01ca1445a53ebc5db45b.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17653" src="https://wrobot.eu/uploads/monthly_2021_07/wrobot.jpg.9e91dc26ff0c01ca1445a53ebc5db45b.jpg" width="499" class="ipsImage ipsImage_thumbnailed" alt="wrobot.jpg" loading="lazy" height="189.62"></a></p>]]></description><guid isPermaLink="false">1440</guid><pubDate>Fri, 30 Jul 2021 13:53:12 +0000</pubDate></item><item><title>tbc not runing</title><link>https://wrobot.eu/bugtracker/tbc-not-runing-r1434/</link><description><![CDATA[<p>
	please help me
</p>
]]></description><guid isPermaLink="false">1434</guid><pubDate>Sun, 27 Jun 2021 08:28:48 +0000</pubDate></item><item><title>TBC can not be run on wrobot ?</title><link>https://wrobot.eu/bugtracker/tbc-can-not-be-run-on-wrobot-r1433/</link><description><![CDATA[<p>
	when i tried to run the bot for tbc version i got this message  
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	help me plz
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2021_06/sss.PNG.df0494ac27fd9abe4d90258236bdca30.PNG" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="17628" src="https://wrobot.eu/uploads/monthly_2021_06/sss.thumb.PNG.7ee308a70c6de24325a7638612421db3.PNG" width="1000" class="ipsImage ipsImage_thumbnailed" alt="sss.PNG" loading="lazy" height="480"></a></p>]]></description><guid isPermaLink="false">1433</guid><pubDate>Sat, 26 Jun 2021 23:50:13 +0000</pubDate></item><item><title>fallo al inciar</title><link>https://wrobot.eu/bugtracker/fallo-al-inciar-r1432/</link><description><![CDATA[<p>
	hola al poner el laucher del wow me dice que no es compatible y me pone mensaje de version no compatible. Ayuda porfa<a class="ipsAttachLink" contenteditable="false" data-fileid="17619" href="https://wrobot.eu/applications/core/interface/file/attachment.php?id=17619" data-fileext="bmp" rel=""><font style="vertical-align:inherit;"><font style="vertical-align:inherit;">Nueva imagen de mapa de bits.bmp</font></font></a>
</p>]]></description><guid isPermaLink="false">1432</guid><pubDate>Wed, 23 Jun 2021 17:25:59 +0000</pubDate></item><item><title>Pause Bot if Player Nearby (Town)</title><link>https://wrobot.eu/bugtracker/pause-bot-if-player-nearby-town-r1430/</link><description><![CDATA[<p>
	Hey Droidz,<br /><br />
	It would be cool if the feature "Pause Bot if Player Nearby" not be true if the player is in Town or Town.TownInProgress.<br />
	Even if the trigger is "To Town" and player are there he pause the bot till they leave.<br /><br />
	Just for Selling it would be good if he dosent pause the bot. My actual search range is just 200.<br /><br />
	This all happens in the 3.3.5 Client. Log attached.
</p>]]></description><guid isPermaLink="false">1430</guid><pubDate>Wed, 09 Jun 2021 10:05:47 +0000</pubDate></item></channel></rss>
