Ir para conteúdo

Markzi

Campones
  • Total de itens

    9
  • Registro em

  • Última visita

Sobre Markzi

Últimos Visitantes

O bloco dos últimos visitantes está desativado e não está sendo visualizado por outros usuários.

Markzi's Achievements

  1. Boa noite cara,

     

    tudo bem? pelo que avaliei ele está querendo me meter a faca por algo que não é um absurdo pra ser feito... você cobraria quanto para adaptar ele no 1.3?

    1. Noninhouh

      Noninhouh

      Cara, assim, como eu teria que pegar e aprender a mexer em TFS 1.X primeira para te ajudar, eu aconselho que você mesmo aprenda essa tarefa, não seria difícil. Você teria primeiramente que ver se todas essas funções usadas (como onJoin, onLeave, onSpeak do chatchannels, dentre outras) estão nas sources do TFS que você está usando.

      Se a sources possui todas essas funções, então o problema está realmente no script.

  2. @Noninhouh Eu não sei nada de script... não sei nem quais são as funções desse script para incluir, posso falar contigo privado?
  3. @Poccnn Vou ter que reviver, entrei com contato com o proprietario e ele quis adaptar o script para 1.3, porém me cobrou 300 reais!!!!!!!!! Não é possível que não de para rodar ele no tfs 1.3, por favor me ajude nisto. O script não roda, simplesmente não roda, ele não bugga, não da erro no distro, não executa após matar os bixos, nada!!!! Porém no tfs 1.2 é totalmente funcional e perfeito! AJUDEEEE!!
  4. Oi @Poccnn, O Meu login.lua ficou assim: -- Events for i = 1, #events do player:registerEvent(events) player:registerEvent("AutoLoot") registerCreatureEvent(cid, "AntiBot") end Continua não funcionando. att
  5. Boa noite! Acabo de instalar um script anti-bot que encontrei em um forum concorrente, porem, o mesmo não funciona na minha distro, mesmo o sistema estar designado para 1.x, não funcionou no meu 1.3 e não apresentou qualquer bug... apenas nenhum funcionamento. Se puderem me ajudar! agradeço pois sou leigo em scripts. creaturescript/scripts/antibot.lua --[[ ## SCRIPT BY: Pedriinz ## ## CONTACT SKYPE: pedrosz4 ## ]] ANTI_BOT_SYSTEM = { config = { minMonstersToCheck = 2, -- O sistema irá escolher aleatoriamente um número de monstros entre esses dois valores para verificar. maxMonstersToCheck = 4, channelId = 10, -- Id do channel que será aberto para realizar a verificação. timeToAnswer = 10, -- Quanto tempo em segundos o jogador tem para responder a verificação. monstersForNotCheck = {'rat', 'bug', 'tiger'}, -- Monstros que não serão verificados pelo sistema. notations = 3, -- Quantas notificações o jogador pode receber antes de ser banido. banDays = 1, -- Quantidade de dias o personagem vai ficar banido por utilizar bot. storageForNotations = 1222, -- Storage onde ficará salvo as notations. storageForOpenChat = 10383, -- Storage que permitira o chat ser aberto. (Aconselho não mudar). }, questions = { [1] = {question = 'Digite quantas letras possui a palavra: Carro', answer = '5'}, [2] = {question = 'O que significa Ying e Yang?', answer = 'bem e o mal'}, [3] = {question = 'Qual é a cor do sol?', answer = 'amarelo'}, --[numero seguinte] = {question = 'pergunta', answer = 'resposta'}, }, cache = { players = { --[player:getId()] = {count = 1} }, question = 0, }, messages = { reason = {msg = 'Você foi banido por utilizar bot 100% AFK.'}, notation = {msg = 'Você foi penalizado e recebeu um notificação. Lembre-se que após receber 3 notificações você será banido. Você possui %d notificações no momento.', type = MESSAGE_EVENT_ADVANCE}, attention = {msg = '[Anti-Bot] Atenção! Você só possui %d segundos para responder a verificação.', type = TALKTYPE_CHANNEL_O}, channel_enter = {msg = '[Anti-Bot] Você está sobre suspeitas de uso aplicativos não autorizados.\nPor favor, confirme a verificação a seguir, você possui %d segundos para isso.', type = TALKTYPE_CHANNEL_O}, channel_close = {msg = '[Anti-Bot] Para sua segurança, não é possivel fechar este channel antes da verificação. Por favor responda o que lhe foi perguntado para que não seja penalizado.', type = TALKTYPE_CHANNEL_O}, wrong_answer = {msg = '[Anti-Bot] Resposta errada, por favor tente novamente.', type = TALKTYPE_CHANNEL_O}, correct_answer = {msg = '[Anti-Bot] Você respondeu corretamente, obrigado e bom jogo! Você já pode fechar este channel.', type = TALKTYPE_CHANNEL_O}, unconfirmed = {msg = 'Você não realizou a verificação corretamente, por isso você foi penalizado. Este channel já pode ser fechado.', type = TALKTYPE_CHANNEL_O}, } } function vericationBot(cid) local player = Player(cid) local timeNow = os.time() if not player then return true end if not ANTI_BOT_SYSTEM.cache.players[player:getId()] or ANTI_BOT_SYSTEM.cache.players[player:getId()].verified == false then return true else player:sendChannelMessage("", ANTI_BOT_SYSTEM.messages.unconfirmed.msg, ANTI_BOT_SYSTEM.messages.unconfirmed.type, ANTI_BOT_SYSTEM.config.channelId) ANTI_BOT_SYSTEM.cache.players[player:getId()] = nil if player:getStorageValue(ANTI_BOT_SYSTEM.config.storageForNotations) < ANTI_BOT_SYSTEM.config.notations then if player:getStorageValue(ANTI_BOT_SYSTEM.config.storageForNotations) ~= -1 then player:setStorageValue(ANTI_BOT_SYSTEM.config.storageForNotations, math.max(player:getStorageValue(ANTI_BOT_SYSTEM.config.storageForNotations) + 1)) else player:setStorageValue(ANTI_BOT_SYSTEM.config.storageForNotations, 1) end player:teleportTo(player:getTown():getTemplePosition()) player:sendTextMessage(ANTI_BOT_SYSTEM.messages.notation.type, string.format(ANTI_BOT_SYSTEM.messages.notation.msg, math.max(player:getStorageValue(ANTI_BOT_SYSTEM.config.storageForNotations)))) else player:teleportTo(player:getTown():getTemplePosition()) db.query("INSERT INTO `account_bans` (`account_id`, `reason`, `banned_at`, `expires_at`, `banned_by`) VALUES (" ..getAccountNumberByPlayerName(player:getName())..", "..db.escapeString(ANTI_BOT_SYSTEM.messages.reason.msg)..", "..timeNow..", "..timeNow + (ANTI_BOT_SYSTEM.config.banDays * 86400) ..", 1)") player:remove() end end return true end function onKill(creature, target) local targetMonster = target:getMonster() local player = creature:getPlayer() local random = math.random(ANTI_BOT_SYSTEM.config.minMonstersToCheck, ANTI_BOT_SYSTEM.config.maxMonstersToCheck) if not targetMonster then return true end if isInArray(ANTI_BOT_SYSTEM.config.monstersForNotCheck, targetMonster:getName():lower()) then return true end if not ANTI_BOT_SYSTEM.cache.players[player:getId()] then ANTI_BOT_SYSTEM.cache.players[player:getId()] = {count = 1, verified = false} else if ANTI_BOT_SYSTEM.cache.players[player:getId()].count >= random then ANTI_BOT_SYSTEM.cache.players[player:getId()] = {count = math.max(ANTI_BOT_SYSTEM.cache.players[player:getId()].count), verified = true} player:openChannel(ANTI_BOT_SYSTEM.config.channelId) player:getPosition():sendMagicEffect(CONST_ME_TUTORIALSQUARE) else ANTI_BOT_SYSTEM.cache.players[player:getId()] = {count = math.max(ANTI_BOT_SYSTEM.cache.players[player:getId()].count) + 1, verified = false} end end return true end creaturescript/creaturescript.xml <!-- Anti Bot by Pedriinz --> <event type="kill" name="AntiBot" script="antibot.lua" /> creaturescript/scripts/others/login.lua 'AntiBot', chatchannels/chatchannels.xml <channel id="10" name="Anti Bot" public="1" script="antibot.lua" /> chatchannels/scripts/antibot.lua function onJoin(player) if not player then return true end if not ANTI_BOT_SYSTEM.cache.players[player:getId()] or ANTI_BOT_SYSTEM.cache.players[player:getId()].verified == false then player:popupFYI('You can\'t open this channel.') return false end addEvent(function() player:sendChannelMessage("", string.format(ANTI_BOT_SYSTEM.messages.channel_enter.msg, ANTI_BOT_SYSTEM.config.timeToAnswer), ANTI_BOT_SYSTEM.messages.channel_enter.type, ANTI_BOT_SYSTEM.config.channelId) end, 300) addEvent(function() local random = math.random(#ANTI_BOT_SYSTEM.questions) player:sendChannelMessage("", ANTI_BOT_SYSTEM.questions[random].question, TALKTYPE_CHANNEL_R1, ANTI_BOT_SYSTEM.config.channelId) ANTI_BOT_SYSTEM.cache.question = random end, 2000) addEvent(vericationBot, ANTI_BOT_SYSTEM.config.timeToAnswer * 1000, player:getId()) return true end function onLeave(player) if not player then return true end if ANTI_BOT_SYSTEM.cache.players[player:getId()] then player:openChannel(ANTI_BOT_SYSTEM.config.channelId) addEvent(function() player:sendChannelMessage("", ANTI_BOT_SYSTEM.messages.channel_close.msg, ANTI_BOT_SYSTEM.messages.channel_close.type, ANTI_BOT_SYSTEM.config.channelId) end, 300) end end function onSpeak(player, type, message) player:sendChannelMessage(player:getName(), message, TALKTYPE_CHANNEL_Y, ANTI_BOT_SYSTEM.config.channelId) if message ~= ANTI_BOT_SYSTEM.questions[ANTI_BOT_SYSTEM.cache.question].answer then addEvent(function() player:sendChannelMessage("", ANTI_BOT_SYSTEM.messages.wrong_answer.msg, ANTI_BOT_SYSTEM.messages.wrong_answer.type, ANTI_BOT_SYSTEM.config.channelId) end, 300) else addEvent(function() player:sendChannelMessage("", ANTI_BOT_SYSTEM.messages.correct_answer.msg, ANTI_BOT_SYSTEM.messages.correct_answer.type, ANTI_BOT_SYSTEM.config.channelId) end, 300) ANTI_BOT_SYSTEM.cache.players[player:getId()] = nil end return false end OBRIGADO!
  6. Sim, eu compreendi, só que quando se altera o config.lua que está atrelado ao site gera esse bug, o site não reconhece essa tag e o script não roda no 1.3 tfs
  7. meu ot não possui creaturescripts/scripts/config.lua alternativa? problema com o site também Error occured! Error ID: More info: ERROR: #C-1 : Class::ConfigLUA - Line 62 of LUA config file is not valid [key: huntedTopLevel]File: /var/www/html/classes/configlua.php Line: 59File: /var/www/html/classes/configlua.php Line: 20File: /var/www/html/classes/configlua.php Line: 12File: /var/www/html/system/load.init.php Line: 42File: /var/www/html/index.php Line: 18
  8. Opa galera!! A um tempo atrás queria montar um ot... então montei! mas me vejo em dificuldades na vida particular e na profissional, sou estudante de medicina de uma faculdade federal, o que me toma quase todo o tempo da vida! agora vem a parte engraçada! tenho 1 ano de servidor PAGO! o server está online, tem seus 15-25 players online, porém estou triste, quero mais! e algo que impede são alguns bugs, preciso urgentemente de alguém capaz de trabalhar com scripts, map e algumas coisinhas mais, todo trabalho vai ser recompensado, como sabem a confiança é algo conquistada, e eu estou disposto a confiar! tenho vagas na minha equipe e quero as preencher, peço que entrem no ot e avaliem, possui muitas coisas maneiras!! como já disse, tudo o que fiz foi por minha conta!, me mandem informações de sua vida como idade e tempo disponível, e suas habilidades, vou querer que comprovem elas... (claro) e depois disso vamos trabalhar juntos e montar um ot que não se preocupa só com dinheiro! que quer gerar um conteudo maneiro para os players!! www.paulistaot.com Nick: ADM Markz Me mandem um formulário assim: Nome: Idade: Tempo que joga tibia: Pretensão de valor ou ganhos: Tempo Disponível: Obrigado! espero a todos!!
  • Quem Está Navegando   0 membros estão online

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