Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Eu peguei um sistema de ban por comando aqui no forum mas esse systema tem um problema no meu server, ele bani o player mas ele continua online... dai o player só é bloqueado do server depois que tenta relogar.

 

SCRIPT:

 

local default = {

length = getConfigValue("banLength"),

comment = "Rule Violations.",

reason = 12

}


function getPlayerTesti(cid)

local Tiedot = db.getResult("SELECT `id` FROM `accounts` WHERE `id` = " .. getPlayerAccountId(cid) .. " LIMIT 1")

if Tiedot:getID() ~= LUA_ERROR then

local account = Tiedot:getDataInt("id")

return account

end

return LUA_ERROR

end


function onSay(cid, words, param)

local t = string.explode(param, ",")

if(not t[1]) then

doPlayerSendCancel(cid, "You must enter name.")

return true

end


local player = getPlayerByName(t[1])

if(not isPlayer(player)) then

doPlayerSendCancel(cid, "Player with name `" .. t[1] .. "` not found.")

return true

end


local action = t[2]

if(not t[2] or (t[2] and type(t[2]) ~= 'string')) then

doPlayerSendCancel(cid, "Wrong param.")

return true

end


local length = (t[3] and tonumber(t[3]) > 0) and t[3] or default.length

local comment = (t[4] and type(t[4]) == "string") and t[4] or default.comment

if(isInArray({"account", "acc", "a"}, action)) then

doAddAccountBanishment(getAccountIdByName(t[1]), getPlayerGUID(t[1]), os.time() + length, default.reason, comment, ACTION_BANISHMENT, comment, getPlayerGUID(cid))

result = true

--[[

elseif(isInArray({"player", "p"}, action)) then

--type missing

doAddPlayerBanishment(getPlayerGUID(t[1]), type, os.time() + length, default.reason, ACTION_BANISHMENT, comment, getPlayerGUID(cid))

result = true

elseif(isInArray({}, action)) then

--ip and mask missing

doAddIpBanishment(ip, mask, os.time() + length, default.reason, comment, getPlayerGUID(cid))

result = true

elseif(isInArray({}, action)) then

doAddNotation(getAccountIdByName(t[1]), getPlayerGUID(t[1]), default.reason, comment, getPlayerGUID(cid))

result = true

elseif(isInArray({}, action)) then

--channelId missing

doAddStatement(getPlayerGUID(t[1]), channelId, default.reason, comment, getPlayerGUID(cid))

result = true

]]

end


if(result) then

db.executeQuery("INSERT INTO `bans` (`id` ,`type` ,`value` ,`param`, `active`, `expires`, `added`, `admin_id`, `comment`, `reason`, `action`) VALUES ('id', '3', '".. getPlayerTesti(player) .."', '45', '1', '".. os.time() + length .."', '".. os.time() .."', '".. getPlayerGUID(cid) .."', '".. comment .."', '12', '2' );")

doSendAnimatedText(getCreaturePosition(player), "BANISHED", TEXTCOLOR_RED)

doPlayerBroadcastMessage(cid, "The player "..t[1].." has been banished by reason "..t[4].. ". Mais informacoes no site.")

doRemoveCreature(player)

end

return true

end 

Link para o post
Compartilhar em outros sites
10 minutos atrás, JuauLBR disse:

Eu peguei um sistema de ban por comando aqui no forum mas esse systema tem um problema no meu server, ele bani o player mas ele continua online... dai o player só é bloqueado do server depois que tenta relogar.

 

SCRIPT:

 

local default = {

length = getConfigValue("banLength"),

comment = "Rule Violations.",

reason = 12

}


function getPlayerTesti(cid)

local Tiedot = db.getResult("SELECT `id` FROM `accounts` WHERE `id` = " .. getPlayerAccountId(cid) .. " LIMIT 1")

if Tiedot:getID() ~= LUA_ERROR then

local account = Tiedot:getDataInt("id")

return account

end

return LUA_ERROR

end


function onSay(cid, words, param)

local t = string.explode(param, ",")

if(not t[1]) then

doPlayerSendCancel(cid, "You must enter name.")

return true

end


local player = getPlayerByName(t[1])

if(not isPlayer(player)) then

doPlayerSendCancel(cid, "Player with name `" .. t[1] .. "` not found.")

return true

end


local action = t[2]

if(not t[2] or (t[2] and type(t[2]) ~= 'string')) then

doPlayerSendCancel(cid, "Wrong param.")

return true

end


local length = (t[3] and tonumber(t[3]) > 0) and t[3] or default.length

local comment = (t[4] and type(t[4]) == "string") and t[4] or default.comment

if(isInArray({"account", "acc", "a"}, action)) then

doAddAccountBanishment(getAccountIdByName(t[1]), getPlayerGUID(t[1]), os.time() + length, default.reason, comment, ACTION_BANISHMENT, comment, getPlayerGUID(cid))

result = true

--[[

elseif(isInArray({"player", "p"}, action)) then

--type missing

doAddPlayerBanishment(getPlayerGUID(t[1]), type, os.time() + length, default.reason, ACTION_BANISHMENT, comment, getPlayerGUID(cid))

result = true

elseif(isInArray({}, action)) then

--ip and mask missing

doAddIpBanishment(ip, mask, os.time() + length, default.reason, comment, getPlayerGUID(cid))

result = true

elseif(isInArray({}, action)) then

doAddNotation(getAccountIdByName(t[1]), getPlayerGUID(t[1]), default.reason, comment, getPlayerGUID(cid))

result = true

elseif(isInArray({}, action)) then

--channelId missing

doAddStatement(getPlayerGUID(t[1]), channelId, default.reason, comment, getPlayerGUID(cid))

result = true

]]

end


if(result) then

db.executeQuery("INSERT INTO `bans` (`id` ,`type` ,`value` ,`param`, `active`, `expires`, `added`, `admin_id`, `comment`, `reason`, `action`) VALUES ('id', '3', '".. getPlayerTesti(player) .."', '45', '1', '".. os.time() + length .."', '".. os.time() .."', '".. getPlayerGUID(cid) .."', '".. comment .."', '12', '2' );")

doSendAnimatedText(getCreaturePosition(player), "BANISHED", TEXTCOLOR_RED)

doPlayerBroadcastMessage(cid, "The player "..t[1].." has been banished by reason "..t[4].. ". Mais informacoes no site.")

doRemoveCreature(player)

end

return true

end 

um conselho, não da ban por comando não tipow /ban player, 

usa o ban pelo Ctrl+mouse+rule violetion

isso vai banir o ip dele !

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por LeoTK
      Salve galera neste tópico irei postar algumas prints do mapa do servidor para quem queira acompanhar e quem sabe até utilizar de inspiração para mapear o seu NTO.
       
      #Att 11/08/2022

       
       
       
       
      Konoha (Em Desenvolvimento)
       
       
       
       
    • Por DiigooMix
      Como o título já diz, será que alguém possui sprite do hitto e se possível as transformações dele?
    • Por OmegaZero
      Olá gostaria que alguém me ajudasse com uma "scripting" não sei se é pela mesma, seria o seguinte uma determinada arma teria a chance de dar double hit e não sei oque fazer alguem poderia ajudar?

      OBS:não sei se é o local correto se não for mova, desculpe
    • Por Madarasenju
      Olá galera do Tibia King, queria por uns npc's no meu server que não tem função de trade nem nada do tipo, queria que eles só andassem como enfeite, Rep+ Pra quem me ajudar... grato desde já.
    • Por SilenceRoot
      A magia é assim o você usa a a magia e ela ficará ativado por 10 segundos, até que o inimigo lance a primeira magia ou todos de uma vez, quando ele lançar a primeira magia, ele não lhe acertará ou seja esquivando dela, e logo em seguida será teletransportado aleatoriamente ao redor do inimigo que usou.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo