
Tudo que Wend II postou
-
(Resolvido)Antivirus bloqueiando distro
Olá baixei um server em winrar, mais quando extraiu o meu antivirus acusa vírus na distro do servidor isso acontece com todos os servidores que eu baixo, alguém poderia mim ajudar a resolve? antivirus usado é o avast rep+ pra quem ajudar
-
Problemas para abrir portas de roteador
só precisa fazer isso ou algo mais? como irei sabe se estão abertas?
-
Problemas para abrir portas de roteador
achei isso no link do roteador:
-
Problemas para abrir portas de roteador
up
- [MOD] Catch Windowns V1.3 By Orochi Elf
-
Problemas para abrir portas de roteador
up
-
Problemas para abrir portas de roteador
Como posso abrir as portas 7171, 7172 e 80 do meu roteador? uso esse roteador ai: Roteador Wireless N 150 Mbps marca: LINK1ONE
-
Evento KillTen [PEDIDO]
bump
-
(Resolvido)Horario em Loteria
bump
-
(Resolvido)Ajuste em um NPC
bump
- [MOD] Novo BroadCast
-
Evento KillTen [PEDIDO]
up
-
Evento KillTen [PEDIDO]
Queria um evento desses também, mais só que seria todos os dias em um mesmo horario servidor de poketibia versao 8.54
-
(Resolvido)Horario em Loteria
Obrigado, agora sim está tudo resolvido
-
(Resolvido)Ajuste em um NPC
sim
-
(Resolvido)Horario em Loteria
certo, já tinha tentando isso e deu certo só que ainda tem outro problema tentei assim; <globalevent name="loteria" time="17:55;18:00" event="script" value="loteria.lua"/> o primeiro horario funcionou mais o segundo horario não aconteceu nada
-
(Resolvido)Ajuste em um NPC
Boa sorte. Resolvido obrigado
-
(Resolvido)Horario em Loteria
resolvido rep+ agora ajuda aqui >> http://www.tibiaking.com/forum/topic/45489-ajuste-em-um-npc/ coloquei assim e não funcinou oque pode ser? <globalevent name="loteria" time="17:40:00;17:45:00" event="script" value="loteria.lua"/>
-
(Resolvido)Ajuste em um NPC
Não sou bom com "FOR" e se eu fosse criar para verificar um por um iria ficar muito grande o script. Espero que funcione. Boa sorte. deu esse erro no NPC; [06/11/2014 17:16:36] [Error - LuaScriptInterface::loadFile] data/npc/scripts/Torneio.lua:46: 'end' expected (to close 'for' at line 32) near 'else' [06/11/2014 17:16:36] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/Torneio.lua [06/11/2014 17:16:36] data/npc/scripts/Torneio.lua:46: 'end' expected (to close 'for' at line 32) near 'else'
-
(Resolvido)Horario em Loteria
Mais se eu quiser que aconteça em 2 horarios no dia como farei?
-
(Resolvido)Ajuste em um NPC
Olá queria que alguém fizesse uma modificação nesse NPC, ele funciona assim; o player fala hi/torneio/yes e é teleportado para uma sala, até ai tudo bem mais eu queria que alguém colocasse uma função que se o player tivesse um desses items >> 12343, 12345, 12348, 12347, 12346, 12349, 12344 se o player tivesse um desses items acima, ai o NPC não teleportava npc local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end function creatureSayCallback(cid, type, msg) if(not npcHandler:isFocused(cid)) then return false end local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid if msgcontains(msg, 'torneio') or msgcontains(msg, 'enter') then selfSay('Voce quer participar do torneio por ['..torneio.price..'] dollars? [Sim/Yes]', cid) talkState[talkUser] = 2 elseif talkState[talkUser] == 2 then if msgcontains(msg, 'yes') or msgcontains(msg, 'sim') then if os.date("%X") < torneio.startHour or os.date("%X") > torneio.endHour then selfSay('As inscricoes para o torneio terminaram, volte Amanha as '..torneio.startHour..' para nova inscricao.', cid) return true end if doPlayerRemoveMoney(cid, torneio.price) then doTeleportThing(cid, torneio.waitPlace) setPlayerStorageValue(cid,130130,1) doPlayerSendTextMessage(cid, 21, "Bem-vindo(a), esta e a sala de espera, voce espera aqui enquanto o torneio nao comeca. hora de inicio: {"..torneio.endHour.."}.") else selfSay('Voce nao Tem Dinheiro ('..torneio.price..').', cid) end else selfSay('Voce nao quer participar do Torneio? Venha no proximo dia ~~ Todos os Dias as '..torneio.startHour..'.', cid) talkState[talkUser] = 0 end end end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new()) up
-
(Resolvido)Horario em Loteria
não teria que modifica no script também? up
-
(Resolvido)Horario em Loteria
Olá, estou com esse script de loteria, mais eu queria coloca uma hora definida para acontece todos os dias naquela mesmo hora entendem? local premio = { [1] = {item = 2160, count = 5}, } local configs = { hours = 1, -- quantas em quantas horas, vai acontecer. winners = 1, -- qntos players podem ganhar. } function onThink(interval, lastExecution) local p = getPlayersOnline() local winners = configs.winners if #p < winners then winners = #p end for i = 1, winners do local p = getPlayersOnline() local c, w = #p, #premio local d, e = math.random(c), math.random(w) local playerwin = p[d] doPlayerAddItem(playerwin, premio[e].item, premio[e].count) doBroadcastMessage("[LOTTERY SYSTEM] Ganhador: " .. getCreatureName(playerwin) .. ", Premio: " .. premio[e].count .. " " .. getItemNameById(premio[e].item) .. ", Parabens!") if i == winners then doBroadcastMessage("(Proxima loteria em " ..configs.hours.. " horas.)") end doSendMagicEffect(getThingPos(playerwin), 12) end return true end <globalevent name="Lotery" interval="3600" event="script" value="lottery.lua"/>
-
[OTClient] bug login
Ola deixei o meu entergame.otui da pasta entergame assim Logo < UIImageView image-source: /images/entergame image-smooth: false image-fixed-ratio: true size: 236 82 EnterGameWindow < MainWindow size: 269 280 EnterGameButton < Button width: 64 EnterGameWindow id: enterGame !text: tr('Enter Game') @onEnter: EnterGame.doLogin() Logo anchors.left: parent.left anchors.top: parent.top MenuLabel !text: tr('Account') anchors.left: parent.left anchors.top: parent.top margin-top: 87 text-auto-resize: true PasswordTextEdit id: accountNameTextEdit anchors.left: parent.left anchors.right: parent.right anchors.top: prev.bottom margin-top: 2 MenuLabel !text: tr('Password') anchors.left: prev.left anchors.top: prev.bottom margin-top: 8 text-auto-resize: true PasswordTextEdit id: accountPasswordTextEdit anchors.left: parent.left anchors.right: parent.right anchors.top: prev.bottom margin-top: 2 CheckBox id: rememberPasswordBox !text: tr('Remember password') !tooltip: tr('Remember account and password when starts client') anchors.left: parent.left anchors.right: parent.right anchors.top: prev.bottom margin-top: 10 @onCheckChange: self:getParent():getChildById('autoLoginBox'):setEnabled(self:isChecked()) CheckBox id: autoLoginBox enabled: false !text: tr('Auto login') !tooltip: tr('Open charlist automatically when starting client') anchors.left: parent.left anchors.right: parent.right anchors.top: prev.bottom margin-top: 2 EnterGameButton !text: tr('Entrar') anchors.right: parent.right anchors.bottom: parent.bottom @onClick: EnterGame.doLogin() Label id: serverInfoLabel font: verdana-11px-rounded anchors.bottom: parent.bottom anchors.left: parent.left color: green text-auto-resize: true ate ai tudo bem mais não dar para loga, toda vez que coloco a conta e aperto enter ou no botão "Ok" não acontece nada acho que foi alguma coisa que eu fiz de errado no arquivo entergmae.otui imagem, toda vez que aperto "enter" ou "ok" não acontece nada
-
[OTC] Bug
aqui está >> client_entergame.rar porfavor faz alguma coisa para ele funciona