Jump to content

79135

WRobot user
  • Posts

    336
  • Joined

  • Last visited

Posts posted by 79135

  1. 1 minute ago, iMod said:

    I'm not sure how your complete code looks like or if you just using c# but you have your own project you need to add a reference to Quester.dll and use the following using

    
    using Quester.Profile;

    You also need

    
    using wManager.Wow.Class;
    using wManager.Wow.Helpers;

    if you dont already using them.

    I mean I want use the code from quester profile ( I don't use custom profile..)

    Безымянный.png

  2. On ‎01‎.‎10‎.‎2017 at 12:11 PM, Droidz said:

    Hello, no tested but like this:

    
            string stepName = "MyStepName";
            var p = Quest.QuesterCurrentContext.Profile as QuesterProfile;
            if (p != null)
            {
                for (int i = 0; i < p.QuestsSorted.Count; i++)
                {
                    if (p.QuestsSorted[i].Action == QuestAction.StepName && p.QuestsSorted[i].NameClass == stepName)
                    {
                        Quest.QuesterCurrentContext.CurrentStep = i;
                        break;
                    }
                }
            }

    (replace line 1 MyStepName by your step name (step type 'StepName'))

    Error (I use the code in the quester profile)

    Безымянный.png

  3. 2 hours ago, Droidz said:

    Hello, for random player or specific player?

    To check if random player is near (less than 50y):

    
    return wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().Any(p => p.IsValid && p.GetDistance2D < 50);

    To check if specific player is near:

    
    return wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer().Any(p => p.IsValid && p.GetDistance2D < 50 && p.Name == "Player Name");

     

    Thanks a lot!

  4. Droidz, do you know, after an update in December or early January, wrobot, relogger opens 2 times the game(after wow error) and if the character is stuck ([StuckResolver] Done-Stuck count updated, new value: 438) also does not work

  5. 16 hours ago, Droidz said:

    Hello,

    
    wManager.Wow.ObjectManager.ObjectManager.Me.GetDurabilityPercent

     

    thanks a lot!) tell me more please how to reduce maxFPS in WoW version 1.12. When I try to use your plugin MaxFPS.cs it does not change anything, in WRobotGlobalSetting it does not help either...

    IMG_20180128_113626.jpg

  6. 47 minutes ago, Droidz said:

    Hello, you want check items durability? if yes of what item?

    Yes, I need check durability. If durability items after dead from mobs is low (after death durability -10%) . I need it for all items equipped at char. 

  7. On 18.12.2017 at 5:14 PM, Droidz said:

    Hello, with notepad replace

    
    InteractGameObject

    by

    
    InteractGameObjectAutoLoot

     

    where to insert this code?  

    I use Pickpocket - spell rogue, how use the spell Pickpocket + AutoLoot?

    Is it possible to somehow force to hold  shift while using the ability?

×
×
  • Create New...