Este comando fará com que, se um player (com acesso de guild igual a 4) usar esse comando, puxará um membro da guild para seu lado.
Obs: Caso a pessoa que use o comando seja um GM (acesso maior que 0) ele poderá puxar mesmo sem estar na mesma guild ou ter acesso de guild 4


Adicione o seguinte comando nos seus scripts:

Código:

Case "/puxar"
PlayerID = FindPlayer(TextSay(1))
if GetPlayerGuildAccess(Index) = 4 or GetPlayerAccess(Index) > 0 then
  if PlayerID > 0 Then
      if GetPlayerGuild(index) = GetPlayerGuild(FindPlayer(TextSay(1))) or GetPlayerAccess(Index) > 1 then
        Call PlayerWarp(FindPlayer(TextSay(1)), GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index))
        Call PlayerMsg(FindPlayer(TextSay(1)), "Você foi puxado por " & GetPlayerName(index) & "!", brightgreen)
      else
        Call PlayerMsg(index, "O Jogador não está na sua guild!", brightred)
      end if
  else
      Call PlayerMsg(index, "O Jogador não existe ou está offline!", brightred)
  end if
else
  Call PlayerMsg(index, "Você não tem acesso a este comando!", brightred)
end if
exit sub


Usando: Dentro do jogo digite '/puxar Nick do Indivíduo à ser Puxado'
8)