View Single Post
12/15/14, 03:34 AM   #2
Minceraft
 
Minceraft's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2014
Posts: 51
Originally Posted by BornDownUnder View Post
Here is the code in particular:

local name = GetUnitName(owner)
JumpToGroupMember()
d("Traveling to "..name.."...")

The chat output from d is perfectly fine, name grabs the character name, just always 'character not found' and therefore fast travel to player doesn't happen.

Any ideas?

And you could try this:

Lua Code:
  1. local name = GetUnitName(owner)
  2.     JumpToGroupMember(name)
  3.     d("Traveling to "..name.."...")

Gives the JumpToGroupMember() function a target to jump you to.

Last edited by Minceraft : 12/15/14 at 03:43 AM.
  Reply With Quote