You may remember [Only registered and activated users can see links. ] thread, but I thought I'd expand on the idea of the easy macro ghetto hearth and share it with your lovely mmowned people.
Code:
/script n,l,cl,a,c = GetFriendInfo(1); if not c then SetGuildRosterShowOffline(0); n = GetGuildRosterInfo(1); end; InviteUnit(n); PromoteToLeader(n); LeaveParty();
This invites the first person on your friends list (the first online friend), and if you have no online friends, invites the first online guild member. Basically, it saves having to modify a macro if a person you've put it isn't online when you're ghettoing it up.
1. Zone into instance.
2. Hit the macro.
3. ???
4. Profit.
Edit: Modified macro below will also whisper the person just to let them know they're being used! :P (Thanks to StolenLegacy & gregv2 for the idea)
Code:
/script n,l,cl,a,c = GetFriendInfo(1); if not c then SetGuildRosterShowOffline(0); n = GetGuildRosterInfo(1); end; InviteUnit(n); PromoteToLeader(n); LeaveParty(); SendChatMessage("Invited you for getto hearth!", "WHISPER", nil, n);
Edit2: This will work even if the person invited is already in another group.
Last edited by eggsampler; 12-08-2008 at 08:28 AM.
Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.
Great!, possible to add another line to send the person a tell so they don't ask you questions?
Code:
/script n,l,cl,a,c = GetFriendInfo(1); if not c then SetGuildRosterShowOffline(0); n = GetGuildRosterInfo(1); end; InviteUnit(n); PromoteToLeader(n); LeaveParty(); SendChatMessage("Invited you for getto hearth!", "WHISPER", nil, n);