Ir para conteúdo
  • 0

Anti Magebomb (Accmanager) Error


jeandoido

Pergunta

Galera eu começei a procurar um anti magebomb bom para anti Account Manager e achei...mais quando eu fui usar no .exe deu problema

 

ERROR: Cannot load CreatureEvents.

 

function onLogin(cid)
local limit,days = 2,360
function CheckMcManager(cid)
local count,on = 0,getPlayersOnline()
			if #on > 0 then
for i = 1, #on do
							if getCreatureName(on[i]) == "Account Manager" and getPlayerIp(on[i]) == getPlayerIp(cid) then
count = count + 1
end
end
							if count > limit then
doAddIpBanishment(getPlayerIp(cid), days * 24 * 60 * 60)
doRemoveCreature(cid)
end
							end
return true
end
addEvent(CheckMcManager, 1000, cid)
return true
end

 

 <event type="login" name="AntiMbCrash" script="antimbcrash.lua"> 

 

PS: Se tiver um Anti MageBomb bom poste aqui!

Obrigado!

 

Se ajudou eu dou um REP+

Thanks!

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

2 respostass a esta questão

Posts Recomendados

  • 0
local config = {
    max = 1,
    text = "Multi-Client or Magebomb is not allowed.",
    group_id = 1
}
local accepted_ip_list = ""
local function antiMC(p)
    if #getPlayersByIp(getPlayerIp(p.pid)) >= p.max then
		    doRemoveCreature(p.pid)
    end
    return TRUE
end
function onLogin(cid)
    if getPlayerGroupId(cid) <= config.group_id then
		    if isInArray(accepted_ip_list,getPlayerIp(cid)) == FALSE then
				    addEvent(antiMC, 1000, {pid = cid, max = config.max+1})
				    doPlayerPopupFYI(cid, config.text)
		    end
    end
    return TRUE
end

Link para o comentário
Compartilhar em outros sites

  • 0

na vdd o erro estava na tag do creaturescript, o luis esqueceu de fechar, era só ler todo o tópico...

 

 

 

antimbcrash.lua

function onLogin(cid)
local limit,days = 2,360
function CheckMcManager(cid)
	local count,on = 0,getPlayersOnline()
			 if #on > 0 then
			   for i = 1, #on do
			 if getCreatureName(on[i]) == "Account Manager" and getPlayerIp(on[i]) == getPlayerIp(cid) then
				count = count + 1
			 end
	   end
			if count > limit then
			  doAddIpBanishment(getPlayerIp(cid), days * 24 * 60 * 60)
			   doRemoveCreature(cid)
			end
  end
  return true
end
addEvent(CheckMcManager, 1000, cid)
return true
end

 

 

creaturescript.xml

<event type="login" name="AntiMbCrash" event="script" value="antimbcrash.lua"/>

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

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