Jump to content

Droidz

Administrators
  • Posts

    12449
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, if you want to solve this problem quickly it is better to send me a private message (I need to change your subscription type manually).
  2. Hello, check also if you have installed required software (mainly SlimDX, open file 'Readme.txt' in WRobot folder)
  3. Hello, click on button "_" (top/right) to put relogger window in taskbar.
  4. Hello, you can buy subscription at this url https://wrobot.eu/store/category/2-wrobot/
  5. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  6. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  7. Pouvez vous partager le fichier xml de la fightclass uniquement avec ce code
  8. Utilise du code C# var sortPrincipal = new Spell("SpellNameInEnglish"); new Spell("SpellNameInEnglish").Launch(true, false); Thread.Sleep(1000 + Usefuls.Latency); while (Conditions.InGameAndConnected && ObjectManager.Me.IsCast) { if (sortPrincipal.IsSpellUsable) { Lua.LuaDoString("SpellStopCasting();"); sortPrincipal.Launch(true, true, true); } } (pas testé) Tu dois configurer manuellement les options du sort (distance, ...)
  9. Bonjour, Vous avez l'option spell "Wait during casting", désactivée la.
  10. Hello, you can add NPC trainer to your NPCDB (or in your profile). If you want do it manually, you need to use quest type "InteractWith" with custom condition (but you must have knowledge of C # and WRobot API).
  11. Hello, Lua.LuaDoString("local name,texture,offset,numSpells = GetSpellTabInfo(3); CastSpell((offset+1),'spell');");
  12. Hello, you can use event https://wrobot.eu/byme/doc/html/E-wManager.Events.LootingEvents.OnLootingPulse.htm But the easy way is to use wow addons for do that.
  13. Hello, Do you run Wow in window mode? [D] 14:20:48 - Warning: You need to run Wow in Windowed mode, for it go to 'Game Menu' > 'System' > in 'Display Mode' select 'Windowed'.
  14. Hi, good job. To draw on map you need to use https://wrobot.eu/byme/doc/html/F-wManager.Wow.Forms.UserControlMiniMap.LandmarksMiniMap.htm (it will also draw on 3d radar)
  15. Hello, you can launch WRobot with the shortcut "WRobot no lock frame", but fightclass and WRobot will be less reactive. You can also try to disable your antivirus and wow addons.
  16. Hello, I checked your activity and you have two accounts with subscription ( https://wrobot.eu/profile/92103-karmo1234/ ) I made the refund of subscription of your second account (you will get your money back in few days)
  17. Hello, use this code: wManager.Wow.Helpers.ItemsManager.EquipItemByName("Item Name");
  18. Hello, easy way is to use wManager.Wow.Helpers.Conditions.InGameAndConnected
  19. Can you share your log file please (full log file)
  20. Hello, check in your profile if all positions are "Flying" type.
  21. Hello, If the bot stopped moving or responded the result wouldn't be better (if everyone used it). I'm sorry you can't change this behavior with the default options. The only solution is to create a plugin that manages security and to disable WRobot security options.
  22. using System; using System.Threading; using System.Windows.Forms; using Relogger.Classes; using robotManager.Helpful; namespace MyNamespace { public class MyPlugin : Relogger.ReloggerPlugin { public override string Name { get { return "My test plugin"; } } bool IsRunning { get; set; } public override void OnStart() { robotManager.Helpful.Logging.Write("OnStart"); } public override void OnStop() { robotManager.Helpful.Logging.Write("OnStop"); } public override void OnButtonPress() { AddNewReloggerProfile("AccName", "realmListName", "pass", "charname", "key", "wowpath", "profilename", "1-10"); robotManager.Helpful.Logging.Write("OnButtonPress"); } public void AddNewReloggerProfile(string AccName, string realmListName, string pass, string charname, string key, string wowpath, string profilename, string runtime) { var t = new Thread(o => { try { var newprofile = new Relogger.Classes.ReloggerProfile(); newprofile.Name = AccName + " " + pass + " " + charname; newprofile.Checked = true; //newprofile.Comment = ""; newprofile.Settings.MinimiseWRobotOnStart = true; newprofile.Settings.RelaunchIfWowOrWRobotCrash = true; newprofile.Settings.RunTasksLoop = true; newprofile.Settings.ScheduleResetAtEnd = true; newprofile.Settings.WowAccount.AccountName = AccName; newprofile.Settings.WowAccount.BattleNet = AccName; newprofile.Settings.WowAccount.Password = pass; newprofile.Settings.WowAccount.Character = charname; newprofile.Settings.WowAccount.Server = realmListName; newprofile.Settings.WRobotAccount.WRobotKey = key; //newprofile.Settings.WowWindow = new Rectangle(); //newprofile.Settings.BotWindow = new Rectangle(); //newprofile.Settings.ScheduleFrom = new DateTime(1, 1, 1, 00, 00, 00); //newprofile.Settings.ScheduleTo = new DateTime(1, 1, 1, 23, 59, 59); newprofile.Settings.Tasks.Add(new Relogger.Classes.ReloggerTask { TaskType = Relogger.Classes.TaskType.ChangeWowPath.ToString(), Task = new Relogger.Classes.ChangeWowPathReloggerTask { WowPath = wowpath }, Name = "123" } ); newprofile.Settings.Tasks.Add(new Relogger.Classes.ReloggerTask { TaskType = Relogger.Classes.TaskType.Run.ToString(), Task = new Relogger.Classes.RunReloggerTask { RunTime = runtime, Product = "Quester", Profile = profilename, }, Name = "run" }); Relogger.Classes.ReloggerGeneralSettings.CurrentSetting.Profiles.Add(newprofile); } catch (Exception e) { Logging.WriteError(e.ToString()); } }); t.SetApartmentState(ApartmentState.STA); t.Start(); } } } You still get error when you try to edit task, but tasks are well configured (you can restart to see value)
  23. Thank you, I released new update, I hope that your problem will be resolved. if it is not the case if you can again send me "memory info" result of the new update please.
×
×
  • Create New...