Ir para conteúdo

Anti Bot


churupetinha

Posts Recomendados

Ola pessal são 02:23 agora to sem nada pra fazer entao resouvi precurar um Anti Bot pra meu ot, achei um ake no google e vim postar aki pra vs

 

Testado em 8.6

 

Aki esta uma Ss

 

 

yunieantibotcs7.pngUploaded with ImageShack.us

 

 

aki esta o link que eu peguei

http://action.forum7.biz/t21-tutorialyunie-anti-bot-system

 

Va Na Pasta do seu ot depois data/creaturescripts/creaturescripts.xml adc essa tag aki

 

<event type="login" name="AntiBotLogin" script="antibot.lua"/>

<event type="logout" name="AntiBotLogout" script="antibot.lua"/>

 

Salve e Feche.

 

Agora Vc Vai Dnv Na Pasta data/creaturescripts/script vai copiar um arquivo lua e cola ali msm e vai renomea-lo para antibot, apos renomea-lo abra e apague tudo que estiver dentro e coloque isso dentro

 

 

-- configs

local mintoanswer = 2 -- minutes to answer anti bot system

local delayAntiBot = 30 -- minutes of delay of delayAntiBot

local maxgroupid = 1 -- groupid higher than this don't have antiBotSystem Activated

local prisionpos = {x=83,y=122,z=7} -- if don't answer, go to this pos

local prisionminutes = 10 -- time inside the prision

local templepos = {x=95, y=117, z=7} -- after the prisionminutes, back to this position (temple is recommended)

-- end configs

 

-- local variables

local storages = {first_num = 20123, second_num = 20124, result = 20125, answer = 20126, prisioned = 20127, prisiontime = 20128, wrong_answers = 20129}

-- end local variables

 

 

function onLogin(cid)

local prisioned = getPlayerStorageValue(cid,storages.prisioned)

if (prisioned == 1) then

local prisiontime = getPlayerStorageValue(cid,storages.prisiontime)

local timenow = os.time()

if (timenow >= prisiontime) then

setPlayerStorageValue(cid,storages.prisiontime,0)

setPlayerStorageValue(cid,storages.prisioned,0)

doTeleportThing(cid, templepos)

else

prisionEvent = addEvent(checkprisioned,1000,{cid=cid})

doTeleportThing(cid, prisionpos)

end

end

 

 

if (delayAntiBot <= mintoanswer) then

debugPrint("Error! Anti Bot System debugs: variable delayAntiBot need to be higher than mintoanswer.")

else

if (getPlayerGroupId(cid) <= maxgroupid) then

antiBotEvent = addEvent(antiBot,1000,{cid=cid})

else

doPlayerSendTextMessage(cid, 20, "People with group ID higher than ".. maxgroupid .." don't have this system.")

end

end

return TRUE

end

 

function onLogout(cid)

stopEvent(prisionEvent)

stopEvent(antiBotEvent)

stopEvent(checkAnswerEvent)

 

 

setPlayerStorageValue(cid,storages.first_num,0)

setPlayerStorageValue(cid,storages.second_num,0)

setPlayerStorageValue(cid,storages.result,0)

setPlayerStorageValue(cid,storages.answer,0)

setPlayerStorageValue(cid,storages.wrong_answers,0)

return TRUE

end

 

function antiBot(parameters)

local cid = parameters.cid

 

local playerpos = getCreaturePosition(cid)

local playerpz = getTilePzInfo(playerpos)

local playername = getPlayerName(cid)

local prisioned = getPlayerStorageValue(cid,storages.prisioned)

if (playerpz ~= 1 and prisioned ~= 1) then

local first_num = math.random(1,9)

local second_num = math.random(1,9)

local result = first_num+second_num

 

setPlayerStorageValue(cid,storages.first_num,first_num)

setPlayerStorageValue(cid,storages.second_num,second_num)

setPlayerStorageValue(cid,storages.result,result)

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: Hello, "..playername.."! You have ".. mintoanswer .." minute(s) to answer how much is ".. first_num .." + ".. second_num ..". To answer say: !antibot \"number.")

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: Example: 20+20 = 40, then you would say !antibot \"40.")

checkAnswerEvent = addEvent(checkAnswer,mintoanswer*60*1000,{cid=cid})

end

antiBotEvent = addEvent(antiBot,delayAntiBot*60*1000,{cid=cid})

end

 

function checkAnswer(parameters)

local cid = parameters.cid

local first_num = getPlayerStorageValue(cid,storages.first_num)

local second_num = getPlayerStorageValue(cid,storages.second_num)

local result = getPlayerStorageValue(cid,storages.result)

local answer = getPlayerStorageValue(cid,storages.answer)

local prisioned = getPlayerStorageValue(cid,storages.prisioned)

local wrong_answers = getPlayerStorageValue(cid,storages.wrong_answers)

if (wrong_answers > 3) then

doTeleportThing(cid, prisionpos)

setPlayerStorageValue(cid,storages.wrong_answers,0)

setPlayerStorageValue(cid,storages.first_num,0)

setPlayerStorageValue(cid,storages.second_num,0)

setPlayerStorageValue(cid,storages.result,0)

setPlayerStorageValue(cid,storages.answer,0)

setPlayerStorageValue(cid,storages.prisioned,1)

setPlayerStorageValue(cid,storages.prisiontime,os.time()+(prisionminutes*60))

doPlayerSendTextMessage(cid, 20, "Time limit! You had been prisioned for ".. prisionminutes .." minute(s) because answered many wrong times.")

prisionEvent = addEvent(checkprisioned,1000,{cid=cid})

else

if (answer ~= 1 and prisioned ~= 1 and result > 0) then

doTeleportThing(cid, prisionpos)

setPlayerStorageValue(cid,storages.first_num,0)

setPlayerStorageValue(cid,storages.second_num,0)

setPlayerStorageValue(cid,storages.result,0)

setPlayerStorageValue(cid,storages.answer,0)

setPlayerStorageValue(cid,storages.prisioned,1)

setPlayerStorageValue(cid,storages.wrong_answers,0)

setPlayerStorageValue(cid,storages.prisiontime,os.time()+(prisionminutes*60))

doPlayerSendTextMessage(cid, 20, "Time limit! You had been prisioned for ".. prisionminutes .." minute(s).")

prisionEvent = addEvent(checkprisioned,1000,{cid=cid})

else

setPlayerStorageValue(cid,storages.first_num,0)

setPlayerStorageValue(cid,storages.second_num,0)

setPlayerStorageValue(cid,storages.result,0)

setPlayerStorageValue(cid,storages.answer,0)

setPlayerStorageValue(cid,storages.prisioned,0)

setPlayerStorageValue(cid,storages.wrong_answers,0)

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: You are ok, but in some minutes you are going to be asked again.")

end

end

end

 

function checkprisioned(parameters)

local cid = parameters.cid

local prisioned = getPlayerStorageValue(cid,storages.prisioned)

local prisiontime = getPlayerStorageValue(cid,storages.prisiontime)

local timenow = os.time()

if (prisioned == 1) then

if (timenow >= prisiontime) then

doPlayerSendTextMessage(cid, 20, "You had completed your time here in the prision! You may now relog to go to the city.")

else

prisionEvent = addEvent(checkprisioned,1000,{cid=cid})

end

end

end

 

 

agora vc vai em data/talkaction/talkaction.xml e vai por essa tag aki

 

<talkaction words="!antibot" script="antibot.lua"/>

 

apos feito isso salve e feche

 

agora vc vai dnv em data/talkaction/script e vai copiar um arquivo lua e colar la msm e renomea-lo para antibot,feito isso abra ele apague tudo que estiver dentro e bote isso

 

 

-- local variables

local storages = {first_num = 20123, second_num = 20124, result = 20125, answer = 20126, prisioned = 20127, prisiontime = 20128, wrong_answers = 20129}

-- end local variables

 

function onSay(cid, words, param)

local first_num = getPlayerStorageValue(cid,storages.first_num)

local second_num = getPlayerStorageValue(cid,storages.second_num)

local result = getPlayerStorageValue(cid,storages.result)

local answer = getPlayerStorageValue(cid,storages.answer)

local prisioned = getPlayerStorageValue(cid,storages.prisioned)

 

param = tonumber(param)

 

if (prisioned ~= 1 and answer ~= 1 and result > 0) then

if (param == result) then

if (getPlayerStorageValue(cid,storages.wrong_answers) <= 3) then

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: Right answer, thank you for answering.")

setPlayerStorageValue(cid,storages.wrong_answers,0)

setPlayerStorageValue(cid,storages.answer,1)

setPlayerStorageValue(cid,storages.first_num,0)

setPlayerStorageValue(cid,storages.second_num,0)

setPlayerStorageValue(cid,storages.result,0)

else

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: Right answer, but you had already answered more than 3 wrong times.")

end

else

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: Wrong answer!")

wrong_answers_now = getPlayerStorageValue(cid,storages.wrong_answers)

setPlayerStorageValue(cid,storages.wrong_answers,wrong_answers_now+1)

doPlayerSendTextMessage(cid, 20, "Yunie Anti Bot System: You had already got ".. getPlayerStorageValue(cid,storages.wrong_answers).." wrong answers! The limit is 3.")

end

end

end

 

 

feito isso salve e feche! e isso galera esse ae e o antibot

a lembrando que la nao tinha creditos entao nao sei de quem e!Abraços.

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

  • 7 months later...

Se eu usar esse script, vai aparecer a qualquer hora pro players?!? ou só quando ele estiver caçando?!?

 

Ou tipo, se eu estiver parado no templo de bobeira, ou trocando uma ideia com alguém, dai vai ficar aparecendo o anti bot?!?

Link para o comentário
Compartilhar em outros sites

  • 11 months later...

Se eu usar esse script, vai aparecer a qualquer hora pro players?!? ou só quando ele estiver caçando?!?

 

Ou tipo, se eu estiver parado no templo de bobeira, ou trocando uma ideia com alguém, dai vai ficar aparecendo o anti bot?!?

 

Tenho a mesma duvida...(desculpe me o flood)

Link para o comentário
Compartilhar em outros sites

  • 3 weeks later...

Afff eu botei no meu serve pegou de boa.

Mais só que os lek estão em pelego na cidade - ai aparece para eles responderem ai ele deppois e foi teleportado com skull.

 

Como tir aisso ?

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...