![Цитата](images/wow-circle/misc/quote_icon.png)
Сообщение от
contrast2222
у меня феникс стоит но что-то я там не нашёл такой функции,можешь обьяснить где она там?
В Ore3 точно было.
Ну или по гайду выше -
PHP код:
local ainvenabled = true
local ainvkeyword = "+"
local autoinvite = CreateFrame("frame")
autoinvite:RegisterEvent("CHAT_MSG_GUILD")
autoinvite:SetScript("OnEvent", function(self,event,arg1,arg2)
if ((not UnitExists("party1") or IsPartyLeader("player")) and arg1:lower():match(ainvkeyword)) and ainvenabled == true then
InviteUnit(arg2)
end
end)
function SlashCmdList.AUTOINVITE(msg, editbox)
if (msg == 'off') then
ainvenabled = false
print("Автоприглашение ВЫКЛ")
elseif (msg == '') then
ainvenabled = true
print("Авотприглашение ВКЛ: invite")
ainvkeyword = "invite"
else
ainvenabled = true
print("Автоприглашение ВКЛ: " .. msg)
ainvkeyword = msg
end
end
SLASH_AUTOINVITE1 = '/ainv'