Ir para conteúdo

marcolax

Campones
  • Total de itens

    7
  • Registro em

  • Última visita

Sobre marcolax

Informações

  • Forma que conheci o xTibia
    Sites de Busca
  • Sou
    OT-Admin

marcolax's Achievements

  1. Galera não sei se aqui é area certa por ser novo no fórum então la vai: * Apenas tem 2 meses de uso e ainda poderá atualizar até dezembro desse ano. * Como o ipb está na versão 3.1.2 você poderá baixar normalmente assim como as versões posteriores e terá suporte ao ipb. * Estou vendendo por 200 reais, mais se for paga a vista eu vendo por 180 reais, podemos negociar de outra forma, so afirmando que o pagamento é via Pagseguro então tipo não há meio de haver fraude's. Bom a minha licença ela foi comprada em junho desse ano. O motivo da minha venda é que eu estou querendo comprar uma licença do vbulletin então estou vendendo a minha para interar os valores, quem tiver interassado é so comentar abaixo que nós vamos entrar em um acordo para a venda. Lembrando que uma licença no site oficial do ipb custa $ 150,00 ( Dóllares americanos ), que sai em torno de 263 e fração já que hoje o dólar está custando R$ 1.75. Como eu disse a cima não se aqui é o tópico certo se não for peço que o administrador ou moderador mova o meu tópico para o fórum correto. Obrigado!
  2. Eu tento fazer o backup do meu mysql mais quando eu faço o backup exportando o arquivo ele vai bem. So que quando eu inporto esse arquivo ele da um erro. porque acontece isso? como eu faço para fazer o backup da detabase e instalar em qualquer pc sem da erro? obrigado
  3. q mal eu te pergunte xD pra q msn? o tutor ta incompleto eu ja disse genteeeeeeeeeeeeee ( se for fazer um tutor so por fazer e melhor nao fazer por preguiça ) ate mais
  4. CARA EU TE AGRASDEÇO DE TODO MEU CORAÇAO Xd BOA SORTE AI PRA VC E Q VC IRA DE PROPERAR NA VIDA
  5. marcolax

    Johnny

    Abrar um bloco de nota copie o q esta aki na pasta data\npc\script salve como promote.lua local focus = 0 local talk_start = 0 local target = 0 local days = 0 function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Good bye then.') focus = 0 talk_start = 0 end end function onCreatureTurn(creature) end function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function onCreatureSay(cid, type, msg) msg = string.lower(msg) if (msgcontains(msg, 'hi') and (focus == 0)) and getDistanceToCreature(cid) < 4 then selfSay('Hello ' .. creatureGetName(cid) .. '! I sell premiums and promotions.') focus = cid talk_start = os.clock() elseif msgcontains(msg, 'hi') and (focus ~= cid) and getDistanceToCreature(cid) < 4 then selfSay('Sorry, ' .. creatureGetName(cid) .. '! I talk to you in a minute.') elseif focus == cid then talk_start = os.clock() if msgcontains(msg, 'promotion') or msgcontains(msg, 'promote') then if getPlayerVocation(cid) > 4 then selfSay('Sorry, you are already promoted.') talk_state = 0 elseif getPlayerLevel(cid) < 20 then selfSay('Sorry, you need level 20 to buy promotion.') talk_state = 0 elseif not isPremium(cid) then selfSay('Sorry, you must be premium to buy promotion.') talk_state = 0 else selfSay('Do you want to buy promotion for 20k?') talk_state = 1 end elseif msgcontains(msg, 'premium') or msgcontains(msg, 'premmy') then selfSay('Do you want to buy 7 days of premium for 7k?') talk_state = 2 elseif talk_state == 1 then if msgcontains(msg, 'yes') then if pay(cid,20000) then doPlayerSetVocation(cid, getPlayerVocation(cid)+4) selfSay('You are now promoted!') else selfSay('Sorry, you do not have enough money.') end end talk_state = 0 elseif talk_state == 2 then if msgcontains(msg, 'yes') then if pay(cid,7000) then buyPrem(cid, 7) selfSay('You have 7 days of premium more!') else selfSay('Sorry, you do not have enough money.') end end talk_state = 0 elseif msgcontains(msg, 'bye') and getDistanceToCreature(cid) < 4 then selfSay('Good bye, ' .. creatureGetName(cid) .. '!') focus = 0 talk_start = 0 end end end function onCreatureChangeOutfit(creature) end function onThink() if focus > 0 then x, y, z = creatureGetPosition(focus) myx, myy, myz = selfGetPosition() if ((myy-y==0) and (myx-x<=0 and myx-x>=-4)) then selfTurn(1) end if ((myy-y==0) and (myx-x>=0 and myx-x<=4)) then selfTurn(3) end if ((myx-x==0) and (myy-y<=0 and myy-y>=-4)) then selfTurn(2) end if ((myx-x==0) and (myy-y>=0 and myy-y<=4)) then selfTurn(0) end if ((myy-y==-2) and (myx-x>=-1 and myx-x<=1)) then selfTurn(2) end if ((myy-y==2) and (myx-x>=-1 and myx-x<=1)) then selfTurn(0) end if ((myx-x==2) and (myy-y>=-1 and myy-y<=1)) then selfTurn(3) end if ((myx-x==-2) and (myy-y>=-1 and myy-y<=1)) then selfTurn(1) end if ((myy-y==-3) and (myx-x>=-2 and myx-x<=2)) then selfTurn(2) end if ((myy-y==3) and (myx-x>=-2 and myx-x<=2)) then selfTurn(0) end if ((myx-x==3) and (myy-y>=-2 and myy-y<=2)) then selfTurn(3) end if ((myx-x==-3) and (myy-y>=-2 and myy-y<=2)) then selfTurn(1) end if ((myy-y==-4) and (myx-x>=-3 and myx-x<=3)) then selfTurn(2) end if ((myy-y==4) and (myx-x>=-3 and myx-x<=3)) then selfTurn(0) end if ((myx-x==4) and (myy-y>=-3 and myy-y<=3)) then selfTurn(3) end if ((myx-x==-4) and (myy-y>=-3 and myy-y<=3)) then selfTurn(1) end end if (os.clock() - talk_start) > 30 then if focus > 0 then selfSay('Next Please...') end focus = 0 end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('Good bye then.') focus = 0 end end end agora abrar outro bloco de notas e salve esse na pasta data\npc como Johnny.xml <?xml version="1.0"?> <npc name="Johnny" script="data/npc/scripts/promote.lua" access="3" lookdir="2"> <mana now="800" max="800"/> <health now="200" max="200"/> <look type="133" head="114" body="119" legs="132" feet="114"/> </npc>
  6. marcolax

    Servfull 7..

    Servfull 0.7 (Protocolo 7.92) -- As vantagens que as outras versões Servfull não tem -- --> Acc Manager <-- Senha: 111111/tibia Bug: O do set incorreto Level e Magic level inadequado --> Bug Fixed <-- <><><><><><><><><> -- Configurei umas motanhas no serv. -- Fiz os treiner. -- Fiz os treiner porque dava para sumona o pig. <><><><><><><><><> -- Ajeitei as magias. -- 70 % dos bug's que nukar o serv retirados. -- O original n.s.o . <><><><><><><><><> -- Todas as vocações estavam usando todas as magias bug corrigido -- Cada vocação com sua magia adequada. <><><><><><><><><> -- Algumas quest não estvam funcionando. -- Quest configuradas. <><><><><><><><><> -- Configurei uma invasão em Edron. -- /raid morga... Fiz só uma mais irei fazer mais. <><><><><><><><><> -- Espero que goste do serv.. -- Comente porfavor diga o que você achou do serv... -- Se ver algum bug post so assim irei fazer versões melhores. <><><><><><><><><> --> Quest <--- -- Banshee Quest-- (LV 60) -- Demon Helmet-- (LV 100) -- Anihilator-- (LV 100) -- Ancient Helmet-- (LV 100) -- DSM-- (LV 95) -- Demona Quest-- (LV 80) -- RH-- (LV 30) -- Behe Quest-- (LV 80) -- Ring of the skies-- (LV 85) -- Bright Sowrd-- (LV 45) -- Banshee Quest-- (LV 60) -- Crown Legs-- (LV 8) -- Blue <> BOH <> SS-- (LV 60) -- Warlock Quest -- (LV 70) -- Knight Armor-- (LV 8) -- Teddy Bear-- (LV 135) -- Mms and Giant Sword-- (LV 100) --> 4 Itens Raros <-- (LV 210) -- Crystal Arrow -- Gold Ring -- Dragon Scale Legs -- Great Shield --> + 4 Itens Raros <-- (LV 220) -- Magic Plate Armor -- Great Axe -- Horned Helmet -- Golden Boots -- Fire Sowrd -- (LV 20) -- Warrior Helmet -- (LV 8) --> e Muito + <-- <><><><><><><><><> --> City <-- -- Ab'dendriel -- Carlin -- Thais -- Venore -- Ankrahmun -- Port Hope -- Edron -- New Island <><><><><><><><><> -- Lembrando o Serv e muito pesado por causa ta extensidade do mapa. -- Ele só abre em computador de 512 mais de memoria. -- Ele pode até abri em outros se tiver bem leve o computador. Aguns bugs foram concertados um deles foi o premium account...... brigado. mais os creditos sao dos pessoais ai de cima :nuts: http://www.speedyshare.com/874752122.html Link lix: http://lix.in/d29e09
  • Quem Está Navegando   0 membros estão online

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