Jump to content

79135

WRobot user
  • Posts

    336
  • Joined

  • Last visited

Reputation Activity

  1. Like
    79135 reacted to Matenia in How to heal on vanilla wow   
    public static void SetMouseoverUnit(WoWUnit unit) { Memory.WowMemory.Memory.WriteUInt64((uint)Memory.WowMemory.Memory.MainModuleAddress + 0x74E2C8, unit.Guid); } public static void CastOn(WoWUnit unit, string spellName) { SetMouseoverUnit(unit); Lua.LuaDoString($@" TargetUnit(""mouseover""); CastSpellByName(""{spellName}""); TargetLastTarget(); "); }  
  2. Like
    79135 reacted to Droidz in What is the difference of these functions?   
    var playerObjsNear = Party.GetPartyHomeAndInstance().Where(o => o.Position.DistanceTo(new Vector3(1, 2, 3)) < 5);  
  3. Like
    79135 reacted to fengshibang in How to Get text from StaticPopup1   
    Anybody who knows how to get the text form the popup frame.Maybe it can be done with lua I think.

  4. Like
    79135 reacted to iMod in target not in line of sight   
    Donno if that helps and its right out of the mind and just an idea...
    wManager.Events.FightEvents.OnFightStart += (WoWUnit unit, System.ComponentModel.CancelEventArgs e) => { // Not in LoS if (TraceLine.TraceLineGo(unit.Position)) { // Get waypoints to the target IEnumerable<robotManager.Helpful.Vector3> waypoints = PathFinder.Pather.FindPath(ObjectManager.Me.Position, unit.Position, out bool result, out bool resultPartial); foreach (robotManager.Helpful.Vector3 waypoint in waypoints) { if (!TraceLine.TraceLineGo(waypoint)) { // In LoS MovementManager.MoveTo(waypoint); // While moving.... } } } }; You also need to cancel that event and i'm not sure if its the right one. There is no "not in LoS" event as far i know.
  5. Like
    79135 reacted to Droidz in How to make it easier to read the bot in FC?   
    It is better to use 1 spells with a large condition
  6. Like
    79135 reacted to Droidz in Pathfinder distance   
    Hello,
    float robotManager.Helpful.Vector3.DistanceListVectors3(List<Vector3> listVectors3, Vector3 myPosition = null)  
  7. Like
    79135 reacted to Matenia in FC question   
    wManager.Wow.Bot.Tasks.MountTask.Mount(); // no conditions required  
  8. Like
    79135 reacted to Droidz in FC question   
    To see the result you can convert the fightclass to C# (in fightclass editor)
  9. Like
    79135 reacted to Matenia in FC question   
    Because all conditions are combined (if you look at Spell Conditions and the way he entered them) through AND operators.
    You can only use OR operators, if you create your very own condition from scratch. But the way the fightclass editor adds up conditions that are set separately is through AND.
    You can do it in the form you wanted before (if you set brackets the way Droidz/Bambo explained), but it's really, really slow and inefficient.
  10. Like
    79135 reacted to Bambo in FC question   
    do what schaka said and learn c sharp, the forum can help
    the editor for fightclass and quest is ineffective in many cases
  11. Like
    79135 reacted to Matenia in Customize resurrect path   
  12. Like
    79135 reacted to Droidz in Check if pathsfinder cannot find path   
    Hello,
    bool r; var path = PathFinder.FindPath(new Vector3(), out r); if (r) { }  
  13. Like
    79135 reacted to Matenia in How to active plugin from plugin?   
    new System.Threading.Thread(() => { wManager.Plugin.PluginsManager.DisposeAllPlugins(); wManager.Plugin.PluginsManager.LoadAllPlugins(); }).Start();  
  14. Like
    79135 reacted to Droidz in Check if plugin active   
    Hello,
    This check if user have enabled or not plugin:
    return wManager.wManagerSetting.CurrentSetting.PluginsSettings.Any(p => p.Actif && string.Equals(p.FileName, "file name.cs", StringComparison.InvariantCultureIgnoreCase));  
  15. Like
    79135 reacted to Droidz in Combat looting at Vanilla   
    Hello, wait next update
  16. Like
    79135 reacted to Droidz in Pls remove all the CHAT from wrobot update!   
    wManager.wManagerSetting.CurrentSetting.RecordChatInLog
  17. Like
    79135 reacted to Jensen- in Warmane Lordaeron Bans   
    really you got excuse for everything
  18. Like
    79135 reacted to FNV316 in Is complete condition   
    return wManager.Statistics.Stucks > 4;  
  19. Like
    79135 reacted to Jensen- in To All Those Two Faces   
    https://imgur.com/a/HxtRvan         made my day
    think twice befor you report any1
     
  20. Like
    79135 got a reaction from Droidz in cant run 10 sessions.   
    I have to do this on three computers xD
  21. Like
    79135 got a reaction from BetterSister in Bug   
    All is good, my fail.
×
×
  • Create New...