Untitled
unknown
plain_text
2 years ago
717 B
8
Indexable
local m_combo = macro (500, "Combo UE", function() end)
onTalk(function(name, level, mode, text, channelId, pos)
if m_combo.isOn() then
if name:lower() == storage.leaderName:lower() and text:lower() == storage.leaderSpell:lower() and pos and pos.z == posz() and distanceFromPlayer(pos) < 5 then
say(storage.comboSpell)
end
end
end)
addTextEdit("LeaderName", storage.leaderName or "Leader Name", function(widget, text)
storage.leaderName = text
end)
addTextEdit("LeaderSpell", storage.leaderSpell or "Leader Spell", function(widget, text)
storage.leaderSpell = text
end)
addTextEdit("comboSpell", storage.comboSpell or "Combo", function(widget, text)
storage.comboSpell = text
end)
Editor is loading...
Leave a Comment