Ir para conteúdo

Shoguns

Conde
  • Total de itens

    604
  • Registro em

  • Última visita

  • Dias Ganhos

    3

Tudo que Shoguns postou

  1. Ta tudo correto, você ta entrando pelo Ip certo? baiak-lettiss.servegame.com
  2. Ip: baiak-lettiss.servegame.com Port: 7171/7172 Versão: 8.60 City: Baiak e Radbr Exp: 999 com Stages <>Informações sobre o Servidor<> -24 Hrs -Sem Legg -2 City (Baiak e Radbr) -mais de 80 Novos Monstros e Hunt's -Vip 1 ao 8 -45 Novos Items -13 Novas quests -Todos items são free -Mana Rune e Life rune -Arena de duelo de summons (Estilo Pokémon) -Premio para Top Rank duelo de summons -Event Zombie -Eventos diariamente -Castle 24hrs (em breve) -Nova vocation -Npc que vende items no templo (menos os mais fortes que se obtêm em quests) >>Tem muito mas, o unico jeito de você descobrir e entrando lá. ( baiak-lettiss.servegame.com ) Em Breve Postarei algumas Imagens. Att, Shoguns
  3. Shoguns

    Duvida Item

    Pelo oque vi aki, a armor de ID 8884 e uma oceanborn leviathan armor, Então ela já esta no Movements, Abre o seu Movements.xml e aperta Ctrl+F e procure pelo id 8884 é deve estar assim: Você deixa assim:
  4. Este tópico já foi visualizado por 225 usuário(s) [ Ocultar Lista ]
  5. Talvez funcione, não testei Obs: Edite aonde tem tipo Cidade1, Cidade2,Cidade 3 e coloque o Nome das cidades, local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local pos = {x=152,y=58,z=7} -------------- Pos para onde o player sera levado local itemid = 1954 ----------------- Id do item que vai ser removido do player 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 -- Don"t forget npcHandler = npcHandler in the parameters. It is required for all StdModule functions! local travelNode = keywordHandler:addKeyword({"thais"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = "Do you seek a passage to Thais for " .. (getConfigInfo("freeTravel") and "free?" or "180 gold?")}) travelNode:addChildKeyword({"yes"}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 0, destination = {x=32310, y=32210, z=6} }) travelNode:addChildKeyword({"no"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = "We would like to serve you some time."}) local travelNode = keywordHandler:addKeyword({"cidade1"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = "Do you seek a passage to Carlin for " .. (getConfigInfo("freeTravel") and "free?" or "110 gold?")}) travelNode:addChildKeyword({"yes"}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 0, destination = {x=1010, y=1198, z=6} }) travelNode:addChildKeyword({"no"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = "We would like to serve you some time."}) local travelNode = keywordHandler:addKeyword({"cidade2"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = "Do you seek a passage to Cidade2 for " .. (getConfigInfo("freeTravel") and "free?" or "150 gold?")}) travelNode:addChildKeyword({"yes"}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 0, destination = {x=1383, y=525, z=6} }) travelNode:addChildKeyword({"no"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = "We would like to serve you some time."}) local travelNode = keywordHandler:addKeyword({"cidade3"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = "Do you seek a passage to Cidade3 for " .. (getConfigInfo("freeTravel") and "free?" or "150 gold?")}) travelNode:addChildKeyword({"yes"}, StdModule.travel, {npcHandler = npcHandler, premium = false, level = 0, cost = 0, destination = {x=398, y=989, z=6} }) travelNode:addChildKeyword({"no"}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, reset = true, text = "We would like to serve you some time."}) function creatureSayCallback(cid, type, msg) if(not npcHandler:isFocused(cid)) then return false end if msgcontains(msg, "offer") or msgcontains(msg, "help") then selfSay("Eu posso te levar a TAL lugar por um "..getItemNameById(itemid).." item, fale {travel} se quizer viajar.", cid) talkState[cid] = 0 elseif msgcontains(msg, 'travel') then if doPlayerRemoveItem(cid, itemid, 1) then selfSay("Boa viagem.", cid) doTeleportThing(cid, pos) else selfSay("Voce nao tem o item nescessario.", cid) end end return TRUE end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  6. Shoguns

    PokeXMotion

    Área errada, a certa seria: http://www.xtibia.com/forum/forum/318-open-pvp-servers/
  7. Shoguns

    Ajuda

    Ja verificou se existe o Piso para aonde a escada ta levando? Lembrando que se a escada tem curvas, No andar de cima tem que ter Piso na Diagonal.
  8. Npc.xml <npc name="NOMEDONPC" script="data/npc/scripts/npc.lua" walkinterval="2000" floorchange="0"> <health now="100" max="100"/> <look type="134" head="78" body="88" legs="0" feet="88" addons="3"/> <parameters> <parameter key="message_greet" value="Ola. Para mais informacoes de meus servicos diga {offer}." /> <parameter key="message_farewell" value="Tchau." /> <parameter key="message_walkaway" value="Tchau." /> </parameters> </npc> Arquivo.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} local pos = {x=152,y=58,z=7} -------------- Pos para onde o player sera levado local itemid = 1954 ----------------- Id do item que vai ser removido do player 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 if msgcontains(msg, "offer") or msgcontains(msg, "help") then selfSay("Eu posso te levar a TAL lugar por um "..getItemNameById(itemid).." item, fale {travel} se quizer viajar.", cid) talkState[cid] = 0 elseif msgcontains(msg, 'travel') then if doPlayerRemoveItem(cid, itemid, 1) then selfSay("Boa viagem.", cid) doTeleportThing(cid, pos) else selfSay("Voce nao tem o item nescessario.", cid) end end return TRUE end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  9. Npc.lua 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 local itemID = 12006 -- id do item local quantRemove = 1 -- quantidade do item acima que sera removido local storageGain = 5678 -- storage que o player vai ganhar quando o item for removido if (msgcontains(msg, 'yes') and doPlayerRemoveItem(cid, itemID, quantRemove)) then selfSay('MESAGEM QUE O NPC IRA FALAR AO REMOVER O ITEM AQUI ENTRE AS ASPAS.', cid) setPlayerStorageValue(cid, storageGain, 1) else selfSay('MESAGEM QUE O NPC IRA FALAR SE O PLAYER NÂO TIVER O ITEM AQUI ENTRE AS ASPAS.', cid) end return true end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  10. Este tópico já foi visualizado por 224 usuário(s) [Mostrar Lista][ Ocultar Lista ] Pelos poderes de Greiston ! Eu ordeno que você se levante Tópico.
  11. Shoguns

    Phoenix OT

    Créditos 99% Xtibia 1% w3xRPG All rights reserved.
  12. Shoguns

    Teleport Alavancha

    Não funcionou, mas conseguir fazer um que funcionou perfeitamente. Você já atingiu seu limite de reputações positivas para hoje Ta ai o Script pra quem tiver a mesma dúvida: So precisar editar os XXX function onStepIn(cid, item, position, fromPosition) if getPlayerLevel(cid) >= XXX then local teleport = {x=XXX, y=XXX, z=XXX} doTeleportThing(cid, teleport) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "voce precisa do level XXX") return true end
  13. Provavelmente e a sua CPU que não ta aguentando o programa ou ela ta lenta, tente Fazer Scan e Limpar Com um Anti-Virus
  14. Shoguns

    Teleport Alavancha

    Sim, e por movements mesmo que quero. -------EDIT------ Também pode ser com tile.
  15. Shoguns

    Teleport Alavancha

    Funcionou perfeitamente, REP+ Agora outra dúvida, um script de Teleport por level,que funcionaria assim: Se um Player pisa-se no Teleport e não tivesse level, so apare-se a Mensagem tipo: Você precisa do level 600 Valendo rep+ essa tmb.
  16. Bom, eu queria um Script assim, um Player pisaria em um Piso e puxaria a alavancha e Iria para 2 destinos aleatórios, se os 2 estivesses ocupados, apareceria a Mensagem que esta Ocupado, e se tivesse uma pessoa em um dos destino, quem puxa-se a alavancha fosse pro outro destino
  17. No pedido o amigo não pede que a troca envolva Diamonds, e que não mude o looktype.
  18. Tag.xml <talkaction words="!changesex;/changesex;/changender" script="arquivo.lua" /> Arquivo.lua function onSay(cid, words, param, channel) local config = {costPremiumDays = 2} if(getPlayerSex(cid) >= 2) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You cannot change your gender.") return TRUE end if(getPlayerPremiumDays(cid) < config.costPremiumDays) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Sorry, not enough premium time- changing gender costs " .. config.costPremiumDays .. " days.") doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF) return TRUE end if(getPlayerPremiumDays(cid) < 65535) then doPlayerAddPremiumDays(cid, -config.costPremiumDays) end if(getPlayerSex(cid) == PLAYERSEX_FEMALE) then doPlayerSetSex(cid, PLAYERSEX_MALE) else doPlayerSetSex(cid, PLAYERSEX_FEMALE) end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have changed your gender and lost " .. config.costPremiumDays .. " days of premium time.") doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_RED) return TRUE end
  19. Rapaz nem mim fala das ruivas,kkkk Eu namorava uma e tinha medo, porque ela paresia meio Demoníaca. Tenho Medo das Morena porque elas batem Muito em mim. Hoje em dia so pego mesmo as Loiras, são mas bobas e ingenuas.
  20. Comecei no Tibia 3.0 e parei agora no 10.33, Quem quiser mim add lá o Nome e Soquenao o Mundo é Soquelera
  21. O Cara ta fazendo um Protesto porque outro cara que era Virgem igual ele, arranjou um emprego, Pegou uma Mulher e tem uma Vida Social.
  • Quem Está Navegando   0 membros estão online

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