WoW:API CanSummonFriend: Difference between revisions
Jump to navigation
Jump to search
m (stub for more context) |
|||
Line 30: | Line 30: | ||
<!-- If it helps, include example results here, though they are not required. You're allowed to cheat liberally since WoW isn't a command line language. --> | <!-- If it helps, include example results here, though they are not required. You're allowed to cheat liberally since WoW isn't a command line language. --> | ||
If you can summon the target, you whisper and summon him/her to you. Check out [[ | If you can summon the target, you whisper and summon him/her to you. Check out [[API SummonFriend|SummonFriend]]() for details about that function. |
Revision as of 12:17, 29 August 2008
CanSummonFriend("unit")
Arguments
- ("unit")
- unit
- UnitId or a name, returns true if you can summon the target or nil if not
Returns
Nothing
Example
local t = "Zuotheshaman"; if CanSummonFriend(t) then SendChatMessage("I am summoning you!","WHISPER",nil,t) SummonFriend(t) end
Result
If you can summon the target, you whisper and summon him/her to you. Check out SummonFriend() for details about that function.