Page 7 of 8

Re: [ADDON] Warband Lead Helper

Posted: Sat May 06, 2023 3:53 pm
by Tyrex2017
Great addon - ty.
But i have a problem whit the size of the window. I run the game in 3840x2160. The size of the window is too little.
How can i change the size?

Thank you

Re: [ADDON] Warband Lead Helper

Posted: Fri May 12, 2023 2:26 pm
by Tyrvald
Hello,

I Just DL the Addon but - Have you any idea how we could have shortcut via macro to use the command /wlh Show / wlh config ??

Re: [ADDON] Warband Lead Helper

Posted: Thu Jul 06, 2023 5:38 am
by RaginPower
Hey there I downloaded the addon and am having some issues.

T1 is autokicking

If I click the CM button, how do I disable it? I cant type any / commands or anything.

Been nervous about trying this out because of the auto functions that I dont have a grasp on controlling yet.

Re: [ADDON] Warband Lead Helper

Posted: Thu Jul 06, 2023 8:09 pm
by Kpi
RaginPower wrote: Thu Jul 06, 2023 5:38 am Hey there I downloaded the addon and am having some issues.

T1 is autokicking

If I click the CM button, how do I disable it? I cant type any / commands or anything.

Been nervous about trying this out because of the auto functions that I dont have a grasp on controlling yet.
Looks like you are talking about "Autoband" addon. For disable Auto kick on auto band, type "/ab show" go to tab config and put rank requirment to 1

Re: [ADDON] Warband Lead Helper

Posted: Sun Jul 09, 2023 10:37 pm
by RaginPower
I think I figured it out, I came back and reinstalled after 3 years. Had to go in and delete the old folders in all my profiles to get it to reset and it seems to be working properly now.

I had already removed autoband and it happened again with wbl helper installed.

Re: [ADDON] Warband Lead Helper

Posted: Sat Jul 15, 2023 8:46 am
by Orklovingit
A must-have addon everyone should have.
This should be a mandatory addon.

Don't forget that macro to easily open and close the window:
/script wbLeadHelper.toggleWbLeadHelperWindow();
Thank you!

Re: [ADDON] Warband Lead Helper

Posted: Sat Aug 12, 2023 2:48 pm
by DeathDriver
This is amazing thank you. :)

Re: [ADDON] Warband Lead Helper

Posted: Thu Aug 17, 2023 10:06 am
by Phantasm
Spoiler:
provide wrote: Thu Jun 25, 2020 10:28 am Hi,
in the last couple of weeks I worked on a little addon to make the life of warband leaders easier.
It's a simple Button grid you can click on to broadcast text messages to the chat.

Main features:
  • Countdowns to make coordinated siege pushes easier
  • Various messages to coordinate your warband
  • Looking for members helper button (NOW with AUTOSEARCH)
  • Color mode, to see the warband leader messages better
Screenshots:
ImageImage

Image

Image


DOWNLOAD: https://tools.idrinth.de/addons/wbleadhelper/
The source code of the addon can be found here: https://gitlab.com/sxe/RoRAddonFixes/-/ ... LeadHelper

Documentation can also be found in the first link.

Big thanks goes to the developer of Zonepoplite. I used his addon as a framework for mine. Was a big help cause I had no prior experience with ror addon developement.

Hope it's useful for some of you and leads to better organized warbands!

Changelog:

Code: Select all

0.9.7 - Updated as of 7/05/2022
* Fixed 2/2/2 auto search

0.9.6 - Updated as of 5/26/2022
* Chat channels can now be set in each message
* Bugfixes

0.9.5
* The LFG submenu is now editable as well.
* The AUTO group scan feature got more flexible. You can now define the number of missing roles you are looking for (Good for none warbands).
* Added help tooltips in more places.

0.9.1
* A tooltip with needed roles is now shown when hovering the *LFM* button.
* Line breaks in message labels are now done with <nl> not <br> anymore
* Some smaller bug fixes

0.9 - Updated as of 5/06/2022.
* A full config UI was added. Messages can now be added and changed from withing the game.
* Added AUTO looking for players search. It scans your warband and puts out a message with missing roles (healers, tanks, dps)
* Messages are in different colors now
* Reorderd the message labels to make them more intuitive to use
* Some small adjustments

0.7 - Updated as of 7/22/2020.
* Added "Color Mode", to be able to chat colored all the time.

0.6.5 - Updated as of 7/16/2020.
* Button text can now be colored
* Added "back" button to submenus
* Realigned text in buttons to better fit
* Submenus are now better recognizable

0.6 - Updated as of 7/13/2020.
* Added button to shout out a BO 
* Added a "Looking for Members" button which post to the /5 LFG channel on left click. Or to /1 on right click.
* Some bug fixes and code optimizations
Cheers,
Norib (IB)
Great work with addon, many people use it, its definitely most helpful for pug leaders, again, great job... but, it would be great to have autosort feature.
I tried to borrow auto sort function from Autoband addon, but it has so many layers, autoband calls for .util, .org files which i tried also "translate" for wbLeadHelper but eventually it didnt work. I added command org:

Code: Select all

if (command == "show" or command == "s" or command == "toggle" or command == "t") then
    wbLeadHelper.toggleWbLeadHelperWindow();
  elseif (command == "config" or command == "cfg" or command == "c") then
    wbLeadHelperConfigWindow.Show();
  elseif (command == "org") then
    wbLeadHelper.cmd_organize(); -- Add the functionality for the "org" command here
  else
    Print("<LINK data=\"0\" text=\"[wbLeadHelper]\" color=\"50,255,10\"> /wlh show - toggle the main window.");
    Print("<LINK data=\"0\" text=\"[wbLeadHelper]\" color=\"50,255,10\"> /wlh config - open the configuration window.");
  end
but gives error ingame. So any help ;) ?

Re: [ADDON] Warband Lead Helper

Posted: Fri Aug 18, 2023 4:12 am
by Omegus
Phantasm wrote: Thu Aug 17, 2023 10:06 am
Spoiler:
provide wrote: Thu Jun 25, 2020 10:28 am Hi,
in the last couple of weeks I worked on a little addon to make the life of warband leaders easier.
It's a simple Button grid you can click on to broadcast text messages to the chat.

Main features:
  • Countdowns to make coordinated siege pushes easier
  • Various messages to coordinate your warband
  • Looking for members helper button (NOW with AUTOSEARCH)
  • Color mode, to see the warband leader messages better
Screenshots:
ImageImage

Image

Image


DOWNLOAD: https://tools.idrinth.de/addons/wbleadhelper/
The source code of the addon can be found here: https://gitlab.com/sxe/RoRAddonFixes/-/ ... LeadHelper

Documentation can also be found in the first link.

Big thanks goes to the developer of Zonepoplite. I used his addon as a framework for mine. Was a big help cause I had no prior experience with ror addon developement.

Hope it's useful for some of you and leads to better organized warbands!

Changelog:

Code: Select all

0.9.7 - Updated as of 7/05/2022
* Fixed 2/2/2 auto search

0.9.6 - Updated as of 5/26/2022
* Chat channels can now be set in each message
* Bugfixes

0.9.5
* The LFG submenu is now editable as well.
* The AUTO group scan feature got more flexible. You can now define the number of missing roles you are looking for (Good for none warbands).
* Added help tooltips in more places.

0.9.1
* A tooltip with needed roles is now shown when hovering the *LFM* button.
* Line breaks in message labels are now done with <nl> not <br> anymore
* Some smaller bug fixes

0.9 - Updated as of 5/06/2022.
* A full config UI was added. Messages can now be added and changed from withing the game.
* Added AUTO looking for players search. It scans your warband and puts out a message with missing roles (healers, tanks, dps)
* Messages are in different colors now
* Reorderd the message labels to make them more intuitive to use
* Some small adjustments

0.7 - Updated as of 7/22/2020.
* Added "Color Mode", to be able to chat colored all the time.

0.6.5 - Updated as of 7/16/2020.
* Button text can now be colored
* Added "back" button to submenus
* Realigned text in buttons to better fit
* Submenus are now better recognizable

0.6 - Updated as of 7/13/2020.
* Added button to shout out a BO 
* Added a "Looking for Members" button which post to the /5 LFG channel on left click. Or to /1 on right click.
* Some bug fixes and code optimizations
Cheers,
Norib (IB)
Great work with addon, many people use it, its definitely most helpful for pug leaders, again, great job... but, it would be great to have autosort feature.
I tried to borrow auto sort function from Autoband addon, but it has so many layers, autoband calls for .util, .org files which i tried also "translate" for wbLeadHelper but eventually it didnt work. I added command org:

Code: Select all

if (command == "show" or command == "s" or command == "toggle" or command == "t") then
    wbLeadHelper.toggleWbLeadHelperWindow();
  elseif (command == "config" or command == "cfg" or command == "c") then
    wbLeadHelperConfigWindow.Show();
  elseif (command == "org") then
    wbLeadHelper.cmd_organize(); -- Add the functionality for the "org" command here
  else
    Print("<LINK data=\"0\" text=\"[wbLeadHelper]\" color=\"50,255,10\"> /wlh show - toggle the main window.");
    Print("<LINK data=\"0\" text=\"[wbLeadHelper]\" color=\"50,255,10\"> /wlh config - open the configuration window.");
  end
but gives error ingame. So any help ;) ?
It helps if you put the error here too...

Re: [ADDON] Warband Lead Helper

Posted: Sat Nov 04, 2023 5:28 pm
by Emissary
Smarter people than I. Is there a way to add to this addon where one of the buttons could call out the hostile target?