Ir para conteúdo

gnomow157

Campones
  • Total de itens

    35
  • Registro em

  • Última visita

Tudo que gnomow157 postou

  1. Ja fechei 2 OT por causa disso, e estou prestes a fechar o terceiro... alguem sabe me dizer oq eh??? vem isso a todo o minuto ~ segundo, eu tenho anti-nuker e msm assim, o ot nao cai, fica lagando, nao da pra se mexe, ae reiniciei meu computador e agora o server nao abre mais e continua vindo isso, o server abre mas ngm consegue entrar e continua vindo essas coisas
  2. é galera, vcs ja devem ta cansados de me ver aqui, mas sou bem noob msm dessa vez é assim PRECISO MUITOOO³ do npc A Sweaty Cyclops... Entaum eu peguei um ae mas deve ser versao velha.. 8.20 sei la E o problema é que ele ta sempre ocupado, soh da pra falar uma vez com ele, depois ele nao fala mais, diz que ta ocupado e tals... e tb ele nao fala pelo chat NPCs por ser de uma versão mais velha, alguêm me ajuda ? xS Script: local focus = 0 local talk_start = 0 local target = 0 local following = false local attacking = false 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('Olá ' .. creatureGetName(cid) .. '! Eu sou um ferreiro .. Tem algo para mim??') 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, 'crown armor') or msgcontains(msg,'piece of royal steel') then selfSay('Você quer trocar a Crown Armor pela Piece of royal steel ?') talk_state = 1 elseif msgcontains(msg, 'boh') or msgcontains(msg,'enchanted chicken wings') then selfSay('Você quer trocar a Boh pela Enchanted chicken wings ??') talk_state = 2 elseif msgcontains(msg, 'fighting spirit') or msgcontains(msg, 'royal helmet') then selfSay('Você quer trocar 2 Royal Helmet por Fighting spirit ??') talk_state = 3 elseif msgcontains(msg, 'warriors sweat') or msgcontains(msg,'warrior helmet') then selfSay('Você quer trocar 4 warrior helmet por warriors sweat ??') talk_state = 4 elseif msgcontains(msg, 'spool of yarn') or msgcontains(msg,'giant spider silk') then selfSay('Você quer trocar 10 giant spider silk por Spool of yarn ??') talk_state = 5 elseif msgcontains(msg, 'crude iron') or msgcontains(msg,'giant sword') then selfSay('Você quer trocar uma giant sword por um crude iron ??') talk_state = 6 elseif msgcontains(msg, 'devil helmet') or msgcontains(msg,'piece of hell steel') then selfSay('Você quer trocar um devil helmet por um piece of hell steel ??') talk_state = 7 elseif msgcontains(msg, 'dragon shield') or msgcontains(msg,'piece of draconian steel') then selfSay('Você quer trocar um dragon shield por um piece of draconian steel ??') talk_state = 8 elseif talk_state == 1 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2487,1) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5887,1) selfSay('Obrigado !!') end end talk_state = 0 elseif talk_state == 2 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2195,1) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5891,1) selfSay('Thanks for items.') end end talk_state = 0 elseif talk_state == 3 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2498,2) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5884,1) selfSay('Thanks for items.') end end talk_state = 0 elseif talk_state == 4 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2475,4) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5885,1) selfSay('Thanks for items.') end end talk_state = 0 elseif talk_state == 5 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,5879,10) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5886,1) selfSay('Thanks for items.') end end talk_state = 0 elseif talk_state == 6 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2393,1) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5892,1) selfSay('Thanks for items.') end end talk_state = 0 elseif talk_state == 7 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2462,1) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5888,1) selfSay('Thanks for items.') end end talk_state = 0 elseif talk_state == 8 then if msgcontains(msg, 'yes') then itemstatus = doPlayerRemoveItem(cid,2516,1) if itemstatus == 0 then selfSay('Sorry, you not have items.') else doPlayerAddItem(cid,5889,1) selfSay('Thanks for items.') end end elseif msgcontains(msg, 'bye') and getDistanceToCreature(cid) < 4 then selfSay('Good bye, ' .. creatureGetName(cid) .. '!') focus = 0 talk_start = 0 end end function onCreatureChangeOutfit(creature) end function onThink() if (os.clock() - talk_start) > 30 then if focus > 0 then selfSay('Next Please...') end focus = 0 end end end if focus ~= 0 then if getDistanceToCreature(focus) > 5 then selfSay('Good bye then.') focus = 0 end end Npc: <?xml version="1.0"?> <npc name="A Sweaty Cyclops" script="data/npc/scripts/cyc.lua" access="3" lookdir="2" walkinterval="2000"> <mana now="800" max="800"/> <health now="200" max="200"/> <look type="22" head="20" body="30" legs="40" feet="50" /> </npc> Ficarei Grato se conseguirem arumar pra ele falar pelo NPCs Channel, mas o principal é ele falar com o próximo
  3. Vc viu oq vc me mando ? ? ;s eu fui nessa parte do forum ae... n tem nada de 8.4
  4. Não.. paladin armor funciona, os livro funciona, mas A yalahari leg piece e yalahari mask nao funciona =/
  5. Não me ajudaram muito... fale algum server que tenha pelo menos ;/ mas vlw a intenção
  6. Curti mais o Ztracker que eu não conhecia do que o map de yalahar aiusdhauisdhasudhau... ótimo tópico cara
  7. Estou logando no tibia pra clona os frosts uashdauisdhauisdh Vlwzão, espero que funcione :* Your's, Gnomow ~
  8. Eu uso tfs servfull... o modo de pesquisa do xtibia fico muito ruim agora, então ta dificil de achar algo... quero as spells 8.40, se alguem ta afim de posta eu agradeço muito, meu server fica on em 2 dias +- e preciso das spells urgentemente, vlwzao :* Your's, Gnomow
  9. Galera, eu vo explicar o porque que buga o !ranks de vcs. Uma vez o meu tb bugava, qndo nao salvava nada, o player relogava e voltava skills 10.. o motivo era: SQLITE Depois que comecei usar xampp... Adeus bugs mas só uma coisa, se forem usa xampp, usem versao 1.6.7 ou 1.7.0 ~ as outras não são tao boas. eduardomaloka55 -> aposto que vc usa sqlite neh nao?? Flw ae galera, xampp eh um pouquinho mais dificil de usar, mas parando e lendo um tutorial vc aprende rapido e facil. Your's, Gnomow ~
  10. Pow cara, mto simples, rapido e funciona Gostei
  11. Quero fazer funcionar o yalahari set pra aumentar o skill... o ml e tals alguem sabe como?
  12. Meu servidor TFS protocolo 8.4 mapa global, mas não full, aquele de 20 e pocos mb la ausdhauidhasidha ele não tem nenhuma spell 8.4, eu quero colocar, todas, alguêm sabe se tem como e se vai funcionar? Vlwzão !
  13. é assim, fiz uma quest, ae vo colocar pra escolher entre Yalahari Armor, Yalahari leg piece ou Yalahari mask... eu sei que tem no ot porque eu ja testei, mas no map editor não tem pra mim colocar em amostra pros cara pode escolher alguem sabe como eu faço pra puxa o item do ot pro map editor??? Vlwzão ;*
  14. Aqui deu isso no scan: Sunbelt 3.2.1835.2 2009.01.16 <Corrupted Archive> _EDIT_ Deu isso pq ta foda o site ae pra baxa ;s _EDIT [2]_ LoL... qual é a senha pra instala?
  15. Fiz isso, e olha que que deu agora: _______________________ Eu não editei pq fica feio quando edita
  16. [29/01/2009 09:37:53] Lua Script Error: [Action Interface] [29/01/2009 09:37:53] data/actions/scripts/quests/ancient/parchment.lua [29/01/2009 09:37:53] data/actions/scripts/quests/ancient/parchment.lua:12: attempt to call global 'getStorageValue' (a nil value) [29/01/2009 09:37:53] Warning: [Event::loadScript] Can not load script. data/actions/scripts/quests/ancient/parchment.lua Da esse erro quando eu abro o ot /\
  17. Qndo eu abro o ot da erro que nao foi possivel dar load na script ~ =d
  18. Nenhum funciono.. Tprocheira: [28/01/2009 23:49:58] Lua Script Error: [Action Interface] [28/01/2009 23:49:58] data/actions/scripts/quests/ancient/parchment.lua:onUse [28/01/2009 23:49:58] data/actions/scripts/quests/ancient/parchment.lua:6: attempt to perform arithmetic on global 'tempo' (a function value) [28/01/2009 23:49:58] stack traceback: [28/01/2009 23:49:58] data/actions/scripts/quests/ancient/parchment.lua:6: in function <data/actions/scripts/quests/ancient/parchment.lua:3> Brainless: Nessa não da erro algum, mas nada acontece quando clicka :S
  19. é a ultima, 1.1.4... e qndo eu abro tipo, do diretorio do RME, da aquele erro de não enviar, pq o map eh 8.3 _______________________________ Puts, fiz isso e sumiu tudo os npc do map :S ____________________________________ AE ARUMEI, VLW CARA TE AMO Bah, Agora deu merda ;S Olha: Ta, se me ajuda eu fico grato.
  20. ~~~~ Não precisa ser isso no maximo, mas mais ou menos isso entendeu?? que tire entre uns 300~400 de PLAYER pode tirar digamos as vezes uns 500
  • Quem Está Navegando   0 membros estão online

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