Ir para conteúdo

Meu Ot Server Nao Tem O Comando !online


Aspion

Meu Ot Server Nao tem O comando !notice  

  1. 1. Meu Ot Server Nao tem O comando !online como faço pra por?

    • Pessoal Meu otserver nao funciona o comando !online, assim como o !notice tbm nao funciona se alguem puder me ajuda me avise ou me adicione no msn alison_renan_marques@hotmail.com Preciso de Ajuda rapido
      0


Posts Recomendados

Você tem o script ou não? Se você não tiver poste aqui para agente ver o que esta errado se tiver olhe se a talkaction é essa mesma. Tudo pode ser encontrado na pasta Talkactions é só você ter uma noção que você vai ver.

Ou senão você pode procurar aqui mesmo no Xtibia que tem essas talkactions.

Até mais, espero ter ajudado.

 

Dica: Tente /online.

Link para o comentário
Compartilhar em outros sites

!online

 

data\talkactions\talkactions.xml

	<talkaction words="!online" event="script" value="online.lua"/>

 

data\talkactions\scripts\online.lua

local config = {
showGamemasters = getBooleanFromString(getConfigValue('displayGamemastersWithOnlineCommand'))
}

function onSay(cid, words, param, channel)
local players = getPlayersOnline()
local strings = {""}

local i, position = 1, 1
local added = false
for _, pid in ipairs(players) do
	if(added) then
		if(i > (position * 7)) then
			strings[position] = strings[position] .. ","
			position = position + 1
			strings[position] = ""
		else
			strings[position] = i == 1 and "" or strings[position] .. ", "
		end
	end

	if((config.showGamemasters or getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES) or not getPlayerCustomFlagValue(pid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES)) and (not isPlayerGhost(pid) or getPlayerGhostAccess(cid) >= getPlayerGhostAccess(pid))) then
		strings[position] = strings[position] .. getCreatureName(pid) .. " [" .. getPlayerLevel(pid) .. "]"
		i = i + 1
		added = true
	else
		added = false
	end
end

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, (i - 1) .. " player(s) online:")
for i, str in ipairs(strings) do
	if(str:sub(str:len()) ~= ",") then
		str = str .. "."
	end

	doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, str)
end

return true
end

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

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