Jump to content

Droidz

Administrators
  • Posts

    12595
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  2. 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
  3. Hello, wManager.Wow.Helpers.ItemsManager.UseItem(123); wManager.Wow.Helpers.SpellManager.CastSpellByIdLUA(1234);
  4. 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)
  5. Hello, this code check riging skill level, yes you can use this code in your fightclass (with "C Sharp Code" condition)
  6. Hello, you get all this problem in WRobot for vanilla? (or you use others wow versions)?
  7. Salut, tu peux donner plus de détails sur ce que tu veux faire, j'ai du mal à comprendre
  8. Hello, try to use quest type 'usescripton', you can select select interact distance
  9. 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).
  10. https://wrobot.eu/bugtracker/fightstartfight-deadlock-r937/
  11. Hello, try this plugin https://wrobot.eu/forums/topic/2747-clear-session-blacklist/#comment-12547
  12. Hello, general settings put druid form in "ground mount name". In product settings activate option ""Use flying mount at all times""
  13. 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() { } }
  14. wait next update
  15. Hello, 1: You cannot. 2: is is: wManager.wManagerSetting.CurrentSetting.CloseIfWhisperBiggerOrEgalAt = 10000; 3: Use lua http://vanilla-wow.wikia.com/wiki/World_of_Warcraft_API
  16. Hello, Can you share your FULL log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  17. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  18. Hello, use wManager.Wow.Helpers.Trainer.TrainingSpell();
  19. Hello, when you click on "Dump all informations" button (in dev tools), list is empty?
  20. Hello, like to make grinder profile, record loop path
  21. Hello, increment your min/max latency (in advanced general settings)
  22. Hello, in advanced general settings try to disable option "Calculate interact/combat distance by target size"
  23. Hello, try to use runmacrotext: https://wrobot.eu/forums/topic/1688-lua-and-multi-language-support/?do=findComment&comment=11324
  24. Hello, can you read this: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/(step 14)
×
×
  • Create New...