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 Technomancerfunction 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"/>





info
Grupo: Campones
Registrado: 04/04/08
Posts: 56
Reputação: +4
Char no Tibia: Sorcerer
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!