May 4, 20224 yr I would like for my profile to have Radar3D atomically turned on and blacklist where died last.
May 5, 20224 yr Hello, run this code from your profile : wManager.Wow.Helpers.Radar3D.Pulse(); wManager.wManagerSetting.CurrentSetting.BlackListZoneWhereDead = true;
May 5, 20224 yr Author 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?
May 7, 20224 yr For the options, you can find most of them here https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerSetting.htm For the rest, search on the forum (use Google it is better), look at the code for profiles/plugins/etc, or request help of forum.
June 27, 20223 yr 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?
June 27, 20223 yr 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?
June 27, 20223 yr 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")
June 27, 20223 yr 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 😄
Create an account or sign in to comment