<?xml version="1.0"?>
<rss version="2.0"><channel><title>Bug Tracker: Bug Tracker</title><link>https://wrobot.eu/bugtracker/page/9/?d=3</link><description>Bug Tracker: Bug Tracker</description><language>en</language><item><title>Move Action Turn Right / Left</title><link>https://wrobot.eu/bugtracker/move-action-turn-right-left-r655/</link><description><![CDATA[<p>
	A new movement function would be great, to turn the facing direction of a character. ( PressKey would be the best, since it could get used also for remote vehicle controlling )
</p>

<p>
	Currently i use lua for this task, but i would prefer a inbuild function.
</p>

<p>
	Lua:<br>
	 
</p>

<pre class="ipsCode prettyprint lang-lua prettyprinted">
<span>TurnRightStart</span><span class="pun">()</span><span class="pln">
</span><span>TurnRightStop</span><span class="pun">()</span><span class="pln">

</span><span>TurnLeftStart</span><span class="pun">()</span><span class="pln">
</span><span>TurnLefttStop</span><span class="pun">()</span></pre>

<p>
	 
</p>

<p>
	How the new function could look like,<br>
	 
</p>

<pre class="ipsCode prettyprint lang-c prettyprinted">
<span class="pln">wManager</span><span class="pun">.</span><span>Wow</span><span class="pun">.</span><span>Helpers</span><span class="pun">.</span><span>Move</span><span class="pun">.</span><span>TurnRight</span><span class="pun">(</span><span>Move</span><span class="pun">.</span><span>MoveAction</span><span class="pun">.</span><span>PressKey</span><span class="pun">,</span><span class="pln"> </span><span class="lit">300</span><span class="pun">)</span><span class="pln">

wManager</span><span class="pun">.</span><span>Wow</span><span class="pun">.</span><span>Helpers</span><span class="pun">.</span><span>Move</span><span class="pun">.</span><span>TurnLeft</span><span class="pun">(</span><span>Move</span><span class="pun">.</span><span>MoveAction</span><span class="pun">.</span><span>PressKey</span><span class="pun">,</span><span class="pln"> </span><span class="lit">300</span><span class="pun">)</span><span class="pln"> </span></pre>

<p>
	 
</p>]]></description><guid isPermaLink="false">655</guid><pubDate>Mon, 06 Mar 2017 11:28:42 +0000</pubDate></item><item><title>global offmesh connection</title><link>https://wrobot.eu/bugtracker/global-offmesh-connection-r654/</link><description><![CDATA[<p>
	new offmesh connection is great. but instead every profile creator make own offmesh connections, most of them should be available to everyone coz same pathfinding problems envountered by every profile creators.
</p>

<p>
	maybe wrobot must have global offmesh connection data concentrated in one file: xml/dll or something and could be community driven and opensource.
</p>

<p>
	just my two cents
</p>]]></description><guid isPermaLink="false">654</guid><pubDate>Sun, 05 Mar 2017 06:57:35 +0000</pubDate></item><item><title>[VANILLA] Custom settings not saved properly</title><link>https://wrobot.eu/bugtracker/vanilla-custom-settings-not-saved-properly-r653/</link><description><![CDATA[<p>
	Here is an example of class I use :
</p>

<pre class="ipsCode prettyprint lang-c prettyprinted">
<span class="kwd">public</span><span class="pln"> </span><span class="kwd">class</span><span class="pln"> </span><span>PriestSettings</span><span class="pln"> </span><span class="pun">:</span><span class="pln"> </span><span>Settings</span><span class="pln">
</span><span class="pun">{</span><span class="pln">
    </span><span class="pun">[</span><span>Setting</span><span class="pun">]</span><span class="pln">
    </span><span class="pun">[</span><span>DefaultValue</span><span class="pun">(</span><span class="kwd">true</span><span class="pun">)]</span><span class="pln">
    </span><span class="pun">[</span><span>Category</span><span class="pun">(</span><span class="str">"Movements"</span><span class="pun">)]</span><span class="pln">
    </span><span class="pun">[</span><span>DisplayName</span><span class="pun">(</span><span class="str">"Follow Mode"</span><span class="pun">)]</span><span class="pln">
    </span><span class="pun">[</span><span>Description</span><span class="pun">(</span><span class="str">"Follow the party Leader. Only working when in party"</span><span class="pun">)]</span><span class="pln">
    </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">bool</span><span class="pln"> </span><span>FollowMode</span><span class="pln"> </span><span class="pun">{</span><span class="pln"> get</span><span class="pun">;</span><span class="pln"> </span><span>set</span><span class="pun">;</span><span class="pln"> </span><span class="pun">}</span><span class="pln">


    </span><span class="pun">[</span><span>Setting</span><span class="pun">]</span><span class="pln">
    </span><span class="pun">[</span><span>DefaultValue</span><span class="pun">(</span><span class="lit">80</span><span class="pun">)]</span><span class="pln">
    </span><span class="pun">[</span><span>Category</span><span class="pun">(</span><span class="str">"Heal"</span><span class="pun">)]</span><span class="pln">
    </span><span class="pun">[</span><span>DisplayName</span><span class="pun">(</span><span class="str">"Lesser Heal Treshold"</span><span class="pun">)]</span><span class="pln">
    </span><span class="pun">[</span><span>Description</span><span class="pun">(</span><span class="str">"Limit of Life under which bot trigger LesserHeal.In percent"</span><span class="pun">)]</span><span class="pln">
    </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">double</span><span class="pln"> </span><span>LesserHealTreshold</span><span class="pln"> </span><span class="pun">{</span><span class="pln"> get</span><span class="pun">;</span><span class="pln"> </span><span>set</span><span class="pun">;</span><span class="pln"> </span><span class="pun">}</span><span class="pln">


    </span><span class="kwd">private</span><span class="pln"> </span><span>PriestSettings</span><span class="pun">()</span><span class="pln">
    </span><span class="pun">{</span><span class="pln">
        </span><span>ConfigWinForm</span><span class="pun">(</span><span class="kwd">new</span><span class="pln"> </span><span>System</span><span class="pun">.</span><span>Drawing</span><span class="pun">.</span><span>Point</span><span class="pun">(</span><span class="lit">400</span><span class="pun">,</span><span class="pln"> </span><span class="lit">400</span><span class="pun">),</span><span class="pln"> </span><span class="str">"Priest "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span>Translate</span><span class="pun">.</span><span>Get</span><span class="pun">(</span><span class="str">"Settings"</span><span class="pun">));</span><span class="pln">
    </span><span class="pun">}</span><span class="pln">

    </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">static</span><span class="pln"> </span><span>PriestSettings</span><span class="pln"> </span><span>CurrentSetting</span><span class="pln"> </span><span class="pun">{</span><span class="pln"> get</span><span class="pun">;</span><span class="pln"> </span><span>set</span><span class="pun">;</span><span class="pln"> </span><span class="pun">}</span><span class="pln">

    </span><span class="kwd">public</span><span class="pln"> </span><span class="kwd">bool</span><span class="pln"> </span><span>Save</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="kwd">return</span><span class="pln"> </span><span>Save</span><span class="pun">(</span><span>AdviserFilePathAndName</span><span class="pun">(</span><span class="str">"McRo-Priest"</span><span class="pun">,</span><span class="pln"> </span><span>ObjectManager</span><span class="pun">.</span><span>Me</span><span class="pun">.</span><span>Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">"."</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span>Usefuls</span><span class="pun">.</span><span>RealmName</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>Exception</span><span class="pln"> e</span><span class="pun">)</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span>Logging</span><span class="pun">.</span><span>WriteError</span><span class="pun">(</span><span class="str">"PriestSettings &gt; Save(): "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> e</span><span class="pun">);</span><span class="pln">
            </span><span class="kwd">return</span><span class="pln"> </span><span class="kwd">false</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">public</span><span class="pln"> </span><span class="kwd">static</span><span class="pln"> </span><span class="kwd">bool</span><span class="pln"> </span><span>Load</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="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span>File</span><span class="pun">.</span><span>Exists</span><span class="pun">(</span><span>AdviserFilePathAndName</span><span class="pun">(</span><span class="str">"McRo-Priest"</span><span class="pun">,</span><span class="pln"> </span><span>ObjectManager</span><span class="pun">.</span><span>Me</span><span class="pun">.</span><span>Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">"."</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span>Usefuls</span><span class="pun">.</span><span>RealmName</span><span class="pun">)))</span><span class="pln">
            </span><span class="pun">{</span><span class="pln">
                </span><span>CurrentSetting</span><span class="pln"> </span><span class="pun">=</span><span class="pln">
                    </span><span>Load</span><span class="pun">&lt;</span><span>PriestSettings</span><span class="pun">&gt;(</span><span>AdviserFilePathAndName</span><span class="pun">(</span><span class="str">"McRo-Priest"</span><span class="pun">,</span><span class="pln">
                                                                 </span><span>ObjectManager</span><span class="pun">.</span><span>Me</span><span class="pun">.</span><span>Name</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span class="str">"."</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> </span><span>Usefuls</span><span class="pun">.</span><span>RealmName</span><span class="pun">));</span><span class="pln">
                </span><span class="kwd">return</span><span class="pln"> </span><span class="kwd">true</span><span class="pun">;</span><span class="pln">
            </span><span class="pun">}</span><span class="pln">
            </span><span>CurrentSetting</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> </span><span class="kwd">new</span><span class="pln"> </span><span>PriestSettings</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>Exception</span><span class="pln"> e</span><span class="pun">)</span><span class="pln">
        </span><span class="pun">{</span><span class="pln">
            </span><span>Logging</span><span class="pun">.</span><span>WriteError</span><span class="pun">(</span><span class="str">"PriestSettings &gt; Load(): "</span><span class="pln"> </span><span class="pun">+</span><span class="pln"> e</span><span class="pun">);</span><span class="pln">
        </span><span class="pun">}</span><span class="pln">
        </span><span class="kwd">return</span><span class="pln"> </span><span class="kwd">false</span><span class="pun">;</span><span class="pln">
    </span><span class="pun">}</span><span class="pln">
</span><span class="pun">}</span></pre>

<p>
	When trying to change a value, in the resulting XML: 
</p>

<ul><li>
		the value changed is never saved. If it existed in the file it is totaly deleted
	</li>
	<li>
		the value non targeted by the change may be delete also (randomly)
	</li>
</ul><p>
	 
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">653</guid><pubDate>Sat, 04 Mar 2017 22:20:28 +0000</pubDate></item><item><title>[VANILLA] Hunter and Grinder Product</title><link>https://wrobot.eu/bugtracker/vanilla-hunter-and-grinder-product-r652/</link><description><![CDATA[<p>
	Hello
</p>

<p>
	On Grinder, whatever I do, when in combat my avatar just spam Attack.
</p>

<p>
	I suppose Quester will have the same problem.
</p>

<p>
	This might be linked to :
</p>
<iframe data-embedcontent="" frameborder="0" src="https://wrobot.eu/bugtracker/vanilla-hunter-attack-repetition-detection-r651/?do=embed" loading="lazy"></iframe>

<p>
	 
</p>]]></description><guid isPermaLink="false">652</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>[VANILLA] Hunter Attack repetition detection</title><link>https://wrobot.eu/bugtracker/vanilla-hunter-attack-repetition-detection-r651/</link><description><![CDATA[<p>
	Hello 
</p>

<p>
	SpellManager.IsRepeating(Attack.Ids)  on Hunter Attack spell (6603) always return false.
</p>

<p>
	SpellManager.IsRepeating(new List&lt;uint&gt;{6603}) Always return false too.
</p>]]></description><guid isPermaLink="false">651</guid><pubDate>Sat, 04 Mar 2017 20:36:16 +0000</pubDate></item><item><title><![CDATA[Quest steps not compiling if not <scripts> and no quests]]></title><link>https://wrobot.eu/bugtracker/quest-steps-not-compiling-if-not-and-no-quests-r650/</link><description><![CDATA[<p>
	if custom script is empty and no quests, and you use RunCode in steps &gt; profile not compiled and throw error
</p>

<p>
	example attached.
</p>

<p>
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">[F] 02:46:32 - [FightClass] Loading Fight class: D:\download\WRobot\FightClass\DemonHunter Havoc (camelot10).xml
[D] 02:46:33 - [Spell] Nemesis (Id found: 208614, Name found: Nemesis, NameInGame found: Заклятый враг, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Darkness (Id found: 228383, Name found: Darkness, NameInGame found: Мрак, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Blur (Id found: 212800, Name found: Blur, NameInGame found: Затуманивание, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Soul Carver (Id found: 216218, Name found: Soul Carver, NameInGame found: Разрубатель душ, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Chaos Nova (Id found: 222826, Name found: Chaos Nova, NameInGame found: Кольцо Хаоса, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Fel Rush (Id found: 195072, Name found: Fel Rush, NameInGame found: Рывок Скверны, Know = True, IsSpellUsable = True)
[D] 02:46:33 - [Spell] Vengeful Retreat (Id found: 232709, Name found: Vengeful Retreat, NameInGame found: Коварное отступление, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Fel Barrage (Id found: 222707, Name found: Fel Barrage, NameInGame found: Обстрел Скверны, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Fury of the Illidari (Id found: 207913, Name found: Fury of the Illidari, NameInGame found: Ярость иллидари, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Eye Beam (Id found: 220896, Name found: Eye Beam, NameInGame found: Пронзающий взгляд, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Metamorphosis (Id found: 187827, Name found: Metamorphosis, NameInGame found: Метаморфоза, Know = True, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Chaos Blades (Id found: 214796, Name found: Chaos Blades, NameInGame found: Клинки Хаоса, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Felblade (Id found: 236167, Name found: Felblade, NameInGame found: Клинок Скверны, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Blade Dance (Id found: 222948, Name found: Blade Dance, NameInGame found: Танец клинков, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Death Sweep (Id found: 210155, Name found: Death Sweep, NameInGame found: Смертоносный взмах, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Chaos Strike (Id found: 162794, Name found: Chaos Strike, NameInGame found: Удар Хаоса, Know = True, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Annihilation (Id found: 227518, Name found: Annihilation, NameInGame found: Аннигиляция, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Demon's Bite (Id found: 162243, Name found: Demon's Bite, NameInGame found: Укус демона, Know = True, IsSpellUsable = True)
[D] 02:46:33 - [Spell] Demon Blades (Id found: 232086, Name found: Demon Blades, NameInGame found: Демонические клинки, Know = False, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Throw Glaive (Id found: 204157, Name found: Throw Glaive, NameInGame found: Бросок боевого клинка, Know = True, IsSpellUsable = False)
[D] 02:46:33 - [Spell] Consume Magic (Id found: 229714, Name found: Consume Magic, NameInGame found: Поглощение магии, Know = False, IsSpellUsable = False)
02:46:33 - [Quester] Started
02:46:33 - TEST START
[D] 02:46:33 - [Quester] RunCode[1]: robotManager.Helpful.Logging.Write("CHECK #1");
[E] 02:46:34 - Compilator Error : warning CS1685: Заранее определенный тип "System.Runtime.CompilerServices.ExtensionAttribute" определен в нескольких сборках в глобальном псевдониме; используется определение из "c:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll" c:\Users\ssrazor\AppData\Local\Temp\soy0xtg0.0.cs(16,7) : error CS0246: Не удалось найти имя типа или пространства имен "kXcbyebizcmcroCVcuitHIyNafjyEqNQxtTwnLmp" (пропущена директива using или ссылка на сборку?) 

[D] 02:46:36 - [Quester] RunCode[2]: Logging.Write("CHECK #2");
02:46:36 - [Quester] Stopped
02:46:37 - Session statistics:
Elapsed time: 00h:00m:04s
XP/HR: 0 - 0 min
Kills: 0 (0/hr)
Deaths: 0 (0/hr)
Stucks: 0 (0/hr)
Farms: 0 (0/hr)
Loots: 0 (0/hr)
Money/HR: 0 G 00 S 00 C (0 G 00 S 00 C)</span></pre>

<p>
	 
</p>

<p><a class="ipsAttachLink" href="//wrobot.eu/applications/core/interface/file/attachment.php?id=11159">test.xml</a></p>]]></description><guid isPermaLink="false">650</guid><pubDate>Sat, 04 Mar 2017 19:47:57 +0000</pubDate></item><item><title>Target TAGGED mobs on Vanilla / 1.12.1</title><link>https://wrobot.eu/bugtracker/target-tagged-mobs-on-vanilla-1121-r649/</link><description><![CDATA[<p>
	The bot is targeting tagged mobs for other players and killing them.
</p>]]></description><guid isPermaLink="false">649</guid><pubDate>Fri, 03 Mar 2017 12:39:09 +0000</pubDate></item><item><title>Relog bug</title><link>https://wrobot.eu/bugtracker/relog-bug-r648/</link><description><![CDATA[<p>
	Sometimes when the game Server maintenance,loging,you can see the server  line selection screen, but click the server line,can't get into the game.<br>
	This situation  The relog function  of the BOT is  no use, after Server maintenance,stuck in the server selection screen. （ In this situation I already stuck so many times ）<br>
	Suggestion:   If The bot can't log into game , return to the account input screen, or the bot can auto select the server lines.
</p>]]></description><guid isPermaLink="false">648</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Farms/Loots counter</title><link>https://wrobot.eu/bugtracker/farmsloots-counter-r647/</link><description><![CDATA[<p>
	Hello. Every time bot trying to loot mob killed by another player (maybe by himself too), farms counter increased by 1. In this case loot counter should've been increased. Therefore user gets incorrect loot/farm statistic.
</p>
<p><a href="https://wrobot.eu/uploads/monthly_2017_03/bug.jpg.762c5df42605a5eb2ec5906f76d4dc7c.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="11136" src="https://wrobot.eu/uploads/monthly_2017_03/bug.thumb.jpg.9a67a526178ab99cf0d4a1a5dd5b7804.jpg" class="ipsImage ipsImage_thumbnailed" alt="bug.jpg" loading="lazy"></a></p>]]></description><guid isPermaLink="false">647</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>[VANILLA] Possibility to detect mob immunity ?</title><link>https://wrobot.eu/bugtracker/vanilla-possibility-to-detect-mob-immunity-r646/</link><description><![CDATA[<p>
	Hello again, 
</p>

<p>
	Is it possible to add a way to to detect which mod is immune to some spell effect ?
</p>

<p>
	For exemple, For quest "Mossy Tumors" you need tu kill several "Timberling Mire Beast". Those mobs are immune to nature damage.
</p>

<p>
	So with my hunter, when the bot want to trigger Serpent Sting, the debuff "Serpent Sting" isn't applyed. As I check the existence of the buff to move on to the next spell, it fails to find the buff and, as a result, it spams Serpent Sting shot on this mob.
</p>

<p>
	If an IsImmune condition might exist it would bypass this spell.
</p>

<p>
	I also know it could be usefull for other spell from other classes.
</p>

<p>
	Best Regards
</p>]]></description><guid isPermaLink="false">646</guid><pubDate>Mon, 27 Feb 2017 10:31:05 +0000</pubDate></item><item><title>[VANILLA] Hunter :Automatic unwanted Tame trigger</title><link>https://wrobot.eu/bugtracker/vanilla-hunter-automatic-unwanted-tame-trigger-r645/</link><description><![CDATA[<div style="table-layout:fixed;width:867px;line-height:1.6;color:rgb(39,42,52);font-size:14px;margin-bottom:20px;margin-top:0px;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	<p style="margin-top:0px;">
		Hello again
	</p>

	<p>
		I'm runing a dwarf hunter toon. I'm at level 14. I'm runing an updated version of my McRo Vanilla Hunter 1-10 Fight class (I'll post it shortly).
	</p>

	<p>
		Everything was working as expected until I hit Darkshore.
	</p>

	<p>
		Now, when I engage a beast, my toon start the combat like this :
	</p>

	<ol><li>
			<span style="color:rgb(39,174,96);">PetAttack(); (that's in my fightClass)</span>
		</li>
		<li>
			<span style="color:rgb(192,57,43);">Tame (Not in my fight class)</span>
		</li>
		<li>
			<span style="color:rgb(39,174,96);">keep on with the rest of my fight class</span>
		</li>
	</ol><p>
		This action doesn't appear in regular logs (don't know/didn't look how to put WRobot in debug logging)
	</p>

	<p>
		This action was not triggered on beasts in Teldrassil (not tested in other places, but might be linked to beasts level, not zone) 
	</p>

	<p>
		 
	</p>

	<p style="margin-bottom:0px;">
		I tried to add Tame to my Fight class, putting it inside parameters of the class so it is disabled by default, but it still triggers it.
	</p>
</div>

<p>
	 
</p>]]></description><guid isPermaLink="false">645</guid><pubDate>Mon, 27 Feb 2017 10:09:12 +0000</pubDate></item><item><title>[WOTLK] DK Runes</title><link>https://wrobot.eu/bugtracker/wotlk-dk-runes-r644/</link><description><![CDATA[<p>
	All those functions are returning 2 or 0 but not 1
</p>

<pre class="ipsCode prettyprint lang-c prettyprinted">
<span>ObjectManager</span><span class="pun">.</span><span>Me</span><span class="pun">.</span><span>GetRunesReady</span><span class="pun">(</span><span>RuneTypes</span><span class="pun">.</span><span>Frost</span><span class="pun">).</span><span>Count</span><span class="pun">;</span><span class="pln">
</span><span>ObjectManager</span><span class="pun">.</span><span>Me</span><span class="pun">.</span><span>GetRunes</span><span class="pun">().</span><span>Where</span><span class="pun">(</span><span class="pln">r </span><span class="pun">=&gt;</span><span class="pln"> r</span><span class="pun">.</span><span>RuneType</span><span class="pln"> </span><span class="pun">==</span><span class="pln"> runeType </span><span class="pun">&amp;&amp;</span><span class="pln"> r</span><span class="pun">.</span><span>IsReady</span><span class="pun">).</span><span>Count</span><span class="pun">();</span></pre>

<p>
	Returns 2 if both runes of the same type are ready, but if one of them is used it returns 0 and not 1.<br><br>
	Should:<br>
	Return 2 if both are ready and 1 if one of them is used, otherwise 0.
</p>]]></description><guid isPermaLink="false">644</guid><pubDate>Mon, 27 Feb 2017 10:06:44 +0000</pubDate></item><item><title>Hunter Serpent Sting and Buff Time Left Target Condition</title><link>https://wrobot.eu/bugtracker/hunter-serpent-sting-and-buff-time-left-target-condition-r643/</link><description><![CDATA[<p style="margin-top:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Hello !
</p>

<p style="margin-top:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	I'm developping a Fight Class using the Fight Class Creator.
</p>

<p style="margin-top:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	I wanted to make Serpent Sting to be triggered every 15/14secs.
</p>

<p style="margin-top:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	As this ability put a buff on the target I did wanted to use <u style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);"><strong style="font-weight:bold;">Buff Time Left Target</strong></u> so I did it this way :
</p>

<ul><li style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
		<span style="color:#27ae60;"><strong>Buffname :</strong>Serpent Sting</span> (obviously)
	</li>
	<li style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
		<span style="color:#c0392b;"><strong>Equal 0</strong> =&gt; should fire a new Serpent Sting after 15 sec roughly, but spams Serpent Sting shots instead.</span>
	</li>
	<li style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
		<span style="color:#c0392b;"><strong>Smaller or equal to : 1000</strong> =&gt; should fire a new Serpent Sting after 14 sec roughly, but spams Serpent Sting shots instead.</span>
	</li>
	<li style="margin-bottom:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
		<span style="color:#c0392b;"><strong>Bigger or equal to : 15000</strong> =&gt; should  spams Serpent Sting shots but doesn't fire it at all. </span>
	</li>
</ul><p style="margin-bottom:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Fight class only tested using WRotation
</p>]]></description><guid isPermaLink="false">643</guid><pubDate>Mon, 27 Feb 2017 10:04:48 +0000</pubDate></item><item><title>raid botbase</title><link>https://wrobot.eu/bugtracker/raid-botbase-r642/</link><description><![CDATA[<p>
	can there be a raiding botbase sso it can use lfr and other raids  
</p>]]></description><guid isPermaLink="false">642</guid><pubDate>Mon, 27 Feb 2017 02:08:43 +0000</pubDate></item><item><title>Player stops moving/gets stuck</title><link>https://wrobot.eu/bugtracker/player-stops-movinggets-stuck-r641/</link><description><![CDATA[<p>
	Both Grinder and Quester has this problem. My char gets stuck on something and then I have to turn off bot, accept quest and then turn on again. This happens a lot of times, and the bot is not smart enough to walk to the right place. Also when using grinder, my char stops and does not move untill I restart both program and game
</p>

<p>
	 
</p>

<p>
	On the picture I linked you can see a problem. The bot keep running into that wall and do not go around and up the stairs. 
</p>]]></description><guid isPermaLink="false">641</guid><pubDate>Thu, 23 Feb 2017 22:44:01 +0000</pubDate></item><item><title>Nearby player detection triggers when starting in town</title><link>https://wrobot.eu/bugtracker/nearby-player-detection-triggers-when-starting-in-town-r640/</link><description><![CDATA[<p>
	The bot is configured to pause when players are nearby, but is told to ignore the setting when going to town.
</p>

<p>
	When starting the bot e.g. in orgrimmar with these settings, the bot is initializing and starting for some seconds and then pauses (logs that players are nearby). I guess there is some kind of timer used for checking. And I guess that the bot does not know that he is currently in town. Would be nice if there was some kind of detection. In case this can not be done with the available map information, it can possibly be detected based on nearby npcs or something.
</p>]]></description><guid isPermaLink="false">640</guid><pubDate>Thu, 23 Feb 2017 18:17:39 +0000</pubDate></item><item><title>SpellManager.GetFlyMountName</title><link>https://wrobot.eu/bugtracker/spellmanagergetflymountname-r639/</link><description><![CDATA[<p>
	1. fresh Demon Hunter, Horde, Blood Elf, Male, Blonde.
</p>

<p>
	2. mounts: <a href="http://www.wowhead.com/spell=200175/felsaber" rel="external nofollow">http://www.wowhead.com/spell=200175/felsaber</a>
</p>

<p>
	<a href="http://www.wowhead.com/spell=32244/blue-wind-rider" rel="external nofollow">http://www.wowhead.com/spell=32244/blue-wind-rider</a>
</p>

<p>
	<a href="http://www.wowhead.com/spell=32297/swift-purple-wind-rider" rel="external nofollow">http://www.wowhead.com/spell=32297/swift-purple-wind-rider</a>
</p>

<p>
	3. code
</p>

<p>
	        var settings = wManager.wManagerSetting.CurrentSetting;<br>
	        settings.GroundMountName = SpellManager.GetGroudMountName();<br>
	        settings.FlyingMountName = SpellManager.GetFlyMountName();<br>
	        settings.AquaticMountName = SpellManager.GetAquaticMountName();<br>
	        Logging.Write("Mounts updated. ground: " + settings.GroundMountName + " flying: " + settings.FlyingMountName + " aquatic: " + settings.AquaticMountName);
</p>

<p>
	and flying mount choosed as <a href="http://www.wowhead.com/spell=32292/swift-purple-gryphon" rel="external nofollow">http://www.wowhead.com/spell=32292/swift-purple-gryphon</a>
</p>

<p>
	if felsaber not randomed - choosed gryphon too for ground mount.
</p>

<p>
	and vise versa with alliance DH NE Male got randomed mounts as Wind Riders.
</p>

<p>
	 
</p>

<p>
	Official/EU/RU client
</p>

<p>
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">[D] 02:05:45 - [Quester] New step (6): UpdateMounts&gt;Pulse
02:05:45 - [Questing] Mounts updated. ground: Саблезуб Скверны flying: Стремительный лиловый грифон aquatic: 
[D] 02:05:46 - [Quester] If[8] (ObjectManager.Me.IsAlliance) | Result: False
[D] 02:05:46 - [Quester] If[19] (ObjectManager.Me.IsHorde) | Result: True
[D] 02:05:46 - [Quester] New step (20): AudiencewiththeWarchiefH&gt;PickUp
02:05:46 - [Mount] Mounting fly mount Стремительный лиловый грифон
[N] 02:05:47 - [MovementManager] Long Move distance: 198,7587
02:05:48 - [Mount] Mounting fly mount Стремительный лиловый грифон
[N] 02:05:49 - [MovementManager] Long Move distance: 198,7587
02:05:49 - [Mount] Mounting fly mount Стремительный лиловый грифон
[N] 02:05:50 - [MovementManager] Long Move distance: 198,7587
02:05:51 - [Mount] Mounting fly mount Стремительный лиловый грифон
02:05:51 - [Mount] Mounting failed
[D] 02:05:51 - [StuckResolver] Flying mode.
[D] 02:05:59 - [StuckResolver] done.
[N] 02:05:59 - [MovementManager] Long Move distance: 196,7859
02:05:59 - [Mount] Mounting fly mount Стремительный лиловый грифон
02:06:00 - [Mount] Mounting failed
[D] 02:06:00 - [StuckResolver] Flying mode.
[D] 02:06:04 - [StuckResolver] done.
[N] 02:06:04 - [MovementManager] Long Move distance: 178,2636
02:06:04 - [Mount] Mounting fly mount Стремительный лиловый грифон
02:06:05 - [Mount] Mounting failed
[D] 02:06:05 - [StuckResolver] Flying mode.
[D] 02:06:08 - [StuckResolver] done.
02:06:08 - [Quester] Stopped</span></pre>

<p>
	 
</p>]]></description><guid isPermaLink="false">639</guid><pubDate>Wed, 22 Feb 2017 19:21:46 +0000</pubDate></item><item><title>Money/HR counter</title><link>https://wrobot.eu/bugtracker/moneyhr-counter-r638/</link><description><![CDATA[<p>
	Hey,
</p>

<p>
	I have a small suggestion, is it possible for bot not to count gold deposited to the guild bank as a loss for Money/HR counter, or at the very least restart the counter when bot deposits gold to the guild bank. Because atm, if profile contains guild bank deposits, Money/HR counter will be at 0 (negative is not displayed) after gold deposit, so it counts gold deposited to guild bank as lost.
</p>]]></description><guid isPermaLink="false">638</guid><pubDate>Wed, 22 Feb 2017 12:01:07 +0000</pubDate></item><item><title>Bot is stuck (1.21.1)</title><link>https://wrobot.eu/bugtracker/bot-is-stuck-1211-r637/</link><description><![CDATA[<p>
	I already renamed the whole meshes folder and restarted wrobot, no success. This is the log:
</p>

<p>
	 
</p>

<pre class="ipsCode">
23:09:40 - [Quester] Started
[N] 23:09:40 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_36_36.mesh.gz" downloaded.
[N] 23:09:40 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_36_36.mesh.gz
[N] 23:09:41 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_35_36.mesh.gz" downloaded.
[N] 23:09:41 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_35_36.mesh.gz
[N] 23:09:41 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_36_35.mesh.gz" downloaded.
[N] 23:09:41 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_36_35.mesh.gz
[N] 23:09:41 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_35_35.mesh.gz" downloaded.
[N] 23:09:41 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_35_35.mesh.gz
[N] 23:09:42 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_37_36.mesh.gz" downloaded.
[N] 23:09:42 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_37_36.mesh.gz
[N] 23:09:42 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_37_35.mesh.gz" downloaded.
[N] 23:09:42 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_37_35.mesh.gz
[N] 23:09:43 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_36_37.mesh.gz" downloaded.
[N] 23:09:43 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_36_37.mesh.gz
[N] 23:09:43 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_35_37.mesh.gz" downloaded.
[N] 23:09:43 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_35_37.mesh.gz
[N] 23:09:43 - [Path-Finding] Path Count: 5
[N] 23:09:43 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_37_37.mesh.gz" downloaded.
[N] 23:09:44 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_37_37.mesh.gz
[N] 23:09:44 - [Path-Finding] Path Count: 4
[N] 23:09:44 - [Path-Finding] Path Count: 2
[N] 23:09:44 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_36_38.mesh.gz" downloaded.
[N] 23:09:44 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_36_38.mesh.gz
[N] 23:09:44 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_35_38.mesh.gz" downloaded.
[N] 23:09:44 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_35_38.mesh.gz
[N] 23:09:44 - [Path-Finding] Path Count: 2
[N] 23:09:44 - [Path-Finding] Path Count: 2
[N] 23:09:45 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_34_37.mesh.gz" downloaded.
[N] 23:09:45 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_34_37.mesh.gz
[N] 23:09:45 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_34_36.mesh.gz" downloaded.
[N] 23:09:45 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_34_36.mesh.gz
[N] 23:09:45 - [Path-Finding] Path Count: 2
[N] 23:09:45 - [Path-Finding] Path Count: 4
[N] 23:09:45 - [Path-Finding] Path Count: 2
[N] 23:09:46 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_34_35.mesh.gz" downloaded.
[N] 23:09:46 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_34_35.mesh.gz
[N] 23:09:46 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_36_34.mesh.gz" downloaded.
[N] 23:09:46 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_36_34.mesh.gz
[N] 23:09:46 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_35_34.mesh.gz" downloaded.
[N] 23:09:46 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_35_34.mesh.gz
[N] 23:09:46 - [Path-Finding] Path Count: 8
23:09:46 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:09:47 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_37_34.mesh.gz" downloaded.
[N] 23:09:47 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_37_34.mesh.gz
[N] 23:09:47 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_38_36.mesh.gz" downloaded.
[N] 23:09:47 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_38_36.mesh.gz
[N] 23:09:48 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_38_35.mesh.gz" downloaded.
[N] 23:09:48 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_38_35.mesh.gz
[N] 23:09:48 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_38_34.mesh.gz" downloaded.
[N] 23:09:48 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_38_34.mesh.gz
[N] 23:09:48 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_37_33.mesh.gz" downloaded.
[N] 23:09:48 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_37_33.mesh.gz
[N] 23:09:49 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_36_33.mesh.gz" downloaded.
[N] 23:09:49 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_36_33.mesh.gz
[N] 23:09:49 - [Path-Finding] Path Count: 19
[N] 23:09:52 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_38_33.mesh.gz" downloaded.
[N] 23:09:52 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_38_33.mesh.gz
[N] 23:09:53 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_35_33.mesh.gz" downloaded.
[N] 23:09:53 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_35_33.mesh.gz
[N] 23:09:53 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_39_35.mesh.gz" downloaded.
[N] 23:09:53 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_39_35.mesh.gz
[N] 23:09:53 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_39_36.mesh.gz" downloaded.
[N] 23:09:53 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_39_36.mesh.gz
[N] 23:09:53 - [Path-Finding] Path Count: 11
23:09:56 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:09:56 - [Path-Finding] Path Count: 19
[N] 23:10:00 - [Path-Finding] Path Count: 12
23:10:03 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:10:03 - [Path-Finding] Path Count: 19
[N] 23:10:08 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_34_34.mesh.gz" downloaded.
[N] 23:10:09 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_34_34.mesh.gz
[N] 23:10:09 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_39_34.mesh.gz" downloaded.
[N] 23:10:09 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_39_34.mesh.gz
[N] 23:10:09 - [Path-Finding] Mesh file "Kalimdor\Kalimdor_38_37.mesh.gz" downloaded.
[N] 23:10:09 - [Path-Finding] Load finish: E:\wow\WRobot\Data\Meshes\\Kalimdor\Kalimdor_38_37.mesh.gz
[N] 23:10:09 - [Path-Finding] Path Count: 11
23:10:13 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:10:13 - [Path-Finding] Path Count: 19
[N] 23:10:16 - [Path-Finding] Path Count: 12
23:10:21 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:10:21 - [Path-Finding] Path Count: 19
[N] 23:10:25 - [Path-Finding] Path Count: 11
23:10:29 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:10:29 - [Path-Finding] Path Count: 19
[N] 23:10:33 - [Path-Finding] Path Count: 12
23:10:34 - [Fight] Player Attack Wandering Barrens Giraffe (lvl 18)
[N] 23:10:34 - [Path-Finding] Path Count: 22
[N] 23:10:37 - [Path-Finding] Path Count: 12
23:10:38 - [Pause] started</pre>

<p>
	 
</p>]]></description><guid isPermaLink="false">637</guid><pubDate>Tue, 21 Feb 2017 22:14:55 +0000</pubDate></item><item><title>Clear chat messages</title><link>https://wrobot.eu/bugtracker/clear-chat-messages-r636/</link><description><![CDATA[<p>
	It would be nice to be able to clear the chat messages window, just like the log.
</p>]]></description><guid isPermaLink="false">636</guid><pubDate>Tue, 21 Feb 2017 21:50:02 +0000</pubDate></item><item><title>Log is scrolling slowly when rendering dialog</title><link>https://wrobot.eu/bugtracker/log-is-scrolling-slowly-when-rendering-dialog-r635/</link><description><![CDATA[<p>
	When opening the log tab of the wrobot dialog for the first time the log lines are visibly scrolling down. Seems like all lines are rendered to the widget from the start of the log file. This is especially annoying when having the bot open for a longer time. Normally one is interested in the last lines.
</p>

<p>
	Maybe it would be better to render the lines from the end or first render the last N lines, show them to the user so that they fill the whole visible widget and then render the rest of the log in the background. Or something similar.
</p>]]></description><guid isPermaLink="false">635</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>No gather skill or skinning in mass battle areas</title><link>https://wrobot.eu/bugtracker/no-gather-skill-or-skinning-in-mass-battle-areas-r634/</link><description><![CDATA[<p>
	if one ore two proffession is not learned (empty) and
</p>

<p>
	If SkinNinja and/or SkinMobs = true and bot started in areas where alot if npc fight and die, bot can stuck for forever trying to skin/gather grey empty corpses. 
</p>

<p>
	Event if i put RunCode in first step of profile:
</p>

<p>
	wManager.wManagerSetting.CurrentSetting.SkinMobs = false;<br>
	wManager.wManagerSetting.CurrentSetting.HarvestHerbs = false;
</p>

<p>
	this doesnt help.
</p>]]></description><guid isPermaLink="false">634</guid><pubDate>Mon, 20 Feb 2017 20:47:50 +0000</pubDate></item><item><title>TBC:learn new skill,can't cast by bot</title><link>https://wrobot.eu/bugtracker/tbclearn-new-skillcant-cast-by-bot-r633/</link><description><![CDATA[<p>
	My game vision is TBC,now i found tow bugs:
</p>

<p>
	First:  When i learn new skills which is in fight class, bot cannot cast the skills which learnd right now. after close the bot ,all it's ok.
</p>

<p>
	Second:  when i creat fight class ,after use  development tools(click spell books), my skills appear. then learn new skills,click spell books again, the number of skills no changes.
</p>]]></description><guid isPermaLink="false">633</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Grinder profile creator</title><link>https://wrobot.eu/bugtracker/grinder-profile-creator-r632/</link><description><![CDATA[<p>
	In the profile setting you have that level range thing from x to x. ( character level ) and ( attack level ) There is small bug and that set of controls are taking values bigger than possible in game and wider than 2-3 numbers ( no check? ) you can write bullshit like 10-222222 and it will be saved into profile file and of course the profile will not work with that setting. And you cannot delete it only manual fix inside the xml is repairg it. Suggestion make that control 3 slot with limit 110 or pushup - pushdown number control.
</p>]]></description><guid isPermaLink="false">632</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Probl&#xE8;me de /abs</title><link>https://wrobot.eu/bugtracker/probl%C3%A8me-de-abs-r631/</link><description><![CDATA[<p>
	Bonjour les copains, j'ai un petit soucis tout marche nikel mais jai un petit bug concernant la mise en absence du personnage, on dirait que le programme narrive pas a me /abs pour enlever le status absent, je cite : Vous etes maintenant absent.
</p>

<p>
	                                                    Vous n'etes plus absent.
</p>

<p>
	                                                    Vous etes maintenant absent.
</p>

<p>
	Je vois ca continuellement desfois ca se repete une vingtaine de fois...... et je comprend pas pourquoi, merci de votre aide une bonne journée a tous ;)
</p>]]></description><guid isPermaLink="false">631</guid><pubDate>Thu, 16 Feb 2017 07:10:33 +0000</pubDate></item><item><title>Your Cart You have no items in your cart right now</title><link>https://wrobot.eu/bugtracker/your-cart-you-have-no-items-in-your-cart-right-now-r630/</link><description><![CDATA[<p>
	hello, i cant buy anythings when i press chekout i always see this error "Your Cart You have no items in your cart right now "
</p>

<div style="padding:15px;text-align:center;color:rgb(82,82,82);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	<h1 style="font-size:44px;margin:0px;text-align:center;line-height:52px;font-weight:300;">
		Your Cart
	</h1>
</div>

<div style="color:rgb(82,82,82);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	<div>
		<div style="border-width:0px;border-style:solid;border-color:rgb(242,242,242);padding:15px;text-align:center;font-size:16px;color:rgb(156,156,156);line-height:20px;background-color:rgb(255,255,255);">
			You have no items in your cart right now<span> </span>
		</div>
	</div>
</div>]]></description><guid isPermaLink="false">630</guid><pubDate>Wed, 15 Feb 2017 15:13:07 +0000</pubDate></item><item><title>Starting bot</title><link>https://wrobot.eu/bugtracker/starting-bot-r629/</link><description><![CDATA[<p>
	errors out and won't start does it on two toons on different spells
</p>
<p><a class="ipsAttachLink" href="//wrobot.eu/applications/core/interface/file/attachment.php?id=11062">14 Feb 2017 00H12.log.html</a></p>]]></description><guid isPermaLink="false">629</guid><pubDate>Tue, 14 Feb 2017 06:22:38 +0000</pubDate></item><item><title>Turn in quest</title><link>https://wrobot.eu/bugtracker/turn-in-quest-r628/</link><description><![CDATA[<p>
	When the bot is about to turn in a quest where the quest giver have multiple repeatable quests, he seems to be stuck trying to turn in one of the repeatable quests instead of the actual quest you want to turn in.<br>
	He will just be standing there in a endless loop trying to turn in the repeatable.<br>
	How to test this:<br>
	1. Get the quest "Betrayal from Within" from Mangletooth in Camp Taurajo, in Barrens.<br>
	2. Go do the quest and finish it.<br>
	3. Let the bot try to turn it in.<br>
	4. He will try to turn in one of the repeatable quests instead, in a endless loop.<br><br><br>
	One other thing:<br>
	When you want to pick up <u>ONE</u> of many quests from a questgiver, the bot sometimes picks up some of the other quests before he actual picks up the quests you specified in your quester profile...
</p>]]></description><guid isPermaLink="false">628</guid><pubDate>Mon, 13 Feb 2017 21:00:19 +0000</pubDate></item><item><title>Coroutine Support</title><link>https://wrobot.eu/bugtracker/coroutine-support-r627/</link><description><![CDATA[<p>
	Hi Guys,
</p>

<p>
	will you maybe add a coroutine function like Honorbuddy got it? This would really help to improve Fightclasses!
</p>

<p>
	And one Question - can I use my own C# Code for Fightclass Settings to build a better Config GUI?
</p>]]></description><guid isPermaLink="false">627</guid><pubDate>Mon, 13 Feb 2017 20:01:12 +0000</pubDate></item><item><title>Incorrect Game Version</title><link>https://wrobot.eu/bugtracker/incorrect-game-version-r626/</link><description><![CDATA[<p>
	When I start the WRobot,<br><br>
	It shows the Popup title "stop - Please select game Process and connect to the game"<br><br>
	and it asks me to launch wow in 32 bit. After clicking Yes, it always show Game Version incorrect.<br><br>
	MY WOW and Wrobot is already up to date (7.15-23420)<br><br>
	Please help.
</p>

<p>
	 
</p>

<p>
	<img alt="0u6qTpA.png" class="ipsImage" src="https://i.imgur.com/0u6qTpA.png" loading="lazy"></p>]]></description><guid isPermaLink="false">626</guid><pubDate>Mon, 13 Feb 2017 16:48:34 +0000</pubDate></item><item><title>Suggestion</title><link>https://wrobot.eu/bugtracker/suggestion-r625/</link><description><![CDATA[<p>
	This may already be implemented, but if it is, I haven't been able to find it.
</p>

<p>
	I've noticed that occasionally when a mob bugs out and consistently evades my bot, it will sit there and continue to attempt to attack the mob for quite a while. I'd like to suggest the option to blacklist a specific mob automatically after a certain number of consecutive evades. If this is already an option, I'd appreciate being pointed towards it. Thanks!
</p>]]></description><guid isPermaLink="false">625</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Conjure Food/Conjure Water</title><link>https://wrobot.eu/bugtracker/conjure-foodconjure-water-r624/</link><description><![CDATA[<p>
	Hi, I have conjure food and water set to be cast whenever the "item count" of the water and/or food reaches zero. I'm using the correct item ID and checked both with a bag property dump and on a website. The problem is, the bot repeatedly casts conjure food and conjure water even though I've got a significant amount of both in my inventory. Based on the rule, it should only ever cast when there is zero in my inventory. The specific level of the spell is conjure food rank 3 andthe conjured rye and conjured purified water. Any help/suggestions to correct the issue would be appreciated as it tends to fill my inventory up unnecessarily.
</p>]]></description><guid isPermaLink="false">624</guid><pubDate>Tue, 07 Feb 2017 17:12:59 +0000</pubDate></item><item><title>druid bear form</title><link>https://wrobot.eu/bugtracker/druid-bear-form-r623/</link><description><![CDATA[<p>
	Salut !
</p>

<p>
	version vanilla de wrobot.
</p>

<p>
	depuis le lvl 30 (forme voyage apprise) la forme d'ours (bear form) ne veut plus s'activer.
</p>]]></description><guid isPermaLink="false">623</guid><pubDate>Sun, 05 Feb 2017 13:27:55 +0000</pubDate></item><item><title>pathing again</title><link>https://wrobot.eu/bugtracker/pathing-again-r622/</link><description><![CDATA[<p>
	pathing between Searing Gorge and Burning Steppes isnt working
</p>

<p>
	[MovementManager] Current pos: -7419,625 ; -1113,486 ; 278,076 ; "None" - Target pos: -7498,661 ; -1117,806 ; 265,6114 ; "None" Continent: Azeroth Tile: 34.08779_45.9118
</p>]]></description><guid isPermaLink="false">622</guid><pubDate>Sat, 04 Feb 2017 02:47:42 +0000</pubDate></item><item><title>Macro Function</title><link>https://wrobot.eu/bugtracker/macro-function-r621/</link><description><![CDATA[<p>
	What do you think about pimpin the macro functions?<br>
	We could do awesome stuff, if you could build in any kind of trigger for macros. I'm thinking of something like "OnAfterCastspell", "OnMount", "OnDismount" etc.
</p>

<p>
	One thing I have in mind is like after a "OnAfterCastspell" Trigger we could run a macro for targeting and attacking a mob (if it appears). Would save a huge amount of plugins i guess.
</p>]]></description><guid isPermaLink="false">621</guid><pubDate>Fri, 03 Feb 2017 21:45:29 +0000</pubDate></item><item><title>Relogger is not using additional wrobot args.</title><link>https://wrobot.eu/bugtracker/relogger-is-not-using-additional-wrobot-args-r620/</link><description><![CDATA[<div style="width:1331px;margin-bottom:20px;">
	<p>
		<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="">@Droidz</a> I pmed you this issue, but you didnt reply, could you plz check it out, its importatnt for me.
	</p>

	<p>
		I use remote desktop to connect to my botting pc.
	</p>

	<p>
		1. If i start Wrobot using <strong>Wrobot.exe</strong>, it will run ok, but <strong>it will crash</strong> if i connect to my botting pc using remote desktop.
	</p>

	<p>
		2. If i start Wrobot using <strong>WRobot.exe -nodx -nolockframe</strong>, it will run ok, and <strong>it wont crash</strong> when i connect to my botting pc using remote desktop. <strong>So it is all ok this way.</strong>
	</p>

	<p>
		But there is an issue if i use relogger.
	</p>

	<p>
		In relogger i cant use wrobot.exe, i have to use this other exe file, i do put -nodx -nolockframe, in general settings, additional Wrobot args, like that:
	</p>

	<p>
		<img alt="lQXlOVF.png" class="ipsImage" src="http://i.imgur.com/lQXlOVF.png" loading="lazy"></p>

	<p>
		It will run ok, but it will crash when i connect to this pc using remote desktop. It is like relogger doesn't use additional wrobot args that i putted in.
	</p>
</div>]]></description><guid isPermaLink="false">620</guid><pubDate>Fri, 03 Feb 2017 07:35:05 +0000</pubDate></item><item><title>pathing</title><link>https://wrobot.eu/bugtracker/pathing-r619/</link><description><![CDATA[<p>
	hello,
</p>

<p>
	im working on a 1-60 profile and noticed that pathing between Loch Modan and Wetlands isnt working. bot is trying to climb the mountain (which obviously doesnt work) and gets stuck doing that.
</p>]]></description><guid isPermaLink="false">619</guid><pubDate>Mon, 30 Jan 2017 15:16:14 +0000</pubDate></item><item><title>Dismounting Ghost Wolf, 1.12.1</title><link>https://wrobot.eu/bugtracker/dismounting-ghost-wolf-1121-r618/</link><description><![CDATA[<p>
	Doesnt dismount Ghost Wolf within shaman, so it keeps fighting as wolf.
</p>]]></description><guid isPermaLink="false">618</guid><pubDate>Sun, 29 Jan 2017 18:57:38 +0000</pubDate></item><item><title>Archaeology Pandaria</title><link>https://wrobot.eu/bugtracker/archaeology-pandaria-r617/</link><description><![CDATA[<p>
	Once activated the bot will want to fly north to the Isle of Giants every time even when i start the bot on a selected dig site. The dig sites currently on my map are w/ Cords; Shan'ze Dao 32/13, Sra'Thik 42/54, Emperor's Approach 48/56, North Fruited Fields 35/38.
</p>]]></description><guid isPermaLink="false">617</guid><pubDate>Sun, 29 Jan 2017 02:49:54 +0000</pubDate></item><item><title>Bot isn't vendoring correctly (Vanilla 1.12.1)</title><link>https://wrobot.eu/bugtracker/bot-isnt-vendoring-correctly-vanilla-1121-r616/</link><description><![CDATA[<p>
	I'm having an issue where the bot has issues selling when it goes to vendor, it will open the vendor, not sell anything, run away, come back, try again, etc etc. If I sell 1 item manually while the buy/sell menu is open it continues selling everything, but also for some reason, doesn't sell anything in my last bag. This vendor also has a dialog, would the dialog cause an issue? It successfully makes it into the buy/sell menu, just doesn't sell. The reason this particular vendor is needed is because it sells both food and water, unlike the others. This particular character does not need water, however my others will.
</p>

<p>
	Here is a video of it in action: 
</p>

<div class="ipsEmbeddedVideo">
	<div>
		<iframe allowfullscreen="true" frameborder="0" height="270" src="https://www.youtube.com/embed/rXbebHY0chs?feature=oembed" width="480" loading="lazy"></iframe>
	</div>
</div>

<pre class="ipsCode" style="font-family:monospace, monospace;font-size:14px;background:rgb(250,250,250);clear:both;padding:15px;border-width:0px 0px 0px 4px;border-left-style:solid;border-left-color:rgb(224,224,224);color:rgb(39,42,52);font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;word-spacing:0px;">
15:28:20 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:28:20 - [Path-Finding] Path Count: 13
15:28:21 - [MoveDuringCombat] Loading.
15:28:21 - [Loot Stat] Loadded.
15:28:21 - [MoveDuringCombat] Loadded.
15:28:22 - [Quester] Started
15:28:22 - [StuckAlert] Started.
[N] 15:29:03 - [Path-Finding] Path Count: 4
[N] 15:29:04 - [Path-Finding] Path Count: 4
15:29:05 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:05 - [ToTown] Sell items (try 1)
15:29:08 - [ToTown] Buy drink and food
15:29:09 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:09 - [Path-Finding] Path Count: 3
15:29:09 - [Loot Stat] Looted items: Freshly Baked Bread x 5.
15:29:09 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:09 - [ToTown] Sell items (try 1)
15:29:12 - [ToTown] Buy drink and food
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 4
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 5
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 3
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 5
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 3
[N] 15:29:13 - [Path-Finding] Path Count: 4
[N] 15:29:13 - [Path-Finding] Path Count: 3
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 15
[N] 15:29:13 - [Path-Finding] Path Count: 3
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 3
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 2
[N] 15:29:13 - [Path-Finding] Path Count: 4
[N] 15:29:13 - [Path-Finding] Path Count: 12
[N] 15:29:13 - [Path-Finding] Path Count: 6
[F] 15:29:13 - [Spell] Cast Charge (Charge)
15:29:14 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:14 - [Path-Finding] Path Count: 4
[N] 15:29:14 - [Path-Finding] Path Count: 4
[N] 15:29:15 - [Path-Finding] Path Count: 4
15:29:16 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:16 - [ToTown] Sell items (try 1)
15:29:19 - [ToTown] Buy drink and food
15:29:19 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:19 - [Path-Finding] Path Count: 3
15:29:20 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:20 - [ToTown] Sell items (try 1)
15:29:23 - [ToTown] Buy drink and food
[N] 15:29:23 - [Path-Finding] Path Count: 6
15:29:25 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:25 - [Path-Finding] Path Count: 4
[N] 15:29:25 - [Path-Finding] Path Count: 4
[N] 15:29:26 - [Path-Finding] Path Count: 4
15:29:27 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:27 - [ToTown] Sell items (try 1)
15:29:30 - [ToTown] Buy drink and food
15:29:30 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:30 - [Path-Finding] Path Count: 3
15:29:31 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:31 - [ToTown] Sell items (try 1)
15:29:34 - [ToTown] Buy drink and food
[N] 15:29:34 - [Path-Finding] Path Count: 6
15:29:35 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:35 - [Path-Finding] Path Count: 4
[N] 15:29:36 - [Path-Finding] Path Count: 4
[N] 15:29:36 - [Path-Finding] Path Count: 4
15:29:38 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:38 - [ToTown] Sell items (try 1)
15:29:41 - [ToTown] Sell items (try 2)
15:29:47 - [ToTown] Buy drink and food
15:29:47 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:47 - [Path-Finding] Path Count: 3
15:29:48 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:48 - [ToTown] Sell items (try 1)
15:29:51 - [ToTown] Buy drink and food
[N] 15:29:51 - [Path-Finding] Path Count: 6
15:29:52 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:29:52 - [Path-Finding] Path Count: 4
[N] 15:29:53 - [Path-Finding] Path Count: 4
[N] 15:29:53 - [Path-Finding] Path Count: 4
15:29:55 - [ToTown] Vendor found Innkeeper Hearthstove
15:29:55 - [ToTown] Sell items (try 1)
15:29:58 - [ToTown] Sell items (try 2)
15:30:03 - [ToTown] Buy drink and food
15:30:03 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
15:30:03 - [ToTown] Vendor found Innkeeper Hearthstove
15:30:03 - [ToTown] Sell items (try 1)
15:30:06 - [ToTown] Sell items (try 2)
15:30:11 - [ToTown] Buy drink and food
15:30:11 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
15:30:12 - [ToTown] Vendor found Innkeeper Hearthstove
15:30:12 - [ToTown] Sell items (try 1)
15:30:15 - [ToTown] Buy drink and food
[N] 15:30:15 - [Path-Finding] Path Count: 6
15:30:16 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:30:16 - [Path-Finding] Path Count: 4
[N] 15:30:17 - [Path-Finding] Path Count: 4
[N] 15:30:17 - [Path-Finding] Path Count: 4
15:30:19 - [ToTown] Vendor found Innkeeper Hearthstove
15:30:19 - [ToTown] Sell items (try 1)
15:30:22 - [ToTown] Buy drink and food
15:30:22 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:30:22 - [Path-Finding] Path Count: 3
15:30:23 - [ToTown] Vendor found Innkeeper Hearthstove
15:30:23 - [ToTown] Sell items (try 1)
15:30:26 - [ToTown] Buy drink and food
[N] 15:30:26 - [Path-Finding] Path Count: 6
15:30:27 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
[N] 15:30:27 - [Path-Finding] Path Count: 4
[N] 15:30:28 - [Path-Finding] Path Count: 4
[N] 15:30:28 - [Path-Finding] Path Count: 4
15:30:30 - [ToTown] Vendor found Innkeeper Hearthstove
15:30:30 - [ToTown] Sell items (try 1)
15:30:33 - [ToTown] Buy drink and food
15:30:33 - [ToTown] Go to vendor Innkeeper Hearthstove (Vendor)
15:30:34 - [ToTown] Vendor found Innkeeper Hearthstove
15:30:34 - [ToTown] Sell items (try 1)
15:30:36 - [Loot Stat] Items looted during session: 
Freshly Baked Bread x 5 (133/hr)
.
15:30:36 - [Loot Stat] Disposed.
15:30:36 - [MoveDuringCombat] Dispose.
15:30:36 - [StuckAlert] Stoped.</pre>

<p>
	<span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">Any idea<span> </span></span><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="" style="color:rgb(255,255,255);text-decoration:underline;background:rgb(48,132,196);padding:0px 5px;font-size:12.6px;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;">@Droidz</a><span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">?</span>
</p>]]></description><guid isPermaLink="false">616</guid><pubDate>Sat, 28 Jan 2017 23:52:57 +0000</pubDate></item><item><title>Key for trial</title><link>https://wrobot.eu/bugtracker/key-for-trial-r615/</link><description><![CDATA[<p>
	Hello. Can you give me the key for 15min trial version? I want to see the possibility of the bot before buying. Thanks.
</p>]]></description><guid isPermaLink="false">615</guid><pubDate>Sat, 28 Jan 2017 11:35:34 +0000</pubDate></item><item><title>I cant find the game</title><link>https://wrobot.eu/bugtracker/i-cant-find-the-game-r614/</link><description><![CDATA[<p>
	I cant find the game, i use wow 32 bits.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://wrobot.eu/uploads/monthly_2017_01/Sem_t%C3%ADtulo.png.e54ee126b4cd39580f663be57ccb6afe.png" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="10941" src="https://wrobot.eu/uploads/monthly_2017_01/588c3f32db75a_Sem_ttulo.thumb.png.a10ee0797786800a322bd15c0a93b673.png" alt="Sem_título.png" loading="lazy"></a>
</p>]]></description><guid isPermaLink="false">614</guid><pubDate>Sat, 28 Jan 2017 06:51:34 +0000</pubDate></item><item><title>More than one window of vanilla</title><link>https://wrobot.eu/bugtracker/more-than-one-window-of-vanilla-r612/</link><description><![CDATA[<p>
	Okay, so the bot keeps closing on one of my windows when I try to run 2 copies right now. Just wanna know if could fix that trying to make sure have at least 3 diff classes as go through making vanilla questing files, that and to see if missed something bottle necking.
</p>]]></description><guid isPermaLink="false">612</guid><pubDate>Thu, 26 Jan 2017 16:26:19 +0000</pubDate></item><item><title>Bot says incorrect game version</title><link>https://wrobot.eu/bugtracker/bot-says-incorrect-game-version-r611/</link><description><![CDATA[<p>
	was working fine earlier not it wont start up.
</p>]]></description><guid isPermaLink="false">611</guid><pubDate>Thu, 26 Jan 2017 02:36:54 +0000</pubDate></item><item><title>Update Status - Patch 7.1.5 Build 23420 | Bot doesnt start</title><link>https://wrobot.eu/bugtracker/update-status-patch-715-build-23420-bot-doesnt-start-r610/</link><description><![CDATA[<p>
	Hi there,
</p>

<p>
	after the update I cant start the bot:
</p>

<p>
	"[E] 23:22:32 - Pet Battle &gt; Main &gt; Start(): System.MissingMethodException: Methode nicht gefunden: "Void wManager.Wow.Helpers.NpcDB.AddNpcRange(System.Collections.Generic.List`1&lt;wManager.Wow.Class.Npc&gt;, Boolean)".<br>
	   bei Pet_Battle.Bot.Toikupo.FaeditaquesioCiehaikim()<br>
	   bei Main.Start()"
</p>

<p>
	Please have a look.
</p>

<p>
	Started with: "WRobot No Lock Frame"
</p>

<p>
	ThX
</p>]]></description><guid isPermaLink="false">610</guid><pubDate>Wed, 25 Jan 2017 22:25:07 +0000</pubDate></item><item><title>Lazy Peons / ID: 5441, bot doesnt recognice the quest is done.</title><link>https://wrobot.eu/bugtracker/lazy-peons-id-5441-bot-doesnt-recognice-the-quest-is-done-r609/</link><description><![CDATA[<p>
	Lazy Peons / ID: 5441, bot doesnt recognice the quest is done. So it ends up on endless loop bashing the peons.
</p>]]></description><guid isPermaLink="false">609</guid><pubDate>Wed, 25 Jan 2017 13:09:48 +0000</pubDate></item><item><title>Doesnt clear last friendly target, wrobot 1.12.1</title><link>https://wrobot.eu/bugtracker/doesnt-clear-last-friendly-target-wrobot-1121-r608/</link><description><![CDATA[<p>
	Doesnt clear last friendly target, wrobot 1.12.1, so ends up doing bottish walk trying to kill the friendly target and at the same time walking away.
</p>]]></description><guid isPermaLink="false">608</guid><pubDate>Tue, 24 Jan 2017 19:39:33 +0000</pubDate></item><item><title>Tries to cast spells to friendly target after the update, wrobot 1.12.1</title><link>https://wrobot.eu/bugtracker/tries-to-cast-spells-to-friendly-target-after-the-update-wrobot-1121-r607/</link><description><![CDATA[<p>
	Tries to cast spells to friendly target after the update, wrobot 1.12.1, ends up walking really bottish 1 yard forward, cast 1 yard away cast.
</p>]]></description><guid isPermaLink="false">607</guid><pubDate>Tue, 24 Jan 2017 19:35:58 +0000</pubDate></item><item><title>rogue 1.12.1</title><link>https://wrobot.eu/bugtracker/rogue-1121-r606/</link><description><![CDATA[<p>
	It wont seem to stealth and have it setup like would be in wotlk or that dunno what might be the issue. Should be able to call it buff like before and set it like pally auras.
</p>]]></description><guid isPermaLink="false">606</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Targeting tagged mobs / 1.12.1</title><link>https://wrobot.eu/bugtracker/targeting-tagged-mobs-1121-r605/</link><description><![CDATA[<p>
	Keeps targetting tagged monsters untill they are dead and follows their path untill they are dead.    wrobot for 1.12.1
</p>]]></description><guid isPermaLink="false">605</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Flightmaster not used properly / 1.12.1</title><link>https://wrobot.eu/bugtracker/flightmaster-not-used-properly-1121-r604/</link><description><![CDATA[<p>
	Wrobot for 1.12.1
</p>

<p>
	 
</p>

<p>
	It seems like wrobot doesnt recognice the button at flightmaster in order to start the taxi, pressin the button manually it succesfully starts flying.
</p>]]></description><guid isPermaLink="false">604</guid><pubDate>Tue, 24 Jan 2017 06:59:51 +0000</pubDate></item><item><title>Auction-Bot Improvement</title><link>https://wrobot.eu/bugtracker/auction-bot-improvement-r603/</link><description><![CDATA[<p>
	Hello,
</p>

<p>
	yesterday i tried the auction bot. Unfortunatly the bot has no use at the moment because there is no price scanning from other contributers. Fixed prices for inserting is sadly not very helpful.  Is there maybe the posibility to add an integration of an external addon like Auctioneer or add this feature to the current bot?
</p>

<p>
	Kind regards Suspect
</p>]]></description><guid isPermaLink="false">603</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Blockages then a number</title><link>https://wrobot.eu/bugtracker/blockages-then-a-number-r602/</link><description><![CDATA[<p>
	It says blockages after i got home from school in some hours not even hours its get stucked and close the program and says blockages then a number... please can you help me to fix this kind of annoying?
</p>]]></description><guid isPermaLink="false">602</guid><pubDate>Fri, 13 Jan 2017 11:56:56 +0000</pubDate></item><item><title>PetBattle | Stuck (One Pet Vs 3)</title><link>https://wrobot.eu/bugtracker/petbattle-stuck-one-pet-vs-3-r601/</link><description><![CDATA[<p>
	<span lang="en-gb" xml:lang="en-gb">Dear Dru,</span></p>
<p></p>


<p>
	<span lang="en-gb" xml:lang="en-gb">I'm using your lovely created helper to level from 0 to 110 atm.<br><br>
	As there haven't been that many Quest lines, I started to level pets and Grind.<br>
	This leads me to the problem / Bug that I got stuck, when I only have 1 pet fighting against 3 pets.</span></p>
<p></p>


<p>
	<span lang="en-gb" xml:lang="en-gb">The bug is, that the Bot starts the fight, but didn’t use any attacks when the area shows up.</span></p>
<p></p>


<p>
	<span lang="en-gb" xml:lang="en-gb">If I manually use a couple of attacks, then it starts to overtake.</span></p>
<p></p>


<p>
	<span lang="en-gb" xml:lang="en-gb"></span></p>
<p> Short:<br>
	- using Quest, Grind<br>
	- with PetBattle active<br>
	- If only 1 Pet alive, it stuck for the first hits</p>


<p>
	<span lang="en-gb" xml:lang="en-gb">Maybe you can investigate this. </span>Thank you</p>
<p></p>


<p>
	Pet</p>
<p></p>]]></description><guid isPermaLink="false">601</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Moving to Isle giants then stops</title><link>https://wrobot.eu/bugtracker/moving-to-isle-giants-then-stops-r600/</link><description><![CDATA[<p>
	Hello!<br>
	Trying to use archaeologist and it only wants to move to Isle of the giants then he stops. Tried to update and restart, still only moves there and stops.
</p>

<p>
	Worked fine yesterday and half of today but now he only fly there then stops.
</p>]]></description><guid isPermaLink="false">600</guid><pubDate>Fri, 06 Jan 2017 12:55:15 +0000</pubDate></item><item><title>RAF WOTLK 3.3.5a dont fallow</title><link>https://wrobot.eu/bugtracker/raf-wotlk-335a-dont-fallow-r599/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	i would like to level my char by dungeon (dungeonbrowser).</p>
<p></p>


<p>
	</p>
<p> </p>


<p>
	If i go into ankahet/violet/azjol and other dungeons with my chars, the follower char (Party/RAF) start and kill the first group and then he stand around and do nothing else.
</p>

<p>
	If i stop the bot and start it again he kill one group and then he is standing around again and so on.</p>
<p></p>


<p>
	</p>
<p> </p>


<p>
	I think when i start the bot he finds the tank (100% life) and looks which group he attacks - the fight begins and my char attacks the same group and then he dont look if the tank is living, he looks if monster are dead and he become "false/0" back and stand around and do nothing. he don´t switch to the tank and check if he is living, he check if the mops/enemys are alive/dead thats not correct and my raf char stands arround and do nothing.
</p>

<p>
	</p>
<p> </p>


<p>
	<span lang="en" xml:lang="en">Perhaps it is at the loop which checked the dead mop and not the follower?!</span>
</p>]]></description><guid isPermaLink="false">599</guid><pubDate>Wed, 04 Jan 2017 17:28:09 +0000</pubDate></item><item><title>Ignor moving path and NotLoop</title><link>https://wrobot.eu/bugtracker/ignor-moving-path-and-notloop-r598/</link><description><![CDATA[<p>
	I'm create profile to garrison mine
</p>

<p>
	1. Bot  repeat profile many times -   &lt;NotLoop&gt;true&lt;/NotLoop&gt; doesn't effect
</p>

<p>
	2. Due to farm bot changing path and skip ores at part of <span lang="en" xml:lang="en"><span>mine</span></span>
</p>

<p><a class="ipsAttachLink" href="//wrobot.eu/applications/core/interface/file/attachment.php?id=10835">Alliance Garrison Level 3 Mine.xml</a></p>]]></description><guid isPermaLink="false">598</guid><pubDate>Sun, 01 Jan 2017 09:43:54 +0000</pubDate></item><item><title>shutdown?</title><link>https://wrobot.eu/bugtracker/shutdown-r597/</link><description><![CDATA[<p>
	<font color="#FF0000" style="font-family:'Times New Roman';font-size:medium;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;">[E] 17:24:47 - Wow try to call protected function, if this happen frequently please report it.</font><br><br style="color:rgb(0,0,0);font-family:'Times New Roman';font-size:medium;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;"><font color="#FF0000" style="font-family:'Times New Roman';font-size:medium;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;">[E] 17:24:47 - [WarGuard] Call &gt; GetThreadContext from: cbdd7c rebased: 1cdd7c</font>
</p>

<p>
	 
</p>

<p>
	what is this?
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">597</guid><pubDate>Sat, 31 Dec 2016 14:19:00 +0000</pubDate></item><item><title>BUG error</title><link>https://wrobot.eu/bugtracker/bug-error-r596/</link><description><![CDATA[<p>
	Hello,
</p>

<p>
	I bought my key yesterday and as soon as I tried to make the bot work, this message shows up on log. What should I do? I have already uninstalled and installed again. Please someone help me
</p>

<p>
	 
</p>

<p>
	[E] 09:38:53 - gdgfdgfd: Compilator Error :<br>
	warning CS1685: The predefined type 'System.Runtime.CompilerServices.ExtensionAttribute' is defined in multiple assemblies in the global alias; using definition from 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll'<br>
	error CS0012: The type 'System.Attribute' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
</p>]]></description><guid isPermaLink="false">596</guid><pubDate>Mon, 26 Dec 2016 17:44:15 +0000</pubDate></item><item><title>cant start the bot</title><link>https://wrobot.eu/bugtracker/cant-start-the-bot-r595/</link><description><![CDATA[<p>
	[E] 23:51:41 - gdgfdgfd: Compilator Error :<br>
	warning CS1685: Der vordefinierte Typ 'System.Runtime.CompilerServices.ExtensionAttribute' ist in mehreren Assemblys im globalen Alias definiert. Die Definition aus 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll' wird verwendet.<br>
	error CS0012: Der Typ 'System.Attribute' ist in einer nicht referenzierten Assembly definiert. Fügen Sie einen Verweis auf die Assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' hinzu.
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 i dont know :D ......
</p>]]></description><guid isPermaLink="false">595</guid><pubDate>Sat, 24 Dec 2016 22:58:24 +0000</pubDate></item><item><title>UseItemOn doesn't work because of Item Cooldown</title><link>https://wrobot.eu/bugtracker/useitemon-doesnt-work-because-of-item-cooldown-r594/</link><description><![CDATA[<p>
	So in this quest I have to use an item on 2 different points. It used the item on the first hotspot just fine... but when it arrived at the second hotspot the item was still on cooldown when the bot used it, so it didn't work. It ran back again to the first hotspot and used the item again succesfully, ran again to the second hotspot and it was on cooldown again, creating an infinite loop. I thought I could solve it by creating 2 entries for the same quest in the quest editor and doing them seperately but what this does is pulse the first entry succesfully, then it goes to the second step uses the item (which is still on cooldown) once and then it doesn't do anything anymore. I can solve it manually by running code in a thread but seems like this shouldn't be happening.
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">594</guid><pubDate>Sat, 17 Dec 2016 23:36:29 +0000</pubDate></item><item><title>UseItemOn doesn't work because we're mounted</title><link>https://wrobot.eu/bugtracker/useitemon-doesnt-work-because-were-mounted-r593/</link><description><![CDATA[<p>
	When the bot mounts (flying mount in my case) and flies to a hotspot where it should use an item, it remains mounted and thus using the item fails.<br>
	So basically the bot needs to dismount before it tries to use an item, otherwise it just doesn't work and it gets stuck.
</p>]]></description><guid isPermaLink="false">593</guid><pubDate>Sat, 17 Dec 2016 23:15:09 +0000</pubDate></item><item><title>Bot stops after getting out of lava</title><link>https://wrobot.eu/bugtracker/bot-stops-after-getting-out-of-lava-r592/</link><description><![CDATA[<p>
	well this is happening to me, the bot simply stops when he leaves lava on frosfire ridge
</p>

<p>
	on the first place, why does he go to the lava? lol
</p>]]></description><guid isPermaLink="false">592</guid><pubDate>Sat, 17 Dec 2016 18:21:12 +0000</pubDate></item><item><title>Battlegrounder Bad Bg's</title><link>https://wrobot.eu/bugtracker/battlegrounder-bad-bgs-r591/</link><description><![CDATA[<p>
	These bg's have some problems I've noticed.
</p>

<p>
	 
</p>

<p>
	Warsong gulch - your character can get caught on walls outside the flag carriers room and will keep running nowhere.
</p>

<p>
	 
</p>

<p>
	Strand of the ancients - can get caught behind the gate and will keep running nowhere. 
</p>

<p>
	 
</p>

<p>
	Isle of conquest - will get caught on a wall and keep running nowhere. 
</p>

<p>
	 
</p>

<p>
	Movement path bugs, only 2 of 3 can be blacklisted. please fix, for the other people reading this out there, Play at your own risk. This website in not responsible for the action taken towards your account. Best of luck though. 
</p>

<p>
	 
</p>

<p>
	Battle grounder rating 9 out of 10.
</p>

<p>
	 
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">591</guid><pubDate>Wed, 14 Dec 2016 23:03:24 +0000</pubDate></item><item><title>Message d'erreur, ne fonctionne pas</title><link>https://wrobot.eu/bugtracker/message-derreur-ne-fonctionne-pas-r589/</link><description><![CDATA[<p>
	Bonjour, j'ai pris un abonnement mais le bot ne fonctionne pas
</p>

<p>
	J'ai téléchargé à nouveau le bot mais rien à faire.
</p>

<p>
	J'ai un message d'erreur dans les logs :
</p>

<p>
	[E] 12:42:14 - gdgfdgfd: Compilator Error :<br>
	warning CS1685: Le type prédéfini 'System.Runtime.CompilerServices.ExtensionAttribute' est défini dans plusieurs assemblys dans l'alias global ; utilisation de la définition de 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll'<br>
	error CS0012: Le type 'System.Attribute' est défini dans un assembly qui n'est pas référencé. Vous devez ajouter une référence à l'assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
</p>

<p>
	Merci de m'aider svp :)
</p>]]></description><guid isPermaLink="false">589</guid><pubDate>Wed, 14 Dec 2016 08:49:21 +0000</pubDate></item><item><title>Incorrect Game version ?</title><link>https://wrobot.eu/bugtracker/incorrect-game-version-r588/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	I have installed WRobot and updated.
</p>

<p>
	When i wil launch the bot, it say that i need to start the 32 Bit version.
</p>

<p>
	I click yes and WoW 32 bit mode (x86) 232222 wil start the client say incorrect version and doesn't start the bot.
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">588</guid><pubDate>Sat, 10 Dec 2016 16:25:31 +0000</pubDate></item><item><title>Bot didn't see mana in Bear form</title><link>https://wrobot.eu/bugtracker/bot-didnt-see-mana-in-bear-form-r587/</link><description><![CDATA[<p>
	<span lang="en" xml:lang="en"><span>Priv</span> <span>wotlk </span></span><span lang="en" xml:lang="en"><span>version.</span> </span>
</p>

<p>
	<span lang="en" xml:lang="en"><span>Wrobot</span> <span>not check</span>ing <span>mana</span> <span>when you play</span> <span>a druid</span> <span>and</span> <span>change form, for</span> <span>example in b</span><span>ear,</span><span> consequence is that character</span><span> didn't know</span> <span>when </span><span>regenerate</span> <span>mana</span> <span>and when not.</span></span>
</p>]]></description><guid isPermaLink="false">587</guid><pubDate>Sat, 10 Dec 2016 15:47:38 +0000</pubDate></item><item><title>WRobot will not pick up</title><link>https://wrobot.eu/bugtracker/wrobot-will-not-pick-up-r586/</link><description><![CDATA[<p>
	WRobot will not pick up
</p>]]></description><guid isPermaLink="false">586</guid><pubDate>Thu, 08 Dec 2016 11:23:44 +0000</pubDate></item><item><title>BOT sometimes stops moving.</title><link>https://wrobot.eu/bugtracker/bot-sometimes-stops-moving-r585/</link><description><![CDATA[<p>
	BOT sometimes stops moving.
</p>]]></description><guid isPermaLink="false">585</guid><pubDate>Wed, 07 Dec 2016 14:28:52 +0000</pubDate></item><item><title>CPU load on latest update (Wotlk client)</title><link>https://wrobot.eu/bugtracker/cpu-load-on-latest-update-wotlk-client-r584/</link><description><![CDATA[<p>
	Ok, the game just became unplayable, wrobot is stealing 37% cpu now, so multiple clients wont work anymore, please revert whatever you just patched.
</p>]]></description><guid isPermaLink="false">584</guid><pubDate>Thu, 01 Dec 2016 13:21:13 +0000</pubDate></item><item><title>Relogger doesn't support .bat files</title><link>https://wrobot.eu/bugtracker/relogger-doesnt-support-bat-files-r583/</link><description><![CDATA[<p>
	Hi, when I'm using a batch file to run wow, relogger is just launching it over and over, assuming that games has failed to launch, even though 1st instance is already running fine.
</p>

<p>
	HBRelog handles batch launching fine though, please fix that coz it's a crucial feature for me.
</p>

<p>
	<a href="http://joxi.ru/brRdeg3SJyPlx2?d=1" rel="external nofollow">http://joxi.ru/brRdeg3SJyPlx2?d=1</a>
</p>]]></description><guid isPermaLink="false">583</guid><pubDate>Thu, 24 Nov 2016 02:10:25 +0000</pubDate></item><item><title>Bot lacks and wont loot</title><link>https://wrobot.eu/bugtracker/bot-lacks-and-wont-loot-r582/</link><description><![CDATA[<p>
	I got an error message, which I didn't write down unfortunately, and the bot stopping program closed. I tried to open, but it said that I already used it, so I restarted my computer. Now when I run the bot, it lacks, like running and stopping all the time, and doesn't loot the herbs.
</p>

<p>
	I can't use the bot! What to do?
</p>]]></description><guid isPermaLink="false">582</guid><pubDate>Fri, 18 Nov 2016 12:02:35 +0000</pubDate></item><item><title>[TBC] Trying to queue up for BGs when already in queue</title><link>https://wrobot.eu/bugtracker/tbc-trying-to-queue-up-for-bgs-when-already-in-queue-r581/</link><description><![CDATA[<p>
	The 2.4.3 version of the bot is trying to queue up for BGs even though it has already queued up for them once / even though it is already in queue.
</p>

<p>
	It should simply do a "If !Me.IsInBattlegroundQueue --&gt; Queue", since it's right now running between 3 battlemasters trying to queue up over and over.
</p>]]></description><guid isPermaLink="false">581</guid><pubDate>Thu, 17 Nov 2016 15:26:50 +0000</pubDate></item><item><title>Not looting in "Travel form (under water)"</title><link>https://wrobot.eu/bugtracker/not-looting-in-travel-form-under-water-r580/</link><description><![CDATA[<p>
	Hi again again
</p>

<p>
	 
</p>

<p>
	Just found out the bot don't loot in Travel form under water - it runs to the killed mobs - and then continue swimming
</p>]]></description><guid isPermaLink="false">580</guid><pubDate>Wed, 16 Nov 2016 14:26:56 +0000</pubDate></item><item><title>Set Max flight hight on mount</title><link>https://wrobot.eu/bugtracker/set-max-flight-hight-on-mount-r579/</link><description><![CDATA[<p>
	Hi again again xD
</p>

<p>
	 
</p>

<p>
	Another feature that would be really handy is the option to set a Max hight distance to flight mount - or reather an option to "just fly above the ground"
</p>

<p>
	As some zones is pretty much impossible to fly around in (becouse of something "above you")
</p>]]></description><guid isPermaLink="false">579</guid><pubDate>Wed, 16 Nov 2016 14:00:46 +0000</pubDate></item><item><title>Use item/spell on colleted items</title><link>https://wrobot.eu/bugtracker/use-itemspell-on-colleted-items-r578/</link><description><![CDATA[<p>
	Use item on x colleted items
</p>

<p>
	 
</p>

<p>
	Like quest: "Helboar, The Other white mean"
</p>

<p>
	 
</p>

<p>
	This and many more quests you have to pick up some drops from mobs and after the pickup you need to use an item or spell in the bag to create a New item (the quest item)
</p>]]></description><guid isPermaLink="false">578</guid><pubDate>Wed, 16 Nov 2016 11:52:37 +0000</pubDate></item><item><title>Remove all forms + mount</title><link>https://wrobot.eu/bugtracker/remove-all-forms-mount-r577/</link><description><![CDATA[<p>
	Hi again !
</p>

<p>
	 
</p>

<p>
	There are quite some quests that don't allow you to use items on stuff or take rides and so on if you are in a shapeshift form, mounted or in stealth.
</p>

<p>
	 
</p>

<p>
	So i would really really like to see a feature where you could disable this before using the item/talk to npc .
</p>

<p>
	 
</p>

<p>
	As this really stops the Leveling profiles from running fully afk :)
</p>]]></description><guid isPermaLink="false">577</guid><pubDate>Wed, 16 Nov 2016 11:42:18 +0000</pubDate></item><item><title>&#xE0;m i a robot?</title><link>https://wrobot.eu/bugtracker/%C3%A0m-i-a-robot-r576/</link><description><![CDATA[<p>
	hey ppl ;)
</p>

<p>
	 
</p>

<p>
	if i start the bot and the game when its playing for a few minutes the game logs out and i get a popup screen the game asking if im a robot from gnomisch making.. and i need to fill in a few numbers and letters to play again ( wich doesnt work either it says its not correct xD so i logout the entire game and restard and i can login normal again but when i use the program again it will come up again :( 
</p>

<p>
	 
</p>

<p>
	any others with this problem? or any fix for it comming or tips tricks?
</p>

<p>
	 
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">576</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>Bot stuck at repair vendor in Tornheim</title><link>https://wrobot.eu/bugtracker/bot-stuck-at-repair-vendor-in-tornheim-r575/</link><description><![CDATA[<p>
	Bot get stuck in a loop while attempting to repair in Tornheim (NPC is called "Intendant Ricard") and just never press the damn button. When I manually press for repair the bot just keep with farming normally again.
</p>

<p>
	"French Translation" : Le Bot reste bloqué en essayant de réparer, sans jamais y arriver. Si je répare manuellement, il repart dans son cycle de farm normalement.
</p>

<p>
	I attached log and screenshot, thanks for help, I will just disable the repair option for now while the bug get checked.
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2016_11/Screen.jpg.b53ec28b74d868eed4bf599be221b41e.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="10731" src="https://wrobot.eu/uploads/monthly_2016_11/Screen.thumb.jpg.0afbbb8049c481d5ebfc276eadb999f6.jpg" class="ipsImage ipsImage_thumbnailed" alt="Screen.jpg" loading="lazy"></a></p>]]></description><guid isPermaLink="false">575</guid><pubDate>Tue, 08 Nov 2016 20:12:16 +0000</pubDate></item><item><title>&#x41D;&#x435; &#x440;&#x430;&#x431;&#x43E;&#x442;&#x430;&#x435;&#x442;</title><link>https://wrobot.eu/bugtracker/%D0%BD%D0%B5-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82-r574/</link><description><![CDATA[<p>
	Все сделал по инструкции не хочет видеть процесс игры
</p>
<p><a href="https://wrobot.eu/uploads/monthly_2016_11/58207368ae447_.png.87294931c5d443c1fffad2cdf3144b2b.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="10717" src="https://wrobot.eu/uploads/monthly_2016_11/5820736ac1c8d_.thumb.png.ed3c1cccb6f4aa02661bbdb51bc586e7.png" class="ipsImage ipsImage_thumbnailed" alt="Безымянный.png" loading="lazy"></a></p>]]></description><guid isPermaLink="false">574</guid><pubDate>Mon, 07 Nov 2016 12:28:30 +0000</pubDate></item><item><title>downt work from the updates...</title><link>https://wrobot.eu/bugtracker/downt-work-from-the-updates-r573/</link><description><![CDATA[<p>
	works good untill the update, 
</p>

<p>
	i think its diffent Wow server version, Uk and Korean server.... plz, help me 
</p>

<p>
	can I get 22908 version?? I cant wait 4days....... plz help
</p>]]></description><guid isPermaLink="false">573</guid><pubDate>Sun, 06 Nov 2016 15:23:21 +0000</pubDate></item><item><title>Unable to start bot now</title><link>https://wrobot.eu/bugtracker/unable-to-start-bot-now-r572/</link><description><![CDATA[<p>
	I've been using WRobot for almost a year but now when I try to start the application it says my account is in use at the WRobot launch screen and asks me to start WoW again. This never stops and I can't use my bot now 
</p>]]></description><guid isPermaLink="false">572</guid><pubDate>Sun, 06 Nov 2016 09:50:37 +0000</pubDate></item><item><title>Add "cooldown on item" - In use item and spell on</title><link>https://wrobot.eu/bugtracker/add-cooldown-on-item-in-use-item-and-spell-on-r571/</link><description><![CDATA[<p>
	Hi
</p>

<p>
	 
</p>

<p>
	Would really like to see a feature where you could add cooldown on an item you should use on something, in the questing bot.
</p>

<p>
	As some items have like 15 sec cooldown !
</p>]]></description><guid isPermaLink="false">571</guid><pubDate>Sat, 05 Nov 2016 11:09:43 +0000</pubDate></item><item><title>Bot stuck in Suramar city when char died</title><link>https://wrobot.eu/bugtracker/bot-stuck-in-suramar-city-when-char-died-r570/</link><description><![CDATA[<p>
	when character dies in Suramar city, he spawned in room with spirit healer. that room have only one door out and bot can't find path from this room
</p>

<p>
	 new Vector3(1131.036, 3825.065, 1.710878, "None")<br>
	 
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2016_11/Wow_2016-11-05_01-51-19.png.06c58c21c4dca195afe5925d78bfdf74.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="10705" src="https://wrobot.eu/uploads/monthly_2016_11/Wow_2016-11-05_01-51-19.png.06c58c21c4dca195afe5925d78bfdf74.png" class="ipsImage ipsImage_thumbnailed" alt="Wow_2016-11-05_01-51-19.png" loading="lazy"></a></p>]]></description><guid isPermaLink="false">570</guid><pubDate>Fri, 04 Nov 2016 18:52:03 +0000</pubDate></item><item><title>Game version incorrect</title><link>https://wrobot.eu/bugtracker/game-version-incorrect-r569/</link><description><![CDATA[<p>
	 Was working fine until I relaunched the app when I was prompted to update it, since then It says "Game version incorrect".
</p>]]></description><guid isPermaLink="false">569</guid><pubDate>Fri, 04 Nov 2016 05:22:57 +0000</pubDate></item><item><title>ItemEquipLoc wrong datatype</title><link>https://wrobot.eu/bugtracker/itemequiploc-wrong-datatype-r568/</link><description><![CDATA[<p style="margin-top:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Hi,
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	i am trying to create some item plugin.. but the GetIemInfo.ItemEquipLoc is always true.. while it should be a string defining to which slot it can be equiped.
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Or even better an Enum? of  the ItemSlot :) =&gt; <a href="http://wowwiki.wikia.com/wiki/ItemEquipLoc" rel="external nofollow" style="color:rgb(60,105,148);text-decoration:underline;background-color:transparent;">http://wowwiki.wikia.com/wiki/ItemEquipLoc</a>
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	 
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Also can you tell me where i can get item stats and how to equip an item from bag into specific slot?
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	 
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Currently you are using this way to get the iteminfo:
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">if (!ItemInfo._vuipet.TryGetValue(ehoegaupait, out itemInfo) || itemInfo == null)
                    {
                        lock (ItemInfo._lockItemInfo)
                        {
                            str = Lua.LuaDoString</span><span class="tag">&lt;string&gt;</span><span class="pln">(string.Format(BlackListSerializable.CexaheigeluTeuceEdusouhu(), ehoegaupait), "");
                        }
                        if (!string.IsNullOrWhiteSpace(str))
                        {
                            string[] strArrays = str.Split(new char[] { Convert.ToChar(BlackListSerializable.AxoicebaqunuMe()) });
                            this.ItemName = strArrays[0];
                            this.ItemLink = strArrays[1];
                            this.ItemRarity = Others.ParseInt(strArrays[2]);
                            this.ItemLevel = Others.ParseInt(strArrays[3]);
                            this.ItemMinLevel = Others.ParseInt(strArrays[4]);
                            this.ItemType = strArrays[5];
                            this.ItemSubType = strArrays[6];
                            this.ItemStackCount = Others.ParseInt(strArrays[7]);
                            this.ItemEquipLoc = strArrays[8] != "";
                            this.ItemTexture = strArrays[9];
                            this.ItemSellPrice = Others.ParseInt(strArrays[10]);
                            if (!string.IsNullOrWhiteSpace(this.ItemName) &amp;&amp; this.ItemName != BlackListSerializable.Heonioloupa())
                            {
                                ItemInfo._vuipet.Add(ehoegaupait, this);
                            }
                        }</span></pre>

<p>
	 
</p>

<p>
	As we can see ItemEquipLoc is a bool but should be a string.
</p>

<p>
	 
</p>]]></description><guid isPermaLink="false">568</guid><pubDate>Thu, 03 Nov 2016 11:03:23 +0000</pubDate></item><item><title>Error when working with Quest Editor</title><link>https://wrobot.eu/bugtracker/error-when-working-with-quest-editor-r567/</link><description><![CDATA[<p>
	Was working today on my first profile for questing. Learning how it worked I encountered this error. Not sure what steps to take to debug it but have been pretty successful with the grinding profile creator.
</p>
<p><a href="https://wrobot.eu/uploads/monthly_2016_11/errormakingquesteditor.PNG.e74005787cf31d8d08fab6b939447257.PNG" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="10693" src="https://wrobot.eu/uploads/monthly_2016_11/errormakingquesteditor.PNG.e74005787cf31d8d08fab6b939447257.PNG" class="ipsImage ipsImage_thumbnailed" alt="errormakingquesteditor.PNG" loading="lazy"></a></p>]]></description><guid isPermaLink="false">567</guid><pubDate>Wed, 02 Nov 2016 03:32:09 +0000</pubDate></item><item><title>Stealth Ignore mobs - not targeting you</title><link>https://wrobot.eu/bugtracker/stealth-ignore-mobs-not-targeting-you-r566/</link><description><![CDATA[<p>
	A feature like "Me in stealth - Ignore mobs not attacking" or something :-)
</p>

<p>
	Right now it does it like 50/50 goes around look at a mob, and then deside if it want to attack or not
</p>]]></description><guid isPermaLink="false">566</guid><pubDate>Fri, 28 Oct 2016 12:15:19 +0000</pubDate></item><item><title>AOE spells not casting</title><link>https://wrobot.eu/bugtracker/aoe-spells-not-casting-r565/</link><description><![CDATA[<p>
	The Totems - "put on ground" dosent work :/
</p>

<p>
	 
</p>

<p>
	<a href="http://imgur.com/a/sz7Mn" rel="external nofollow">http://imgur.com/a/sz7Mn</a>
</p>]]></description><guid isPermaLink="false">565</guid><pubDate>Fri, 28 Oct 2016 11:35:10 +0000</pubDate></item><item><title>Buff Casted By Me (Not Working)</title><link>https://wrobot.eu/bugtracker/buff-casted-by-me-not-working-r564/</link><description><![CDATA[<p>
	As of 7.1.0 update the following condition(s) are not functioning correctly:
</p>

<ul><li>
		Buff Casted By Me
	</li>
</ul><p>
	I used Shield Block as my rotation and it uses this condition. However in the update it stopped working.
</p>]]></description><guid isPermaLink="false">564</guid><pubDate>Tue, 25 Oct 2016 18:50:37 +0000</pubDate></item><item><title>Bot is not skinning looted mobs.</title><link>https://wrobot.eu/bugtracker/bot-is-not-skinning-looted-mobs-r563/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	On the TBC Version of the bot with skinning enabled the bot doesn't skin the looted mobs.
</p>

<p>
	It does loot just fine, but it simply doesn't skin afterwards.
</p>]]></description><guid isPermaLink="false">563</guid><pubDate>Tue, 25 Oct 2016 18:09:34 +0000</pubDate></item><item><title>Blacklisting target don't work</title><link>https://wrobot.eu/bugtracker/blacklisting-target-dont-work-r562/</link><description><![CDATA[<p>
	Hi again.
</p>

<p>
	 
</p>

<p>
	The blacklisting of target simply don't work - now i have it happend a couple of times :/ log provided
</p>

<p>
	 
</p>

<div class="ipsSpoiler" data-ipsspoiler="">
	<div class="ipsSpoiler_header">
		<span>Spoiler</span>
	</div>

	<div class="ipsSpoiler_contents">
		<p>
			22:26:51 - [Fight] Player Attacked by Murloc Lurker (lvl 10)<br><font color="#008000">[F] 22:26:52 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:26:54 - [Spell] Cast Frost Nova (Frost Nova)</font><br><font color="#008000">[F] 22:26:55 - [Spell] Cast Blink (Blink)</font><br><font color="#008000">[F] 22:26:56 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:26:58 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#000000">22:26:59 - [Fight] Player Attacked by Murloc Lurker (lvl 9)</font><br><font color="#008000">[F] 22:26:59 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:01 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:03 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#000000">22:27:04 - [Looting] Loot Murloc Lurker</font><br><font>[D] 22:27:05 - [MovementManager] You try to use flying/swimming path but you cannot fly/swim here, try to use ground mouvement...</font><br><font color="#0000FF">[N] 22:27:05 - [Path-Finding] Path Count: 5</font><br><font color="#0000FF">[N] 22:27:07 - [Path-Finding] Path Count: 4</font><br><font color="#000000">22:27:08 - [LootFilter] Destroying Linen Cloth we have 1</font><br><font color="#000000">22:27:09 - [Fight] Player attack before being attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:27:09 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:09 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:27:10 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:12 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:14 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:16 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:27:17 - [Fight] Mob seem bugged</font><br><font>[D] 22:27:17 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:27:17 - [Fight] Player Attacked by Murloc Forager (lvl 10)</font><br><font color="#008000">[F] 22:27:17 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:19 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:21 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:23 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:25 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:27:27 - [Fight] Mob seem bugged</font><br><font>[D] 22:27:27 - [Fight] BlackList Murloc Forager during 60 sec</font><br><font color="#000000">22:27:27 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:27:27 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:28 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:30 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:31 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:33 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:27:34 - [Fight] Mob seem bugged</font><br><font>[D] 22:27:34 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:27:34 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:27:35 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:36 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:38 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:40 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:42 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:27:42 - [Fight] Mob seem bugged</font><br><font>[D] 22:27:42 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:27:42 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:27:43 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:45 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:47 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:49 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:27:50 - [Fight] Mob seem bugged</font><br><font>[D] 22:27:50 - [Fight] BlackList Murloc Forager during 60 sec</font><br><font color="#0000FF">[N] 22:27:50 - [Path-Finding] Path Count: 4</font><br><font color="#000000">22:27:51 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:27:51 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:52 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:54 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:56 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:27:58 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:27:58 - [Fight] Mob seem bugged</font><br><font>[D] 22:27:58 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:27:58 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:00 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:01 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:03 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:03 - [Spell] Cast Frost Nova (Frost Nova)</font><br><font color="#008000">[F] 22:28:05 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:28:06 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:06 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:06 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:06 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:08 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:10 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:11 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:13 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:28:14 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:14 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:14 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:15 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:17 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:19 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:20 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:28:21 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:21 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:21 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:22 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:24 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:26 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:27 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:28 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font>[D] 22:28:29 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:29 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:29 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:29 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:32 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:32 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:28:33 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:34 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:28:35 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:35 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:28:36 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:28:37 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:37 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:37 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:38 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:40 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:41 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:28:42 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:44 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:28:44 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:44 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:44 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:28:45 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:45 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:28:46 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:47 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:48 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:49 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:28:50 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:52 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:53 - [Spell] Cast Frost Nova (Frost Nova)</font><br><font>[D] 22:28:53 - [Fight] Mob seem bugged</font><br><font>[D] 22:28:53 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:28:53 - [Fight] Player Attacked by Murloc Lurker (lvl 9)</font><br><font color="#008000">[F] 22:28:54 - [Spell] Cast Blink (Blink)</font><br><font color="#008000">[F] 22:28:55 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:28:57 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#000000">22:28:57 - [LootFilter] Destroying Linen Cloth we have 1</font><br><font color="#000000">22:28:57 - [LootFilter] Destroying Small Barnacled Clam we have 1</font><br><font color="#008000">[F] 22:28:59 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:00 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#000000">22:29:01 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:02 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:03 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:29:05 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:06 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:08 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:08 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:08 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:09 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:10 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:12 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:13 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:15 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:16 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:16 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:16 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:17 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:19 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:20 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:22 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:24 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:24 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:24 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:24 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:26 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:29:27 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:29 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:30 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:32 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:32 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:32 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:32 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:34 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:36 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:37 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:39 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:39 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:39 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:39 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:41 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:29:42 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:44 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:45 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:29:47 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:47 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:47 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:47 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:48 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:50 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:52 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:54 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:29:55 - [Fight] Mob seem bugged</font><br><font>[D] 22:29:55 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:29:55 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:29:55 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:57 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:29:59 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:01 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:02 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:30:02 - [Fight] Mob seem bugged</font><br><font>[D] 22:30:02 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:30:02 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:30:04 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:06 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:08 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:09 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:30:10 - [Fight] Mob seem bugged</font><br><font>[D] 22:30:10 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:30:10 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:30:11 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:30:12 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:14 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:16 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:30:17 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:30:18 - [Fight] Mob seem bugged</font><br><font>[D] 22:30:18 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:30:18 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:30:19 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:20 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:22 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:30:23 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:25 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:30:25 - [Fight] Mob seem bugged</font><br><font>[D] 22:30:25 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:30:25 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:30:27 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:29 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:30 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:32 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:30:33 - [Fight] Mob seem bugged</font><br><font>[D] 22:30:33 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:30:33 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br><font color="#008000">[F] 22:30:34 - [Spell] Cast Ice Lance (Ice Lance)</font><br><font color="#008000">[F] 22:30:35 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:37 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:39 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font color="#008000">[F] 22:30:40 - [Spell] Cast (on target) Frostbolt (Frostbolt)</font><br><font>[D] 22:30:41 - [Fight] Mob seem bugged</font><br><font>[D] 22:30:41 - [Fight] BlackList Murloc Forager during 30 sec</font><br><font color="#000000">22:30:41 - [Fight] Player Attacked by Murloc Forager (lvl 9)</font><br>
			 
		</p>
	</div>
</div>

<p>
	 
</p>]]></description><guid isPermaLink="false">562</guid><pubDate>Thu, 20 Oct 2016 20:35:02 +0000</pubDate></item><item><title>Only loot quest item mobs</title><link>https://wrobot.eu/bugtracker/only-loot-quest-item-mobs-r561/</link><description><![CDATA[<p>
	Hi
</p>

<p>
	Was testing my leveling profile - and wanted it do it as fast as possbile - so i disabled the feature to loot mobs, but it ignored all mobs, and thats a bad thing :p
</p>

<p>
	 
</p>

<p>
	Is it possible we can get an option like "only loot quest mobs" &lt;- simply check the pulsepart, and see if its kill and loot and if it is then it should loot those ids from the questpart :)
</p>]]></description><guid isPermaLink="false">561</guid><pubDate>Thu, 20 Oct 2016 19:08:24 +0000</pubDate></item><item><title>Bad adding area/mobs to black list</title><link>https://wrobot.eu/bugtracker/bad-adding-areamobs-to-black-list-r560/</link><description><![CDATA[<p>
	<span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">13:53:23 - [Fight] Player Attacked by Stout Shaghorn (lvl 90)</span><br style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);"><span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">[D] 13:53:26 - [MultiPull] Pull Stout Shaghorn (distance: 13,48242).</span><br style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);"><span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">[D] 13:53:26 - [Fight] Fight stopped</span><br style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);"><span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">13:53:26 - [Fight] Player Attacked by Stout Shaghorn (lvl 90)</span><br style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);"><span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">[D] 13:53:32 - [Fight] Player attacked by other unit, skip this fight.</span><br style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);"><span style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);float:none;">[D] 13:53:32 - [Fight] BlackList Stout Shaghorn during 30 sec</span>
</p>

<p>
	 
</p>

<p>
	This happens if it pulls pack of mobs, but than my characters AOE also pulls additional targets (neutral), even those are the same target that i intend to farm.It adds them to black list, resulting in not even looting or skining them after pack of mobs is killed.
</p>

<p><a class="ipsAttachLink" href="//wrobot.eu/applications/core/interface/file/attachment.php?id=4268">9 lis 2016 12H26 - COvVQlN.log.html</a></p>]]></description><guid isPermaLink="false">560</guid><pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate></item><item><title>WROBOT fen&#xEA;tre se referme toute seule</title><link>https://wrobot.eu/bugtracker/wrobot-fen%C3%AAtre-se-referme-toute-seule-r559/</link><description><![CDATA[<p style="margin-top:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Bonjour
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Merci de me répondre en Français :)
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	 
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Voila depuis quelques jours je ne peux plus utiliser wrobot, la fenêtre principal se referme automatiquement.
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Je suis sur un serveur privée : version 6.2.3 (20779) (draenor ) j'utilise WRobot_6.2.3_20886_FINAL
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	J'avais aucun souci jusqu’à maintenant...
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Ce qui est bizarre c'est que j'étais avant sur un autre serveur version 5.4.8 (18414) Mists of pandaria  et WRobotFullPack_5.4.7_18019, il fonctionnait parfaitement aussi
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	et la aucun des deux ne fonctionnent
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	 
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Possible de m'aider ?
</p>

<p style="color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	 
</p>

<p style="margin-bottom:0px;color:rgb(39,42,52);font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);">
	Merci d'avance
</p>]]></description><guid isPermaLink="false">559</guid><pubDate>Sun, 16 Oct 2016 13:58:01 +0000</pubDate></item><item><title>Add a "must have completet this quest to do this"</title><link>https://wrobot.eu/bugtracker/add-a-must-have-completet-this-quest-to-do-this-r558/</link><description><![CDATA[<p>
	As a lot of quests in wow, are follow up from earlyer quest - and simply cannot be picked up unless another quest is done first.
</p>

<p>
	So i would really like to see an option to add like "This quest must be completed: Quest ID" &lt;- added to the quester, this way they bot would know to skip an questline (if its to high lvl), and it make it so much easier to make a smooth questing profile :)
</p>]]></description><guid isPermaLink="false">558</guid><pubDate>Sun, 16 Oct 2016 12:11:39 +0000</pubDate></item><item><title>Feral Druid</title><link>https://wrobot.eu/bugtracker/feral-druid-r557/</link><description><![CDATA[<p>
	There are many bugs with mana/health food. In feral form, druid uses mana food, when energy is low (not mana). % when using food does not work. It uses food all the time no matter how it is set.
</p>]]></description><guid isPermaLink="false">557</guid><pubDate>Sat, 15 Oct 2016 22:46:24 +0000</pubDate></item><item><title>Running into walls just next to doors</title><link>https://wrobot.eu/bugtracker/running-into-walls-just-next-to-doors-r556/</link><description><![CDATA[<p>
	The bot seems to run right next to the door, like on all doors...
</p>

<p>
	and then after than starting to jump move around a little and then walk though - and as far as i can see, then it does it with every doors it comes across.
</p>

<p>
	 
</p>

<p>
	Please fix this - as this is one of the things thats really makes it look bottish
</p>]]></description><guid isPermaLink="false">556</guid><pubDate>Sat, 15 Oct 2016 18:23:50 +0000</pubDate></item><item><title>Taxi / Run infite loop</title><link>https://wrobot.eu/bugtracker/taxi-run-infite-loop-r555/</link><description><![CDATA[<p>
	maybe something wrong with my settings, but i found infinte run. attack image.
</p>

<p>
	got quester go to destination point (red) from anywhere from map further yellow taxi point.
</p>

<p>
	character run to yellow point, use taxi to blue point and then run to yellow point again and take taxi.
</p>

<p><a href="https://wrobot.eu/uploads/monthly_2016_10/Wow_2016-10-14_19-29-30.png.40e92e0d5d59e8dda1a9730040b37145.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="4240" src="https://wrobot.eu/uploads/monthly_2016_10/Wow_2016-10-14_19-29-30.png.40e92e0d5d59e8dda1a9730040b37145.png" class="ipsImage ipsImage_thumbnailed" alt="Wow_2016-10-14_19-29-30.png" loading="lazy"></a></p>]]></description><guid isPermaLink="false">555</guid><pubDate>Fri, 14 Oct 2016 12:35:30 +0000</pubDate></item><item><title>Mining</title><link>https://wrobot.eu/bugtracker/mining-r554/</link><description><![CDATA[<p>
	Bot missing mines and not landing on top of it (flying upwards). It falls many times somewhere and don't walk back to node it just ignore it and fly away. Get stucked many times.
</p>]]></description><guid isPermaLink="false">554</guid><pubDate>Thu, 13 Oct 2016 21:50:19 +0000</pubDate></item></channel></rss>
