Ir para conteúdo

[Comando] Como Tirar O God


Folspa

Posts Recomendados

Olha cara vou te dar um scritp que é assim você estando de /ghost ou não o player não ve seu nome na lista de !online. Você GOD podera ver o nomes de todos os players , de outros GMs , CMs , GODs , você podera ver até seu nome no online, lembrando que PLAYER NENHUM vera o seu nome só você e outros GODs , Ok ?

 

Lá vai o script , vá em data/talkactions/scripts e crie um arquivo chamado online.lua e adiciona isso dentro :

 

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

 

 

E depois vá em talkactions.xml e adiciona isso dentro :

 

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

 

 

 

Te ajude ?? REP+ ;)

 

 

@edit

 

Olha uma imagen ai :

 

imagempaa.png

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

  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...