Page 1 of 1

Are there any addons or macro for fast Group Invite

Posted: Sat Jan 25, 2025 11:39 am
by Moonbiter
As a tank I often need to invite someone to guard while solo roaming.
Is there a way to do it somehow different from Right Click -> Menu -> Group Invite.
In the heat of battle I'm missing right menu items from time to time :-/

Re: Are there any addons or macro for fast Group Invite

Posted: Sat Jan 25, 2025 12:55 pm
by Fenris78
You can use an ingame macro (go to main menu > macros, and create one in an empty space), simply filling into "macro text" field : /groupinvite

Then name your macro, and drop it into any of your empty action bar slot. Then you can assign if not already done, any keybind you want.

Simply target player you wish to invite and use your newly created action to instantly ask him/her to join your group.

Re: Are there any addons or macro for fast Group Invite

Posted: Sat Jan 25, 2025 5:11 pm
by Moonbiter
Fenris78 wrote: Sat Jan 25, 2025 12:55 pm You can use an ingame macro (go to main menu > macros, and create one in an empty space), simply filling into "macro text" field : /groupinvite

Then name your macro, and drop it into any of your empty action bar slot. Then you can assign if not already done, any keybind you want.

Simply target player you wish to invite and use your newly created action to instantly ask him/her to join your group.
Does not work.
Unknown command: /groupinvite

Re: Are there any addons or macro for fast Group Invite

Posted: Sat Jan 25, 2025 6:26 pm
by Fenris78
You are right, my bad. I tried all available commands, but only /guildinvite is working if you are solo.

Maybe someone got another idea, because neither /invite, /partyinvite, /oinvite or /warbandinvite seems to work.

Re: Are there any addons or macro for fast Group Invite

Posted: Sat Jan 25, 2025 9:40 pm
by sullemunk
Moonbiter wrote: Sat Jan 25, 2025 11:39 am As a tank I often need to invite someone to guard while solo roaming.
Is there a way to do it somehow different from Right Click -> Menu -> Group Invite.
In the heat of battle I'm missing right menu items from time to time :-/
you can make a macro with:

Code: Select all

/script SendChatText(L"/invite "..wstring.sub(towstring(TargetInfo:UnitName("selffriendlytarget")),1,-3 ),L"")
this will invite your target

Re: Are there any addons or macro for fast Group Invite

Posted: Sun Jan 26, 2025 8:27 am
by Moonbiter
sullemunk wrote: Sat Jan 25, 2025 9:40 pm
Moonbiter wrote: Sat Jan 25, 2025 11:39 am As a tank I often need to invite someone to guard while solo roaming.
Is there a way to do it somehow different from Right Click -> Menu -> Group Invite.
In the heat of battle I'm missing right menu items from time to time :-/
you can make a macro with:

Code: Select all

/script SendChatText(L"/invite "..wstring.sub(towstring(TargetInfo:UnitName("selffriendlytarget")),1,-3 ),L"")
this will invite your target
This does work!!!
Thank you 8-)