Jump to content

Recommended Posts

Hello, run this code from your profile :

wManager.Wow.Helpers.Radar3D.Pulse();
wManager.wManagerSetting.CurrentSetting.BlackListZoneWhereDead = true;

 

Link to comment
Share on other sites

2 hours ago, Droidz said:

Hello, run this code from your profile :

wManager.Wow.Helpers.Radar3D.Pulse();
wManager.wManagerSetting.CurrentSetting.BlackListZoneWhereDead = true;

 

Thank you and where can i find info like this?

Link to comment
Share on other sites

  • 1 month later...
On 5/5/2022 at 10:01 AM, Droidz said:

Hello, run this code from your profile :

wManager.Wow.Helpers.Radar3D.Pulse();
wManager.wManagerSetting.CurrentSetting.BlackListZoneWhereDead = true;

 

where must i put this code in to auto start radar3d every time i open wrobot?

Link to comment
Share on other sites

33 minutes ago, Droidz said:

No, you cannot run code when WRobot is opening.

Ok so how can i make it to auto activate radar,where in profile do i put the code you posted?do i put it in my gathering profile at the top?

Link to comment
Share on other sites

Hello, to add code to your gatherer profile you can use https://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ :

c#: wManager.Wow.Helpers.Radar3D.Pulse();

 

But, I think it's better to do it with plugin :

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Wow.Helpers.Radar3D.Pulse();
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

(save this code in .cs file type in the folder "Plugins")

Link to comment
Share on other sites

3 hours ago, Droidz said:

Hello, to add code to your gatherer profile you can use https://wrobot.eu/forums/topic/2202-profile-positions-and-action-column/ :

c#: wManager.Wow.Helpers.Radar3D.Pulse();

 

But, I think it's better to do it with plugin :

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Wow.Helpers.Radar3D.Pulse();
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

(save this code in .cs file type in the folder "Plugins")

Thank you so much,plugin works like a charm 😄

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...