Ir para conteúdo

[Pedido] Comando Para Guild Membros


johann07

Posts Recomendados

Tipo do script: Talkactions, e n sei o outro ;x

Protocolo (versão do Tibia):8.60

Servidor utilizado:Joga Facil edited

Nível de experiência:999999

Adicionais/Informações: Um comando que o Leader da guild fale alguma coisa pros membros n poderem se atakar, e quando ele fala de novo os membros poderem se atakar!

Brigadao

agradeço desde ja!

Link para o comentário
Compartilhar em outros sites

cara é capaz que seu ot já tenha ele tem que falar !guildwar on ou !guildwar off

tenta se nãoo der posta que te arrumo um!

 

toma aqui o comando va para data/talkactions/scripts e crie um arquivo.lua com o nome de attackguild ponha isso dentro:

--script by Technomancer

function onSay(cid, words, param)

 

local storageId = 101

 

if isPlayerPzLocked(cid) then

doPlayerSendCancel(cid, "You cannot use this command during battle.")

return true

end

 

if getPlayerGuildId(cid) <= 0 then

doPlayerSendCancel(cid, "You are not a guild member.")

return true

end

 

if param == '' then

local status = {

[1] = {"OFF"},

[-1] = {"ON"}

}

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Currently Status: "..status[getPlayerStorageValue(cid, storageId)][1].."")

return true

end

 

if param == 'on' and getPlayerStorageValue(cid, storageId) == 1 then

doPlayerSetStorageValue(cid, storageId, -1)

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Now you can attack guild members.")

return true

end

 

if param == 'off' and getPlayerStorageValue(cid, storageId) == -1 then

doPlayerSetStorageValue(cid, storageId, 1)

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Now you can't attack guild members.")

return true

end

 

return true

end

 

abra talkaction.xml e adicione em Custom System:

<talkaction words="!guildwar" event="script" value="attackguild.lua"/>
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...