Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Add "!" before "wManager.Wow.Helpers.Lua.LuaDoString<bool>..."
  2. Hello, check if this problem is not caused by your wrobot plugins/wow addons. You can also try to use WRobot plugin like using System.Threading; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { EventsLua.AttachEventLua(LuaEventsId.PARTY_INVITE_REQUEST, OnInviteRequest); } public void Dispose() { } public void Settings() { } void OnInviteRequest(object context) { try { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { Lua.LuaDoString("DeclineGroup();"); Thread.Sleep(Usefuls.Latency + 50); Lua.LuaDoString("StaticPopup_Hide('PARTY_INVITE');"); // Lua.LuaDoString("LeaveParty();"); } } catch { } } } to decline group invitation
  3. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  4. Hello, use plugin like: using System.Threading; using robotManager.FiniteStateMachine; using robotManager.Helpful; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnAfterRunState += delegate(Engine engine, State state) { try { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && !Conditions.IsAttackedAndCannotIgnore && state.DisplayName == "Looting") { Thread.Sleep(Others.Random(1000, 5000)); } } catch {} }; } public void Dispose() { } public void Settings() { } } RandomWaitAfterLoot.cs
  5. Hello, your code seem good, if it is one zone profile it is more easy to create grinder/gatherer profile with https://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/
  6. I don't get this problem, and I cannot fix that (it is wow bug)
  7. Hello, in iscompletequest check player position with code like return (wManager.Wow.ObjectManager.ObjectManager.Me.Position.DistanceTo2D(new robotManager.Helpful.Vector3(1, 2, 3)) < 50); (replace 1, 2, 3 by the turnin position)
  8. You can also try to put low value at "wManagerSetting.CurrentSetting.FoodMaxPercent" and disable "wManagerSetting.CurrentSetting.RestingMana"
  9. Hello, no feature for that, the only way is to pause bot (and unpause when wrobot leave regen state)(or restart product)
  10. Hello, in advanced general settings try to activate the option "Try to detect evading mob..."
  11. Hello, this feature works (tested now). Try to disable your antivirus (or clear wow cache)
  12. Hello, do you have "EndWhile" step? And are your sure that it is not "(ObjectManager.Me.Position.DistanceTo2D(new Vector3(-14470.6f, 468.559f, -30.71972f)) > 10)" EDIT: In "while" step you need to put position where the portal teleport your character (not the portal position)
  13. In "EndIf" step you don't need to put code. In "If" step start your code by: ! ( https://docs.microsoft.com/fr-fr/dotnet/csharp/language-reference/operators/logical-negation-operator )
  14. Thread t = new Thread(() => { uint spellId = 248292; int questId = 47992; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { wManager.Wow.Helpers.ClickOnTerrain.Spell(spellId, ObjectManager.Target.Position, true, false); wManager.Wow.Helpers.ClickOnTerrain.Pulse(ObjectManager.Target.Position); } } Thread.Sleep(700); } }); t.Start();
  15. Hello, to remove this file: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?do=findComment&comment=33664 And WRobot do this for the security of your Wow account
  16. And this don't resolve problem https://wrobot.eu/forums/topic/2811-bg-join/?do=findComment&comment=35965 ?
  17. In quest order use step type "If" (don't forget to add step "EndIf", pulse your quest beetween "if" end "endif") with c# code: wManager.Wow.Helpers.Lua.LuaDoString<bool>(@" local achievementID = 10665; local indexCriteria = 1; local id, name, points, completedA, month, day, year, description, flagsA, icon, rewardText, isGuild, wasEarnedByMe, earnedBy = GetAchievementInfo(achievementID); if completedA then return completedA end local criteriaString, criteriaType, completed, quantity, reqQuantity, charName, flags, assetID, quantityString, criteriaID, eligible = GetAchievementCriteriaInfo(achievementID, indexCriteria); return completed;") line 3, replace 1 by criteria id, list of id (of Explore Azsuna): 1 - Faronaar 2 - Felblaze Ingress 3 - The Greenway 4 - Isle of the Watchers 5 - Llothien Highlands 6 - Lost Orchard 7 - Nar'thalas 8 - Oceanus Cove 9 - Ruined Sanctum 10 - Temple of Lights 11 - Ley-Ruins of Zarkhenar
  18. Hello, check with quester profile editor if you profile don't limit level (you can config profile to skip quests if your character level is to hight)
  19. try this plugin Auto Accept BG.cs
  20. Droidz

    WOW 32bit

    Je ne connais pas les raisons pour lesquels bliz a retirer cette option, mais je pense que les bots/cheats sont en causes.
  21. Droidz

    WOW 32bit

    Bonjour https://wrobot.eu/forums/topic/7716-how-to-starting-wow-in-32-bit/
  22. Wath is button name to join bg ? https://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447
×
×
  • Create New...