pastebin - collaborative debugging tool
kpaste.net RSS


teste
Posted by Anonymous on Sun 9th Feb 2025 02:28
raw | new post

  1. -- Inicializa o nome a seguir a partir do armazenamento local ou usa um padrão vazio
  2. local toFollow = storage.toFollow or "Nome do jogador"
  3. local toFollowPos = {}
  4.  
  5. -- Botão para ativar/desativar o macro de seguir
  6. local followMacro = macro(100, "Seguir Evento","1", function()
  7.   local target = getCreatureByName(toFollow)
  8.   if target then
  9.     local tpos = target:getPosition()
  10.     if tpos then
  11.       toFollowPos[tpos.z] = tpos
  12.     end
  13.   end
  14.   if player:isWalking() then return end
  15.   local p = toFollowPos[posz()]
  16.   if not p then return end
  17.   if autoWalk(p, 20, {ignoreNonPathable=true, precision=1}) then
  18.     delay(100)
  19.   end
  20. end)
  21.  
  22. -- Prompt para inserir o nome do jogador a ser seguido
  23. local playerNameInput = UI.TextEdit(toFollow, function(widget, text)
  24.   toFollow = text
  25.   storage.toFollow = text  -- Salva o nome no armazenamento local
  26. end)
  27.  
  28. -- Atualiza a posição do alvo sempre que ele se mover
  29. onCreaturePositionChange(function(creature, oldPos, newPos)
  30.   if creature:getName() == toFollow then
  31.     if newPos then  -- Verifica se newPos não é nil
  32.       toFollowPos[newPos.z] = newPos
  33.     end
  34.   end
  35. end)
  36. ---------------------------------------------------------------------------------------------------------------------
  37. addLabel("Label", "Follow Name")
  38. addTextEdit("TxtEdit", storage.fName or "name", function(widget, text)
  39.   storage.fName = text
  40. end)
  41. --------------------------
  42. local lastPos = nil
  43. macro(100, "Follow","1", function()  
  44.   local leader = getCreatureByName(storage.fName)
  45.   local target = g_game.getAttackingCreature()
  46.   if leader then
  47.     if target and lastPos then
  48.       return player:autoWalk(lastPos)
  49.     end
  50.     if not g_game.getFollowingCreature() then
  51.       return g_game.follow(leader)
  52.     end
  53.   elseif lastPos then
  54.     player:autoWalk(lastPos)
  55.   end
  56. end)

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.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at