Everything posted by Droidz
-
Stop quest turn in and inject my own code?
WRobot use lua to turnin quest. You can try code like: ulong lastTarget = 0; wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (lastTarget == target) return; var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.Unit) { var unit = new WoWUnit(o.GetBaseAddress); if (unit.IsValid && unit.NpcMarker == NpcMarker.YellowQuestion) { lastTarget = target; Interact.InteractGameObject(target); // your turnin code here } } } catch { } }; } or ulong lastTarget = 0; wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (lastTarget == target) return; if (!Logging.Status.StartsWith("Quester > TurnIn")) return; var o = ObjectManager.GetObjectByGuid(target); if (o.IsValid && o.Type == WoWObjectType.Unit) { var unit = new WoWUnit(o.GetBaseAddress); if (unit.IsValid) { lastTarget = target; cancelable.Cancel = true; Interact.InteractGameObject(target); // your turnin code here } } } catch { } };
-
Stop quest turn in and inject my own code?
Hello, try to use ingame lua event like: f = CreateFrame('Frame') f:RegisterAllEvents() f:SetScript('OnEvent', function() if event and tostring(event) == 'QUEST_COMPLETE' then QuestRewardItem{index}:Click(); QuestFrameCompleteQuestButton:Click(); end end ) (use random name for "f" and "'Frame'")
- Sell BUG
-
Ajouter condition aux maccros
Bonjour, lancer le macro tout les X secondes, ca ne devrai pas poser de problème. Si vous avez un message d'erreur vous pouvez toujours ajouter la condition dans le macro if (IsInGroup(LE_PARTY_CATEGORY_HOME) or IsInGroup(LE_PARTY_CATEGORY_INSTANCE)) then ACCEPTINVIT... else QUEUE... end
-
Vanilla, Rogue not facing mobs.
Hello, it is strange, you get this problem since your first WRobot usage? Try to reset wow settings and clear wow cache.
-
Archaeologist
Hello, Can you share your FULL log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
-
PressKeybindings bug
Changed Status to Confirmed Changed Version to All
-
Wrobot Problem
- Quest Not Complete
Hello, use action "If" with this code: !Quest.HasQuest(44226) && !Quest.GetQuestCompleted(44226)- target level range
Hello, in your profile you can select min/max target level- Wrobot Problem
Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).- [Question]CustomClass
Hello, if you use dll fightclass you can: var dllFile = System.IO.File.ReadAllBytes("fightclass.dll"); var assembly = System.Reflection.Assembly.Load(dllFile); var obj = assembly.CreateInstance("Main", false); if (obj is ICustomClass instanceFromOtherAssembly) { instanceFromOtherAssembly.Initialize(); } else you need to use CompileAssemblyFromSource- UseItem-and-UseSpell
Hello, wManager.Wow.Helpers.ItemsManager.UseItem(123); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(1234);- Quester - Gatherer (Quest Type) - Interaction Interrupted
Select quest type "UseScriptOn", activate option "Is C# (if unchecked, it is LUA script)" and in script textbox put code like: Thread.Sleep(Usefuls.Latency + 5000); (replace 5000 by wait time) You can also try to increment your min/max latency only for this quest (add 1000 ms)- Check Riding Spell
Hello, this code check riging skill level, yes you can use this code in your fightclass (with "C Sharp Code" condition)- Latest update bug
Hello, you get all this problem in WRobot for vanilla? (or you use others wow versions)?- [Question]CustomClass
Salut, tu peux donner plus de détails sur ce que tu veux faire, j'ai du mal à comprendre- Quester - Gatherer (Quest Type) - Interaction Interrupted
Hello, try to use quest type 'usescripton', you can select select interact distance- Fight.StartFight deadlock?
Hello, can you share info of target with a Polymorph buff (in dev tools with button "memory info", share only target info, check if you haven't info about your character before to post info).- Polymorphed target is wrongfully blacklisted
https://wrobot.eu/bugtracker/fightstartfight-deadlock-r937/- [Fisherbot] Nat Pagle's Extreme Angler FC-5000 not being accepted
- "Creature must be looted first" causing skinning to bug out
Hello, try this plugin https://wrobot.eu/forums/topic/2747-clear-session-blacklist/#comment-12547- Druid goes out of form when gathering
Hello, general settings put druid form in "ground mount name". In product settings activate option ""Use flying mount at all times""- Leave shadowform when dismount
Try this plugin: using System.ComponentModel; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.OthersEvents.OnDismount += delegate(CancelEventArgs cancelable) { wManager.Wow.Helpers.Lua.LuaDoString("CastSpellByName('Shadowform',1)"); }; } public void Dispose() { } public void Settings() { } }- [TBC] WoWItem is missing property MaxDurability
wait next update - Quest Not Complete