
Bastilla
Members-
Posts
64 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Bastilla
-
Thanks
-
In my skript there are no space. while (ObjectManager.Me.CastingSpell.Name == "Healing Touch") and this doesn't work
-
OMG thanks ?
-
@Droidz while (ObjectManager.Me.CastingSpell.Name == "Healing Touch ") do nothing but while (ObjectManager.Me.CastingSpellId == 8903) works. Why?
-
if (isneedActionbecausebreath()) { robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle," "); } internal bool isneedActionbecausebreath() { if (ObjectManager.Me.BreathActive) { Logging.WriteFight("isneedActionbecausebreath: "+ObjectManager.Me.BreathTimerLeft); if (ObjectManager.Me.BreathTimerLeft < 10000) { return true; } } return false; }
-
Thanks Druidz for your quick respons. Very nice
-
Hello, i want to interrupt my cast "Healing Touch" when my Healtheprcent >? 80. I use spell.Launch() to spell my casts. Can somebody help me?
-
@Droidz i don't find no memory leak in my fightclass. I have no idea why WRobot more and more memory consume. I try to write you a personal message but i can't append a file in this dialog.
-
@Droidz. Yes you have right i have i memory leak. I have no idea where but this ticket can be closed till i find this problem in my fightclass
-
Hello Druidz, i have a fight class when i start wrobot then all is allright. After several minutes fight goes on without any problems but log hangs. I would append my fightclass but later when it's perfect i would sell this. Can i transmit my fightclass only to you? Regards
-
Hello, i append my testclass. I want that my char stop complete but my char allways move. Why? while (_isLaunched) { if (!Products.InPause) { Logging.WriteFight("Date: " + DateTime.Now ); MovementManager.StopMoveTo(true, 500); Thread.Sleep(1000); } } Test.cs
-
Anydesk ist the Best for playing games. Anydesk is awesome
-
My FightClass ist atm not perfect. Often i am in Cat or Bear Form or i have no water in my bag then WRobot will regen. But i want always when my Char is in normal Form and Manapercentage < 40 and Outfight then my char regs water.
-
@Druidz you can close this Bugreport. Now i found the solution. Thanks
-
I script in my Fightclass, when i breath WRobot klick space. Since i change this, i have no problem but i think also other member from WRobot have this problem....
-
Hi Droidz, thanks for your quick response. I play with 1.12.1. I have non Addon activated.
-
I set in advanced options under Looting an d Farming options -> Don't harvest objects : Thick-shelled Clam 5524 But Snapjaw on Lodamere Lake WRobot harvest this Item.
-
I think this happens only infight. Outfight i think its allright
-
I died because no breath in water. Char was very close under water surface
-
I want to drink water in my c# Code: internal void drinkwater () { { Logging.WriteFight("Drink Water Start"); Logging.WriteFight("drink water " + water ); wManager.Wow.Helpers.ItemsManager.UseItem(1708); // Nectar Thread.Sleep(10000000); Fight.StopFight(); MovementManager.StopMoveTo(true, 10000); Fight.StartFight(); Logging.WriteFight("Drink Water End"); } } but my char move direct after drink. I think this is ab bug.
-
I want that my char regs with water. Yes i know the setting in wrobot but i want that my char only under circumstances that reg mana. Now my little script: internal bool drinkwater () { if (!ObjectManager.Me.InCombatFlagOnly && ObjectManager.Me.ManaPercentage <= drinkwateronManapercent ) { Logging.WriteFight("drink water " + water ); Fight.StopFight(); wManager.Wow.Helpers.ItemsManager.UseItem("Sweet Nectar"); // Nectar while (!ObjectManager.Me.InCombatFlagOnly && ObjectManager.Me.ManaPercentage < 100 && ObjectManager.Me.IsSitting) { Thread.Sleep(pause); } Fight.StartFight(); return true; } return false; } What is my mistake?
-
@Droidz in Settings what do you mean "When death since more"?
-
@Droidz thanks for very quick response. I test this plugin
-
Hello, I have a grinder profile. The path follows near coast but WRobot leaves the path into water and attack mobs in water. Now my char can't drink. I want a profile, where my char strict follows the path or don't go into water. Regards
-