- -- Inicializa o nome a seguir a partir do armazenamento local ou usa um padrão vazio
- local toFollow = storage.toFollow or "Nome do jogador"
- local toFollowPos = {}
- -- Botão para ativar/desativar o macro de seguir
- local followMacro = macro(100, "Seguir Evento","1", function()
- local target = getCreatureByName(toFollow)
- if target then
- local tpos = target:getPosition()
- if tpos then
- toFollowPos[tpos.z] = tpos
- end
- end
- if player:isWalking() then return end
- local p = toFollowPos[posz()]
- if not p then return end
- if autoWalk(p, 20, {ignoreNonPathable=true, precision=1}) then
- delay(100)
- end
- end)
- -- Prompt para inserir o nome do jogador a ser seguido
- local playerNameInput = UI.TextEdit(toFollow, function(widget, text)
- toFollow = text
- storage.toFollow = text -- Salva o nome no armazenamento local
- end)
- -- Atualiza a posição do alvo sempre que ele se mover
- onCreaturePositionChange(function(creature, oldPos, newPos)
- if creature:getName() == toFollow then
- if newPos then -- Verifica se newPos não é nil
- toFollowPos[newPos.z] = newPos
- end
- end
- end)
- ---------------------------------------------------------------------------------------------------------------------
- addLabel("Label", "Follow Name")
- addTextEdit("TxtEdit", storage.fName or "name", function(widget, text)
- storage.fName = text
- end)
- --------------------------
- local lastPos = nil
- macro(100, "Follow","1", function()
- local leader = getCreatureByName(storage.fName)
- local target = g_game.getAttackingCreature()
- if leader then
- if target and lastPos then
- return player:autoWalk(lastPos)
- end
- if not g_game.getFollowingCreature() then
- return g_game.follow(leader)
- end
- elseif lastPos then
- player:autoWalk(lastPos)
- end
- end)
teste
Posted by Anonymous on Sun 9th Feb 2025 02:28
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.