Ir para conteúdo

[Pedido] Channel Novo


tricolorgaucho

Posts Recomendados

Tipo do script: --

Protocolo (versão do Tibia):8.54

Servidor utilizado: TFS

Nível de experiência: --

 

olá, queria saber como faço um channel novo tipo Game-Chat

 

e outras dúvidas:

 

Help-Channel

quero que o Help-Channel tenha muted de 30 segundos, que você só pode mandar um mensagem acada 30 segundos

 

Comando De Muted

quero um comando que Tutores, GODs e GMs dessem muted em algum player que estiver spameando no Help-Channel, e o comando seria esse:

 

/mute "NOME DO PLAYER

Link para o comentário
Compartilhar em outros sites

Tenta esse comando de muted:

 

-- [( XTibia.com )] --
function onSay(cid, words, param)

local time = 1000 -- Tempo do muted em segundos.

if getPlayerByName(param) > 1 then
doMutePlayer(getPlayerByName(param), time)
else
doPlayerSendCancel(cid, "Sorry, this player not online or does not exist.")
end
end

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

Tenta esse comando de muted:

 

-- [( XTibia.com )] --
function onSay(cid, words, param)

local time = 1000 -- Tempo do muted em segundos.

if getPlayerByName(param) > 1 then
doMutePlayer(getPlayerByName(param), time)
else
doPlayerSendCancel(cid, "Sorry, this player not online or does not exist.")
end
end

 

 

maas, onde eu boto isso?

Link para o comentário
Compartilhar em outros sites

Quanto ao Channel Help, vá na pasta /data/xml e abra channels.xml

 

Apague tudo e substitua por isso.

 

<?xml version="1.0" encoding="UTF-8"?>

<channels>

<!-- README:

0 - dynamic, reserved for guilds

1 - always acts as Party channel, only "name" tag available

3 - always acts as Rule Violations channel

9 - acts as Help channel- clientsided message

65535 - DO NOT CHANGE THE ID- only "name", "enabled", "active" and "logged" tags available

-->

<channel id="1" name="Party"/>

<channel id="2" name="Staff" access="3"/>

<channel id="3" name="Rule Violations" logged="yes"/>

<channel id="4" name="Counselor" access="1"/>

<channel id="5" name="Game-Chat" level="2"/>

<channel id="6" name="Trade" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes.">

<vocation id="1-8"/>

</channel>

<channel id="7" name="Trade-Rookgaard" level="2" muted="120" conditionId="3" conditionMessage="You may only place one offer in two minutes.">

<vocation id="0"/>

</channel>

<channel id="8" name="RL-Chat" level="2"/>

<channel id="9" name="Help" level="8" muted="30" conditionId="2" conditionMessage="Voce so pode enviar uma mensagem a cada 30 segundos.">

<!-- <channel id="10" name="My Custom Channel"/> -->

<channel id="65535" name="Private Chat Channel"/>

</channels>

 

Veja se funciona, e responda por favor.

Link para o comentário
Compartilhar em outros sites

Os dois novos channel nome Help(com muted) e Chat:

 

Channels.xml:

<?xml version="1.0" encoding="UTF-8"?>
<channels>
<!-- README:
	0 - dynamic, reserved for guilds
	1 - always acts as Party channel, only "name" tag available
	3 - always acts as Rule Violations channel
	9 - acts as Help channel- clientsided message
	65535 - DO NOT CHANGE THE ID- only "name", "enabled", "active" and "logged" tags available
 -->
<channel id="1" name="Party"/>
<channel id="2" name="Staff" access="3"/>
<channel id="3" name="Rule Violations" logged="yes"/>
<channel id="4" name="Counselor" access="1"/>
<channel id="5" name="Game-Chat" level="2"/>
<channel id="6" name="Trade" level="8" muted="120" conditionId="2" conditionMessage="You may only place one offer in two minutes.">
	<vocation id="1-8"/>
</channel>
<channel id="7" name="Trade-Rookgaard" level="2" muted="120" conditionId="3" conditionMessage="You may only place one offer in two minutes.">
	<vocation id="0"/>
</channel>
<channel id="8" name="RL-Chat" level="2"/>
<channel id="9" name="Help" muted="30" conditionId="4" conditionMessage="Voce tem que esperar 30 segundos para falar novamente."/>
<channel id="10" name="Chat" level="2"/>
<channel id="65535" name="Private Chat Channel"/>
</channels>

 

 

Nao sei se é possivel fazer com que a pessoa nao possa mais falar no help... entao vai so o chat mesmo

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...