Jump to content

camelot10

Elite user
  • Posts

    838
  • Joined

  • Last visited

Everything posted by camelot10

  1. https://mods.curse.com/addons/wow/spellid
  2. wrong quest ID. install any wow addon what show quest id and check with quest in in profile. im pretty sure its different
  3. @Droidz im trying to figure out how i can track quester profile changing void TestProductEvents() { robotManager.Events.ProductEvents.OnDisposeProduct += OnProductDispose; robotManager.Events.ProductEvents.OnProductPauseStarted += OnProductPauseStarted; robotManager.Events.ProductEvents.OnProductLoaded += OnProductLoaded; robotManager.Events.ProductEvents.OnProductStarting += OnProductStarting; robotManager.Events.ProductEvents.OnProductStarted += OnProductStarted; robotManager.Events.ProductEvents.OnProductStopping += OnProductStopping; robotManager.Events.ProductEvents.OnProductStopped += OnProductStopped; robotManager.Events.ProductEvents.OnProductRestarting += OnProductRestarting; robotManager.Products.Products.OnChangedIsAliveProduct += OnChangedIsAliveProduct; robotManager.Products.Products.OnChangedIsStarted += OnChangedIsStarted; robotManager.Products.Products.OnProductNeedSettings += OnProductNeedSettings; } private void OnProductNeedSettings(robotManager.Products.Products.ProductNeedSettingsEventArgs e) { Logging.Write("@@@ TEST OnProductNeedSettings " + e); } private void OnChangedIsStarted(robotManager.Products.Products.IsStartedChangeEventArgs e) { Logging.Write("@@@ TEST OnChangedIsStarted " + e); } private void OnChangedIsAliveProduct(robotManager.Products.Products.IsAliveProductChangeEventArgs e) { Logging.Write("@@@ TEST OnChangedIsAliveProduct " + e); } private void OnProductRestarting(string str) { Logging.Write("@@@ TEST OnProductRestarting " + str); } private void OnProductStopped(string str) { Logging.Write("@@@ TEST OnProductStopped " + str); } private void OnProductStopping(string str) { Logging.Write("@@@ TEST OnProductStopping " + str); } private void OnProductStarted(string str) { Logging.Write("@@@ TEST OnProductStarted " + str); } private void OnProductStarting(string str) { Logging.Write("@@@ TEST OnProductStarting " + str); } void OnProductLoaded(string productName) { Logging.Write("@@@ TEST OnProductLoaded " + productName); } void OnProductDispose(string productName) { Logging.Write("@@@ TEST OnProductDispose " + productName); } void OnProductPauseStarted(string productName) { Logging.Write("@@@ TEST OnProductPauseStarted " + productName); } i got two profiles. first one subscribe on events and load second profile (LoadProfile step in questing order list). second profile is empty with log message i run this code in static class constructor of attached custom script test.cs this gives me log: 02:03:10 - @@@ TEST OnChangedIsAliveProduct robotManager.Products.Products+IsAliveProductChangeEventArgs 02:03:11 - [PathTracer] started 02:03:11 - --- TEST START --- 02:03:11 - --- TEST COMPLETE --- 02:03:11 - [Quester] Started 02:03:13 - === TEST2 START === 02:03:13 - --- TEST 2 DONE --- is there and posibility to track that current quester profile changed? i tryed to check Quester.Bot.QuesterSetting.CurrentSetting.ProfileName but its still same: first profile logicaly, one of this events should fire when other profile loaded, but nothing happened. robotManager.Events.ProductEvents.OnDisposeProduct robotManager.Events.ProductEvents.OnProductRestarting robotManager.Products.Products.OnChangedIsAliveProduct robotManager.Products.Products.OnChangedIsStarted any info or tip how i can track profile change and load?
  4. yes. i will fix this. since release of 7.3 got busy and didnt played on feral. p.s. btw forum have "edit" option, in case if you want to edit or add something
  5. Version 12.14

    679 downloads

    Base on http://www.wowhead.com/shadow-priest-rotation-guide Tryed to cover all spells/talents/artifact powers. Maybe its required a bit of tuning. I will post update after some testing My profiles
  6. [Serializable] public class HunterBeastmasterSettings : Settings { const string FILE_PREFIX = "CustomClass-HunterBeastmaster"; [Setting] [DefaultValue(true)] [Category("Combat Spells - Hunter Abilities")] [DisplayName("Hunter's Mark Disabled")] [Description("Is Hunter's Mark Disabled?")] public bool HuntersMark { get; set; } [Setting] [DefaultValue(true)] [Category("Combat Spells - Hunter Abilities")] [DisplayName("Steady Shot")] [Description("Use Steady Shot")] public bool SteadyShot { get; set; } HunterBeastmasterSettings() { ConfigWinForm(new System.Drawing.Point(400, 400), "HunterBeastmaster " + Translate.Get("Settings")); } public static HunterBeastmasterSettings CurrentSetting { get; set; } public bool Save() { try { CurrentSetting.FetchFromLua(); // LOAD SETTINGS FROM LUA return Save(AdviserFilePathAndName(FILE_PREFIX, ObjectManager.Me.Name + "." + Usefuls.RealmName)); } catch (Exception e) { Logging.WriteError(FILE_PREFIX + " save error: " + e); return false; } } public static bool Load() { try { if (File.Exists(AdviserFilePathAndName(FILE_PREFIX, ObjectManager.Me.Name + "." + Usefuls.RealmName))) { CurrentSetting = Load<HunterBeastmasterSettings>(AdviserFilePathAndName(FILE_PREFIX, ObjectManager.Me.Name + "." + Usefuls.RealmName)); CurrentSetting.PushToLua(); // SETTINGS LOADED, MUST BE TRANSLATED TO LUA return true; } CurrentSetting = new HunterBeastmasterSettings(); } catch (Exception e) { Logging.WriteError(FILE_PREFIX + " load error: " + e); } return false; } void FetchFromLua() { HuntersMark = Lua.LuaDoString<bool>("return HuntersMarkDisabled"); } void PushToLua() { Lua.LuaDoString("HuntersMarkDisabled = " + HuntersMark); } }
  7. oh god. whats your C# knowledge level ?
  8. #if VISUAL_STUDIO using robotManager.Helpful; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using wManager.Wow.Bot.Tasks; using wManager.Wow.Class; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using wManager.Wow.Enums; using System.Configuration; using System.ComponentModel; using System.IO; #endif [Serializable] public class TestSettings : Settings { [Setting] [DefaultValue(true)] [Category("GHOST WOLF SETTINGS")] [DisplayName("Ghost Wolf")] [Description("Use Ghost Wolf")] public bool UGW { get; set; } [Setting] [DefaultValue(4)] [Category("GHOST WOLF SETTINGS")] [DisplayName("Use after X secondes")] [Description("Use Ghost Wolf after X secondes out of combat")] public int TGW { get; set; } public static TestSettings CurrentSetting { get; set; } public TestSettings() { } public bool Save() { try { return Save(AdviserFilePathAndName("CustomClass_Shaman", ObjectManager.Me.Name + "." + Usefuls.RealmName)); } catch (Exception e) { Logging.WriteError("CustomClass_ShamanSettings > Save(): " + e); return false; } } public static bool Load() { try { if (File.Exists(AdviserFilePathAndName("CustomClass_Shaman", ObjectManager.Me.Name + "." + Usefuls.RealmName))) { CurrentSetting = Load<TestSettings>(AdviserFilePathAndName("CustomClass_Shaman", ObjectManager.Me.Name + "." + Usefuls.RealmName)); } else { CurrentSetting = new TestSettings { UGW = true, TGW = 4, }; } CurrentSetting.PushToLua(); return true; } catch (Exception e) { Logging.WriteError("CustomClass_ShamanSettings > Load(): " + e); } return false; } void PushToLua() { UGW = Lua.LuaDoString<bool>("return luaVar"); } void FetchFromLua() { Lua.LuaDoString("UGW = " + UGW); } } quick and dirty example
  9. its a very bad practice to save variables between sessions like "c# -> wrobot -> lua -> wow -> addon -> disk" for wrobot and vice versa to load it. you can load wrobot settings and set lua vars after load for your lua-fightclass. this allow you to skip dependancy from wow addon and store everything you need for fightclass
  10. god, why so agressive? there is a small bits of information on this forum, i just whant to explain you how you can solve 99% of wrobot problems by your own. but lazy and agressive peoples like you, prefer to ask questions whats required a 5 minutes of time and brain working. my second link, first google link lead to there is everything you need for saving and loading data/params between wrobot sessions. second google link gives complete info too. whats wrong with you? if you can't search internet and im trying to help, why you aggroed? since 24 aug, im only one who helping with answers in this topic. sorry if i hurt your feelings in any way. i hope you understand how to search strict string on current site and follow the trail to get answers in 5-10 mins and dont wait 3 weeks for "kind stranger"
  11. now i can be rude, but i must say that: seems like you can't search correctly in the internet, first link in my search have partial code of robotManager.Helpful.Settings and lead to http://lmgtfy.com/?q=site%3Awrobot.eu+"AdviserFilePathAndName"
  12. im not rude. i prefer to learn fly other peoples, not to carry them by myself at all time. maybe my english no so good. sorry ps. i put correct link above.
  13. lemme give you world most superior advice at all time. "use search, young padawan" here is quick jedi trick http://lmgtfy.com/?q=site%3Awrobot.eu+"robotManager.Helpful.Settings"
  14. then make your own settings and save to file robotManager.Helpful.Settings
  15. Var.SetVar Var.GetVar its a internal wrobot dictionary, no relation to toc or blizzard. its used as wrobot cache, you can save, modify and delete this variables while wrobot run. if wrobot closed -> all var data lost/cleared. OR when wrobot starts, its create this cache/dictionary from scratch. dunno what variable you talking about
  16. ================================== PLAYER INFO: ================================== Name = MeCreatureTrack = None MeObjectTrack = 538968064 IsCast = False GetDurabilityPercent = 92,60273972603 Experience = 0 ExperienceMax = 717000 LevelDecimal = 110 PositionCorpse = 0 ; 0 ; 0 ; "None" IsDead = False IsDeadMe = False InCombat = False InvSlots = System.Collections.Generic.List`1[MemoryRobot.Int128] BagSlotFlags = System.Int32[] IsMounted = False Runes = 0 MapPositionLua = System.String[] GetMoneyCopper = 1289354286 Gender = Female GetHonorPoint = 0 GetConquestPoint = 0 GetApexisCrystalPoint = 1235 PlayerUsingVehicle = False IsInPetBattle = False IsPartyMember = False IsInParty = False IsInGroup = False GlobalCooldownEnabled = False GlobalCooldownTimeLeft = 0 GetSpecialization = Warlock_Affliction BreathTimerLeft = 0 BreathActive = False FatigueTimerLeft = 0 FatigueActive = False HasNewMail = False HasFocus = False FocusGuid = 00000000000000000000000000000000 FocusObj = (Object) : 0x00000000 : 00000000000000000000000000000000 : Null-0-0-0-0-0-0000000000 WowRace = BloodElf PlayerFaction = Horde IsHorde = True IsAlliance = False IsNeutral = False PlayerRace = BloodElf PlayerRaceString = Blood Elf BarTwo = 1100000 BarTwoMax = 1100000 BarTwoPercentage = 100 ComboPoint = 0 GetEquipedItem = 128942 GetUnitDynamicFlags = None WowClass = Warlock IsLocalPlayer = True Position = 476,0776 ; 1451,333 ; 757,4512 ; "None" PositionWithoutType = 476,0776 ; 1451,333 ; 757,4512 ; "None" PositionRelativeWithoutType = 476,0776 ; 1451,333 ; 757,4512 ; "None" Health = 3800100 MaxHealth = 3800100 MyCharacterInFrontHim = False HealthPercent = 100 HealthRatio = 1 IsGoodInteractDistance = True InteractDistance = 4,5 CombatReach = 1,5 IsSwimming = False IsFlying = False IsMovingForward = False IsMovingBackwards = False IsStrafingLeft = False IsStrafingRight = False IsTurningLeft = False IsTurningRight = False IsStunned = False IsFalling = False IsFallingFar = False AggroDistance = 0 Rotation = 3,232854 CreatureTypeTarget = FactionTemplate = wManager.Wow.Helpers.WoWFactionTemplate Mana = 1100000 MaxMana = 1100000 ManaPercentage = 100 Rage = 0 MaxRage = 0 RagePercentage = 0 Fury = 0 MaxFury = 0 FuryPercentage = 0 Pain = 0 MaxPain = 0 PainPercentage = 0 Focus = 0 MaxFocus = 0 FocusPercentage = 0 Energy = 0 MaxEnergy = 0 EnergyPercentage = 0 Chi = 0 MaxChi = 0 ChiPercentage = 0 MaxRunes = 6 RunesPercentage = 0 RunicPower = 0 MaxRunicPower = 0 RunicPowerPercentage = 0 SoulShards = 30 MaxSoulShards = 50 SoulShardsPercentage = 60 AstralPower = 0 MaxAstralPower = 0 AstralPowerPercentage = 0 UnitClassification = normal IsElite = False IsWorldBoss = False HolyPower = 0 MaxHolyPower = 0 HolyPowerPercentage = 0 Alternate = 0 MaxAlternate = 0 AlternatePercentage = 0 Maelstrom = 0 MaxMaelstrom = 0 MaelstromPercentage = 0 Insanity = 0 MaxInsanity = 0 InsanityPercentage = 0 ArcaneCharges = 0 MaxArcaneCharges = 0 ArcaneChargesPercentage = 0 Faction = 1610 DisplayId = 15475 GetMove = False SpeedMoving = 0 GetDistance = 0 GetDistance2D = 0 GetDistanceZ = 0 IsAlive = True IsLootable = False IsMyPet = False HasTarget = False IsTargetingMe = False IsTargetingMyPet = False IsTargetingPartyMember = False IsTargetingMeOrMyPet = False IsTargetingMeOrMyPetOrPartyMember = False IsMyTarget = False IsMyPetTarget = False IsPartyMemberTarget = False IsMeOrMyPetTarget = False IsMeOrMyPetOrPartyMemberTarget = False Target = 00000000000000000000000000000000 TargetObject = (Object) : 0x00000000 : 00000000000000000000000000000000 : Null-0-0-0-0-0-0000000000 Level = 110 EffectiveLevel = 0 IsBoss = False PetNumber = 0 DBCacheRow = 0 UnitFlags = PlayerControlled UnitNPCFlags = None Skinnable = False IsNpcSpiritHealer = False IsNpcRepair = False IsNpcVendor = False IsFlightMaster = False IsNpcInnkeeper = False IsNpcVendorFood = False IsAuctioneer = False IsNpcTrainer = False IsNpcWildPets = False Summon = 00573902022B0BF5283AF4D0A04C6240 CreatedBy = 00000000000000000000000000000000 CreatedBySpell = 0 SummonedBy = 00000000000000000000000000000000 IsPet = False PetOwnerGuid = 00000000000000000000000000000000 InCombatFlagOnly = False InCombatWithMe = False CastingSpellId = 0 CastingSpell = (Id found: 0, Name found: , NameInGame found: , Know = False, IsSpellUsable = False) CastingTimeLeft = 0 CastingTimeStartSince = 0 CanInterruptCasting = False MountDisplayId = 0 TransportGuid = 00000000000000000000000000000000 InTransport = False Reaction = Friendly IsTracked = False IsOnTaxi = False NotSelectable = False IsAttackable = False PlayerControlled = True Silenced = False Rooted = False Root = False Influenced = False Confused = False Pacified = False Fleeing = False Possessed = False NpcMarkerId = 0 NpcMarker = None IsOutdoors = False IsIndoors = True IsPartyLeader = False GetBaseAddress = 1828093976 IsValid = True GetDescriptorStartAddress = 1828112776 Guid = 00000000097359320819100000000000 Guid128 = Player-1604-09735932 Type = Player GetDynamicFlags = 0 IsInvisible = False Entry = 0 Scale = 1 RuneIsReady(1) = False RuneIsReady(2) = False RuneIsReady(3) = False RuneIsReady(4) = False RuneIsReady(5) = False RuneIsReady(6) = False Skill.GetValue(SkillLine.Herbalism)/Skill.GetMaxValue(SkillLine.Herbalism) = 0/0 Skill.GetValue(SkillLine.Mining)/Skill.GetMaxValue(SkillLine.Mining) = 0/0 BuffStack("Ghost") = 0 HaveBuff("Ghost") = False BuffCastedBy("Ghost") = 00000000000000000000000000000000 Auras: - Warlock: ID=157902, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=184549376 - Mana Divining Stone: ID=227723, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=Passive, Active, Harmful, BasePoints, CasterLevel=110, Mask=50332075 - Soul Leech: ID=108366, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=184549376 - Zone Support - All Zones / Building Activation Manager: ID=255686, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=50331648 - Sign of the Skirmisher: ID=186401, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=50331648 - [DND] Cleanup: ID=252318, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=50331648 - Xavaric's Magnum Opus: ID=207472, Stack=0, TimeLeft=7207 ms, Owner=00000000097359320819100000000000, Flag=Passive, Active, PlayerCasted, Harmful, Duration, BasePoints, CasterLevel=202, Mask=218104186 - Soul Shard: ID=104756, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=50331648 - Override Command Demon: ID=119904, Stack=0, TimeLeft=0 ms, Owner=00573902022B0BF5283AF4D0A04C6240, Flag=None, CasterLevel=110, Mask=134217728 - Mount Up: ID=78633, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=0, Mask=16777216 - Hasty Hearth: ID=83944, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=0, Mask=150994944 - The Quick and the Dead: ID=83950, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=0, Mask=16777216 - Guild Mail: ID=83951, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=0, Mask=16777216 - Player Damage Reduction Level 100: ID=178840, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Player Damage Reduction Level 95: ID=178839, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Player Damage Reduction Level 90: ID=142689, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Fel Focus: ID=242551, Stack=0, TimeLeft=1352654 ms, Owner=00000000097359320819100000000000, Flag=Passive, Cancelable, Harmful, Negative, CasterLevel=110, Mask=117440975 - Player Damage Reduction: ID=115043, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Mastery: ID=114585, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Arcane Acuity: ID=154742, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Arcane Affinity: ID=28877, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Arcane Resistance: ID=822, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Track Archaeology Chests: ID=74268, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=26, Mask=16777216 - Survey Mastery: ID=92806, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=26, Mask=16777216 - Soul Shards: ID=246985, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Soul Shards: ID=117198, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=150994944 - : ID=231018, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=0 - : ID=226178, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=0 - Soul Leech: ID=108370, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Warlock: ID=157903, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Warlock: ID=137042, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Control Demon: ID=93375, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - : ID=114190, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=0 - Stonehide Leather: ID=194161, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=160, Mask=16777216 - Stormscale: ID=194165, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=160, Mask=16777216 - Felhide: ID=194167, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=160, Mask=16777216 - Unbroken Tooth: ID=194170, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=160, Mask=16777216 - Unbroken Claw: ID=194171, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=160, Mask=16777216 - Legion Butchery: ID=194173, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=160, Mask=16777216 - Cloth Scavenging: ID=59390, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=72, Mask=16777216 - Treat Fever: ID=211353, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=32, Mask=16777216 - Mastery: Potent Afflictions: ID=77215, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Affliction Warlock: ID=137043, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Stat Negation Aura - Intellect DPS: ID=162699, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Unstable Affliction: ID=231791, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Shadow Bite: ID=231799, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Agony: ID=231792, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Soulstone: ID=231811, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Absolute Corruption: ID=196103, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Demon Skin: ID=219272, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=150994944 - Writhe in Agony: ID=196102, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Soul Conduit: ID=215941, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Grimoire of Supremacy: ID=152107, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=150994944 - Soul Shard: ID=104759, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=50331648 - : ID=222892, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=0 - Combat Ally Suppression: ID=221782, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=Passive, Cancelable, Negative, CasterLevel=110, Mask=50332058 - Boon of the Zookeeper: ID=235795, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=132, Mask=16777216 - Sacrolash's Dark Strike: ID=207952, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=202, Mask=16777216 - 7.0 Artifacts - All Weapons - General Weapon Equipped Passive (CSA): ID=197886, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Souls of the Damned: ID=216724, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Souls of the Damned: ID=216722, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Dummy Tooltip and General Passive: ID=214867, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Crystalline Shadows: ID=221862, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Inherently Unstable: ID=199152, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Seeds of Doom: ID=199153, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Inimitable Agony: ID=199111, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Shadows of the Flesh: ID=199212, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Harvester of Souls: ID=201424, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Compounding Horror: ID=199282, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Long Dark Night of the Soul: ID=199214, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Soul Flame: ID=199471, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Shadowy Incantations: ID=199163, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Hideous Corruption: ID=199112, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Wrath of Consumption: ID=199472, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Perdition: ID=199158, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Sweet Souls: ID=199220, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Drained to a Husk: ID=199120, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Fatal Echoes: ID=199257, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Soulstealer: ID=214934, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Degradation of the Black Harvest: ID=241257, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=150994944 - Winnowing: ID=238072, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Sinister Seeds: ID=238108, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Rend Soul: ID=238144, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 - Concordance of the Legionfall: ID=239042, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=150994944 - Nethermancy: ID=86091, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=110, Mask=16777216 - Xavaric's Magnum Opus: ID=207428, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=202, Mask=16777216 - Surge of Dominance: ID=190030, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=122, Mask=150994944 - Artificial Stamina: ID=211309, Stack=0, TimeLeft=0 ms, Owner=00000000097359320819100000000000, Flag=None, CasterLevel=138, Mask=16777216 ================================== TARGET INFO: ================================== Target no valid. ================================== PET INFO: ================================== GetUnitDynamicFlags = None WowClass = Warrior IsLocalPlayer = False Position = 477,0331 ; 1448,603 ; 757,4513 ; "None" PositionWithoutType = 477,0331 ; 1448,603 ; 757,4513 ; "None" PositionRelativeWithoutType = 477,0331 ; 1448,603 ; 757,4513 ; "None" Health = 1900050 MaxHealth = 1900050 MyCharacterInFrontHim = False HealthPercent = 100 HealthRatio = 1 IsGoodInteractDistance = True InteractDistance = 4,5 CombatReach = 1,2 IsSwimming = False IsFlying = False IsMovingForward = False IsMovingBackwards = False IsStrafingLeft = False IsStrafingRight = False IsTurningLeft = False IsTurningRight = False IsStunned = False IsFalling = False IsFallingFar = False AggroDistance = 0 Rotation = 2,644039 CreatureTypeTarget = FactionTemplate = wManager.Wow.Helpers.WoWFactionTemplate Mana = 0 MaxMana = 0 ManaPercentage = 100 Rage = 0 MaxRage = 0 RagePercentage = 0 Fury = 0 MaxFury = 0 FuryPercentage = 0 Pain = 0 MaxPain = 0 PainPercentage = 0 Focus = 0 MaxFocus = 0 FocusPercentage = 0 Energy = 0 MaxEnergy = 0 EnergyPercentage = 0 Chi = 0 MaxChi = 0 ChiPercentage = 0 Runes = 0 MaxRunes = 6 RunesPercentage = 0 RunicPower = 0 MaxRunicPower = 0 RunicPowerPercentage = 0 SoulShards = 0 MaxSoulShards = 0 SoulShardsPercentage = 0 AstralPower = 0 MaxAstralPower = 0 AstralPowerPercentage = 0 UnitClassification = normal IsElite = False IsWorldBoss = False HolyPower = 0 MaxHolyPower = 0 HolyPowerPercentage = 0 Alternate = 0 MaxAlternate = 0 AlternatePercentage = 0 Maelstrom = 0 MaxMaelstrom = 0 MaelstromPercentage = 0 Insanity = 0 MaxInsanity = 0 InsanityPercentage = 0 ArcaneCharges = 0 MaxArcaneCharges = 0 ArcaneChargesPercentage = 0 Faction = 1610 DisplayId = 72978 GetMove = False SpeedMoving = 0 GetDistance = 2,892482 GetDistance2D = 2,892482 GetDistanceZ = 6,103516E-05 IsAlive = True IsDead = False IsLootable = False IsMyPet = True HasTarget = False IsTargetingMe = False IsTargetingMyPet = False IsTargetingPartyMember = False IsTargetingMeOrMyPet = False IsTargetingMeOrMyPetOrPartyMember = False IsMyTarget = False IsMyPetTarget = False IsPartyMemberTarget = False IsMeOrMyPetTarget = False IsMeOrMyPetOrPartyMemberTarget = False Target = 00000000000000000000000000000000 TargetObject = (Object) : 0x00000000 : 00000000000000000000000000000000 : Null-0-0-0-0-0-0000000000 Level = 110 EffectiveLevel = 0 IsBoss = False PetNumber = 36375541 Name = Инфернал DBCacheRow = 248610444 UnitFlags = PlayerControlled, _Flag_15_0x8000 UnitNPCFlags = None Skinnable = False IsNpcSpiritHealer = False IsNpcRepair = False IsNpcVendor = False IsFlightMaster = False IsNpcInnkeeper = False IsNpcVendorFood = False IsAuctioneer = False IsNpcTrainer = False IsNpcWildPets = False Summon = 00000000000000000000000000000000 CreatedBy = 00000000097359320819100000000000 CreatedBySpell = 0 SummonedBy = 00000000097359320819100000000000 IsPet = True PetOwnerGuid = 00000000097359320819100000000000 InCombat = False InCombatFlagOnly = False InCombatWithMe = False CastingSpellId = 0 CastingSpell = (Id found: 0, Name found: , NameInGame found: , Know = False, IsSpellUsable = False) CastingTimeLeft = 0 CastingTimeStartSince = 0 IsCast = False CanInterruptCasting = False IsMounted = False MountDisplayId = 0 TransportGuid = 00000000000000000000000000000000 InTransport = False Reaction = Friendly IsTracked = False IsOnTaxi = False NotSelectable = False IsAttackable = False PlayerControlled = True Silenced = False Rooted = False Root = False Influenced = False Confused = False Pacified = False Fleeing = False Possessed = False NpcMarkerId = 0 NpcMarker = None IsOutdoors = False IsIndoors = True IsPartyMember = False IsPartyLeader = False GetBaseAddress = 2198289124 IsValid = True GetDescriptorStartAddress = 2198296956 Guid = 00573902022B0BF5283AF4D0A04C6240 Guid128 = Pet-0-3773-1669-22329-78217-02022B0BF5 Type = Unit GetDynamicFlags = 0 IsInvisible = False Entry = 78217 Scale = 1 BuffStack("Ghost") = 0 HaveBuff("Ghost") = False BuffCastedBy("Ghost") = 00000000000000000000000000000000 ================================== NEAR GAMEOBJECT INFO: ================================== CreatedBy = 00000000000000000000000000000000 DisplayId = 43921 FlagsInt = 262144 Flags = Flag_0x40000 Position = 458,8663 ; 1449,947 ; 741,229 ; "None" Name = Ядро матрицы "Виндикара" GetDistance = 23,69194 GetDistance2D = 17,26694 ParentRotation = 0 Data0 = 93 Data1 = 0 Data8 = 0 GOType = Goober IsMailbox = False LockEntry = 93 CanOpen = False SkillLineRequired = None IsOutdoors = False IsIndoors = True Matrix = [[M11:-1,413884 M12:-0,6743962 M13:0 M14:0] [M21:0,6743962 M22:-1,413884 M23:0 M24:0] [M31:0 M32:0 M33:1,566486 M34:0] [M41:458,8663 M42:1449,947 M43:741,229 M44:1]] IsMDXCollidable = True GetBaseAddress = 2196290360 IsValid = True GetDescriptorStartAddress = 2196291120 Guid = 00573900003114112C3AF4D0A10AE300 Guid128 = GameObject-0-3773-1669-22329-11148-0000311411 Type = GameObject GetDynamicFlags = -65024 IsInvisible = False Entry = 273292 Scale = 1,566486 Rotation() = 3,586657 ================================== RANDOM ITEM INFO: ================================== Name = Слеза Элуны GetItemInfo = wManager.Wow.Class.ItemInfo StackCount = 1 Durability = 0 MaxDurability = 0 Owner = 00000000097359320819100000000000 ContainedIn = 00000000097359320819100000000000 DynamicFlags = 196609 InBag = True IsEquippableItem = True GetBaseAddress = 1588465380 IsValid = True GetDescriptorStartAddress = 1588466764 Guid = 4000000788E9BB640C19100000000000 Guid128 = Item-0-1604-0-0-0-0788E9BB64 Type = Item GetDynamicFlags = 0 IsInvisible = False Entry = 141351 Scale = 1 Position = 0 ; 0 ; 0 ; "None" GetDistance = 0 ItemEquipLoc = ItemLevel = 1 ItemLink = |cffffffff|Hitem:141351::::::::110:265::::::|h[Слеза Элуны]|h|r ItemMinLevel = 1 ItemName = Слеза Элуны ItemRarity = 1 ItemSellPrice = 0 ItemStackCount = 50 ItemSubType = Задания ItemTexture = 629525 ItemType = Задание ================================== BAG INFO: ================================== GetBagItem() = Слеза Элуны : 141351, Шал'дорайский шелк : 124437, Восстановленный артефакт : 87399, Кровь Саргераса : 124124, Скипетр Саргераса : 128941, Череп Ман'ари : 128943, Удочка Темносвета : 133755, Мастерский жнец : 151821, Предвидение Норганнона : 132455, Оковы бессонницы Стретена : 132381, Столпы Темного портала : 132357, Укрывающий плащ : 147556, Фиал зрения : 147555, Реликвия демонического влияния : 147561, Комплект несокрушимых доспехов : 147350, Фиал бесконечного дыхания : 140583, Эликсир могучей концентрации : 140573, Реликвия Совета Мрачной Жатвы : 139858, Зелье Тритона : 139812, Рецепт: жаркое по... : 141011, Камень здоровья : 5512, Счастливая безделушка : 139801, Маяк власти "Церберакса" : 146903, Бинты для боевых питомцев : 86143, Малое лакомство для питомца : 98112, Реликвия безудержного счастья : 139808, Волшебное лакомство : 89906, Жутковатые останки : 138441, Оберег для питомца : 116415, Камень возвращения : 6948, Камень возвращения в Даларан : 140192, Камень возвращения в гарнизон : 110560, Свисток распорядителя полетов : 141605, Камень поиска маны : 141652, Смертоносная железная ловушка : 115010, Переналаженный концентратор Скверны : 147707 GetContainerNumFreeSlots = 67 GetContainerNumFreeSlotsNormalType = 67 GetContainerNumFreeSlotsHerbBags = 999 GetContainerNumFreeSlotsMiningBags = 999 ================================== BATTLEGROUNDER INFO: ================================== IsInBattleground() = False GetCurrentBattleground() = None BattlegroundIsStarted() = True IsFinishBattleGround() = False ================================== CTM INFO: ================================== GetClickToMovePosition() = 503,625 ; 1478,715 ; 765,7975 ; "None" GetClickToMoveTypePush() = None ================================== PARTY INFO: ================================== Party.IsInGroup() = False Party.IsInGroupHome() = False Party.IsInGroupInstance() = False Party.CurrentPlayerIsLeader() = False Party.GetPartyNumberPlayers(PartyCategoryType.LE_PARTY_CATEGORY_HOME) = 0 Party.GetPartyNumberPlayers(PartyCategoryType.LE_PARTY_CATEGORY_INSTANCE) = 0 Party.GetPartyGUIDHomeAndInstance() = ================================== FIGHTCLASS INFO: ================================== IsAliveCustomClass = True GetRange = 38 ================================== COMBAT INFO: ================================== InCombat = False GetNumberAttackPlayer() = 0 GetUnitAttackPlayer() = ================================== EQUIPED ITEMS INFO: ================================== GetEquippedItems() = Клобук озлобленного гладиатора из ткани Скверны : 145595, Придаз, величайшее творение Ксаварика : 132444, Нарамник озлобленного гладиатора из ткани Скверны : 145601, Одеяния расколотого духовенства : 146880, Шнурованный ремень озлобленного гладиатора из ткани Скверны : 145603, Поножи отголосков бедствия : 147732, Туфли жуткого плетения : 146790, Опаленные тайной магией кулачные обмотки : 134354, Боевые рукавицы озлобленного гладиатора из ткани Скверны : 145593, Кольцо злонравного инквизитора : 146858, Темный удар Сакролаш : 132378, Талисман из отбеленного черепа : 134204, Знак господства озлобленного гладиатора : 145583, Плащ озлобленного гладиатора из ткани Скверны : 145397, Ултхалеш, Жнец Мертвого Ветра : 128942 ================================== USERFULS INFO: ================================== LastHardwareAction = 325078496 InGame = True IsLoadingOrConnecting = False IsFlyableArea = False Latency = 202 LatencyReal = 202 RealmName = XXX MapZoneName = Крокуун SubMapZoneName = "Виндикар" ContinentNameMpq = Argus 1 ContinentId = 1669 AreaId = 8574 WowVersion = 24970 GetGarrisonLevel = 3 Usefuls.FrameTime_GetCurTimeMs() = 325079908 Usefuls.WowAddon() = ACP, AdvancedInterfaceOptions, AlreadyKnown, Altoholic, ArtifactPathFinder, ArtifactTab, BindsWhen, !BugGrabber, BugSack, BuyEmAll, DataStore, DataStore_Achievements, DataStore_Agenda, DataStore_Auctions, DataStore_Characters, DataStore_Containers, DataStore_Crafts, DataStore_Currencies, DataStore_Garrisons, DataStore_Inventory, DataStore_Mails, DataStore_Pets, DataStore_Quests, DataStore_Reputations, DataStore_Spells, DataStore_Stats, DataStore_Talents, HiddenArtifactTracker, idTip, ItemLevelDisplay, ILD-Blizzard, Leatrix_Plus, LucidNightmareHelper, MaxDps, MBB, NOP, Paste, Postal, Prat-3.0, Prat-3.0_Libraries, SavedInstances, Scrap, Scrap_Spotlight, ServerHop, ssr, TheUndermineJournal, TinyPad, TomTom, WorldQuestGroupFinder, WorldQuestTracker, GSE, ================================== Execute time: 500 ================================== log part [N] 19:21:55 - [Path-Finding] FindPath from 380,1267 ; 1412,637 ; 769,5507 ; "None" to 503,625 ; 1478,715 ; 765,7976 ; "None" (Argus 1) [N] 19:21:55 - [Path-Finding] Cannot find path: 380,1267 ; 1412,637 ; 769,5507 ; "None" (Argus 1_29,35131_31,28726) to 503,625 ; 1478,715 ; 765,7976 ; "None" (Argus 1_29,22741_31,0557) [N] 19:21:55 - [Path-Finding] Path Count: 1 (0y) tryed to add offmesh connection - but this not help. still same
  17. Conditions.ForceIgnoreIsAttacked = true;
  18. running whole night world quests with new dll on arms warrior and affliction warlocks, dont get anything unusal, works fine.
  19. yes. its working now. attacked that mob from range and melee. tested with frost mage and vengeance demon hunter. can record video if you wish. also i can run for some time my world quests with that dll and i will report
  20. here you go: 20:22:19 - t = Аггонар (Unit) : 0x60EA9AEC : 00261B00002FF669203AE8D0A0749940 : Creature-0-3770-1669-9755-119397-00002FF669 20:22:19 - r1 = True 20:22:19 - r2 = True 20:22:19 - r3 = True 20:22:19 - r4 = True 20:22:19 - r5 = True 20:22:20 - r6 = False 20:22:20 - r7 = False 20:22:20 - r8 = False 20:22:20 - r9 = False 20:22:20 - r10 = False 20:22:20 - r11 = False 20:22:20 - r12 = False was standing right in front on mob and hiting with autoattack
×
×
  • Create New...