Ir para conteúdo

[ Resolvido ]talkaction Que Aparece O Comando No Chat


mjsm4ever

Posts Recomendados

Olá, eu peguei uma talkaction aqui no xtibia, mas quando eu uso ela, o comando aparece na tela, e todos podem ver

 

O que devo fazer pra não aparecer na tela quando eu digitar o comando?

 

Talkaction:

function onSay(cid, words, param)
config = {
pid=getPlayerGUID(cid), -- não mecha
skull="no", -- players com white skull podem teleportar? ("yes" or "no").
redskull="no", -- players com red skull podem teleportar ("yes" or "no").
prot="no", -- players precisam estar em protection zone pra teleportar ("yes" or "no").
bat="yes" --players precisam estar sem fight pra teleportar ("yes" or "no").
}


if(config.skull == "no") and (getCreatureSkullType(cid) == 3) then
doPlayerSendTextMessage(cid,22,"apenas players sem white skull usar este comando.")
return TRUE
end

if(config.redskull == "no") and (getCreatureSkullType(cid) == 4) then
doPlayerSendTextMessage(cid,22,"apenas player sem red skull podem usar este comando.")
return TRUE
end

if(config.prot == "yes") and (getTilePzInfo(getCreaturePosition(cid)) == FALSE) then
doPlayerSendTextMessage(cid,22,"você precisa estar em protection zone pra poder usar este comando.")
return TRUE
end

if(config.bat == "yes") and (getCreatureCondition(cid, CONDITION_INFIGHT) == TRUE) then
doPlayerSendTextMessage(cid,22,"você precisa estar sem battler pra poder usar este comando.")
return TRUE
end

doTeleportThing(cid, {x=130, y=53, z=7})
end

Editado por EncoreNumb
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...