Ir para conteúdo

Fausto32

Membro
  • Registro em

  • Última visita

Tudo que Fausto32 postou

  1. Fausto32 postou uma resposta no tópico em Suporte Tibia OTServer
    Copia um .lua lá renomeia pra firstitems e cola o code ae . Como c tá vendo ae ta separado as profissoes e só e mudar as ids dos itens q vc quer que que comece cada vocação e tals tá facim data/screaturescripts/scripts/firstitems.lua function onLogin(cid) if getPlayerGroupId(cid) == 1 and getPlayerStorageValue(cid, 50000) == -1 then if isSorcerer(cid) then local bag = doPlayerAddItem(cid, 9774, 1) doAddContainerItem(bag, 2120, 1) doAddContainerItem(bag, 2554, 1) doAddContainerItem(bag, 2152, 20) doAddContainerItem(bag, 2789, 20) doPlayerAddItem(cid, 2525, 1) doPlayerAddItem(cid, 2190, 1) doPlayerAddItem(cid, 2463, 1) doPlayerAddItem(cid, 2457, 1) doPlayerAddItem(cid, 2647, 1) doPlayerAddItem(cid, 2643, 1) setPlayerStorageValue(cid, 50000, 1) elseif isDruid(cid) then local bag = doPlayerAddItem(cid, 9774, 1) doAddContainerItem(bag, 2120, 1) doAddContainerItem(bag, 2554, 1) doAddContainerItem(bag, 2152, 20) doAddContainerItem(bag, 2789, 20) doPlayerAddItem(cid, 2525, 1) doPlayerAddItem(cid, 2182, 1) doPlayerAddItem(cid, 2463, 1) doPlayerAddItem(cid, 2457, 1) doPlayerAddItem(cid, 2647, 1) doPlayerAddItem(cid, 2643, 1) setPlayerStorageValue(cid, 50000, 1) elseif isPaladin(cid) then local bag = doPlayerAddItem(cid, 9774, 1) doAddContainerItem(bag, 2120, 1) doAddContainerItem(bag, 2554, 1) doAddContainerItem(bag, 2152, 20) doAddContainerItem(bag, 2789, 20) doPlayerAddItem(cid, 2389, 3) doPlayerAddItem(cid, 2525, 1) doPlayerAddItem(cid, 2457, 1) doPlayerAddItem(cid, 2643, 1) doPlayerAddItem(cid, 2647, 1) doPlayerAddItem(cid, 2463, 1) setPlayerStorageValue(cid, 50000, 1) elseif isKnight(cid) then local bag = doPlayerAddItem(cid, 9774, 1) doAddContainerItem(bag, 2120, 1) doAddContainerItem(bag, 2554, 1) doAddContainerItem(bag, 2152, 20) doAddContainerItem(bag, 8601, 1) doAddContainerItem(bag, 2383, 1) doAddContainerItem(bag, 2417, 1) doAddContainerItem(bag, 2789, 20) doPlayerAddItem(cid, 2525, 1) doPlayerAddItem(cid, 2463, 1) doPlayerAddItem(cid, 2457, 1) doPlayerAddItem(cid, 2647, 1) doPlayerAddItem(cid, 2643, 1) setPlayerStorageValue(cid, 50000, 1) end end return TRUE end creaturescrips.xml <event type="login" name="FirstItems" event="script" value="firstitems.lua"/> data/screaturescripts/scripts/login.lua Só adiciona o registro lá .. registerCreatureEvent(cid, "FirstItems")
  2. Ter tem sim mais nem sei como faz procura por ae -' mais tem sim exemplo o Global War tem Rak De Respect tá ligado?
  3. Então e isso ae queria saber c alguem tem um mapa ae pro Firestorm Event q podia mim passar '-'
  4. \data\creaturescripts\scripts function onDeath(cid, corpse, killer) registerCreatureEvent(cid, "inquisitionPortals") local creaturename = getCreatureName(cid) local ushuriel_in_position = {x=246, y=351, z=12, stackpos=2} local annihilon_in_position = {x=637, y=472, z=13, stackpos=2} local hellgorak_in_position = {x=335, y=581, z=10, stackpos=2} local madareth_in_position = {x=340, y=460, z=13, stackpos=2} local zugurosh_in_position = {x=390, y=525, z=13, stackpos=2} local brothers_in_position = {x=505, y=345, z=13, stackpos=1} local ushuriel_to_position = {x=172, y=559, z=13, stackpos=1} local annihilon_to_position = {x=294, y=681, z=13, stackpos=1} local hellgorak_to_position = {x=255, y=467, z=13, stackpos=1} local madareth_to_position = {x=287, y=365, z=13, stackpos=1} local zugurosh_to_position = {x=314, y=474, z=13, stackpos=1} local brothers_to_position = {x=408, y=413, z=13, stackpos=1} local time_to_pass = 180 local tpID = 5023 local doEffect = CONST_ME_ENERGYHIT local message = "You now have 3 minutes to exit this room through the teleporter. It will bring you to the next room only during his time or the teleporter will disappear." if creaturename == 'Ushuriel' then teleport = doCreateTeleport(tpID, ushuriel_to_position, ushuriel_in_position) doSendMagicEffect(ushuriel_in_position, CONST_ME_ENERGYHIT) doCreatureSay(cid, message, TALKTYPE_ORANGE_1) addEvent(removeTeleportInUshurielWard, (1000*time_to_pass)) elseif creaturename == 'Annihilon' then teleport = doCreateTeleport(tpID, annihilon_to_position, annihilon_in_position) doSendMagicEffect(annihilon_in_position, CONST_ME_ENERGYHIT) doCreatureSay(cid, message, TALKTYPE_ORANGE_1) addEvent(removeTeleportInAnnihilonWard, (1000*time_to_pass)) elseif creaturename == 'Madareth' then teleport = doCreateTeleport(tpID, madareth_to_position, madareth_in_position) doSendMagicEffect(madareth_in_position, CONST_ME_ENERGYHIT) doCreatureSay(cid, message, TALKTYPE_ORANGE_1) addEvent(removeTeleportInMadarethWard, (1000*time_to_pass)) elseif creaturename == 'Hellgorak' then teleport = doCreateTeleport(tpID, hellgorak_to_position, hellgorak_in_position) doSendMagicEffect(hellgorak_in_position, CONST_ME_ENERGYHIT) doCreatureSay(cid, message, TALKTYPE_ORANGE_1) addEvent(removeTeleportInHellgorakWard, (1000*time_to_pass)) elseif creaturename == 'Zugurosh' then teleport = doCreateTeleport(tpID, zugurosh_to_position, zugurosh_in_position) doSendMagicEffect(zugurosh_in_position, CONST_ME_ENERGYHIT) doCreatureSay(cid, message, TALKTYPE_ORANGE_1) addEvent(removeTeleportInZuguroshWard, (1000*time_to_pass)) elseif creaturename == 'Latrivan' then teleport = doCreateTeleport(tpID, brothers_to_position, brothers_in_position) doSendMagicEffect(brothers_in_position, CONST_ME_ENERGYHIT) doCreatureSay(cid, message, TALKTYPE_ORANGE_1) addEvent(removeTeleportInBrothersWard, (1000*time_to_pass)) end end function removeTeleportInUshurielWard() if getThingfromPos({x=246, y=351, z=12, stackpos=1}).itemid == 5023 then doRemoveItem(getThingfromPos({x=246, y=351, z=12, stackpos=1}).uid,1) doSendMagicEffect({x=246, y=351, z=12, stackpos=1}, CONST_ME_POFF) return TRUE end end function removeTeleportInAnnihilonWard() if getThingfromPos({x=637, y=472, z=13, stackpos=1}).itemid == 5023 then doRemoveItem(getThingfromPos({x=637, y=472, z=13, stackpos=1}).uid,1) doSendMagicEffect({x=637, y=472, z=13, stackpos=1}, CONST_ME_POFF) return TRUE end end function removeTeleportInHellgorakWard() if getThingfromPos({x=335, y=581, z=10, stackpos=1}).itemid == 5023 then doRemoveItem(getThingfromPos({x=335, y=581, z=10, stackpos=1}).uid,1) doSendMagicEffect({x=335, y=581, z=10, stackpos=1}, CONST_ME_POFF) return TRUE end end function removeTeleportInMadarethWard() if getThingfromPos({x=340, y=460, z=13, stackpos=1}).itemid == 5023 then doRemoveItem(getThingfromPos({x=340, y=460, z=13, stackpos=1}).uid,1) doSendMagicEffect({x=340, y=460, z=13, stackpos=1}, CONST_ME_POFF) return TRUE end end function removeTeleportInZuguroshWard() if getThingfromPos({x=390, y=525, z=13, stackpos=1}).itemid == 5023 then doRemoveItem(getThingfromPos({x=390, y=525, z=13, stackpos=1}).uid,1) doSendMagicEffect({x=390, y=525, z=13, stackpos=1}, CONST_ME_POFF) return TRUE end end function removeTeleportInBrothersWard() if getThingfromPos({x=505, y=345, z=13, stackpos=1}).itemid == 5023 then doRemoveItem(getThingfromPos({x=505, y=345, z=13, stackpos=1}).uid,1) doSendMagicEffect({x=505, y=345, z=13, stackpos=1}, CONST_ME_POFF) return TRUE end end Ai c aruma onde os portais vão ser abertos no caso .. tag no creaturescripts.xml <event type="death" name="inquisitionPortals" script="teleports_inquisition.lua"/> \data\movements\scripts local config = { bosses={---aid of portal, position where it sends, value it sets, text it shows [1001] = {pos={x=33069, y=31783, z=13, stackpos=1}, value=1, text="Entering The Crystal Caves"}, [1002] = {pos={x=33371, y=31613, z=14, stackpos=1}, value=2, text="Entering The Blood Halls"}, [1003] = {pos={x=33153, y=31781, z=12, stackpos=1}, value=3, text="Entering The Vats"}, [1004] = {pos={x=33038, y=31753, z=15, stackpos=1}, value=4, text="Entering The Arcanum"}, [1005] = {pos={x=33199, y=31686, z=12, stackpos=1}, value=5, text="Entering The Hive"}, [1006] = {pos={x=33111, y=31682, z=12, stackpos=1}, value=6, text="Entering The Shadow Nexus"} }, mainroom={---aid, position, lowest value that can use this portal, text [2001] = {pos={x=33069, y=31783, z=13, stackpos=1}, value=1, text="Entering The Crystal Caves"}, [2002] = {pos={x=33371, y=31613, z=14, stackpos=1}, value=2, text="Entering The Blood Halls"}, [2003] = {pos={x=33153, y=31781, z=12, stackpos=1}, value=3, text="Entering The Vats"}, [2004] = {pos={x=33038, y=31753, z=15, stackpos=1}, value=4, text="Entering The Arcanum"}, [2005] = {pos={x=33199, y=31686, z=12, stackpos=1}, value=5, text="Entering The Hive"} }, portals={---aid, position, text [3000] = {pos={x=33163, y=31708, z=14}, text="Entering Inquisition Portals Room"}, [3001] = {pos={x=33158, y=31728, z=11}, text="Entering The Ward of Ushuriel"}, [3002] = {pos={x=33169, y=31755, z=13}, text="Entering The Undersea Kingdom"}, [3003] = {pos={x=33124, y=31692, z=11}, text="Entering The Ward of Zugurosh"}, [3004] = {pos={x=33356, y=31590, z=11}, text="Entering The Foundry"}, [3005] = {pos={x=33197, y=31767, z=11}, text="Entering The Ward of Madareth"}, [3006] = {pos={x=33250, y=31632, z=13}, text="Entering The Battlefield"}, [3007] = {pos={x=33232, y=31733, z=11}, text="Entering The Ward of The Demon Twins"}, [3008] = {pos={x=33094, y=31575, z=11}, text="Entering The Soul Wells"}, [3009] = {pos={x=33197, y=31703, z=11}, text="Entering The Ward of Annihilon"}, [3010] = {pos={x=33105, y=31734, z=11}, text="Entering The Ward of Hellgorak"}, [3011] = {pos={x=32319, y=32248, z=9}, text="Congratulations!"} }, storage=56123,---storage used in boss and mainroom portals e={} }----dunno whats this but have to be like this to make doCreatureSayWithDelay working, DON'T TOUCH} function onStepIn(cid, item, position, fromPosition) if isPlayer(cid) == TRUE then if(config.bosses[item.actionid]) then local t= config.bosses[item.actionid] if getPlayerStorageValue(cid, config.storage)< t.value then setPlayerStorageValue(cid, config.storage, t.value) end doTeleportThing(cid, t.pos) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid,t.text,19,1, config.e) elseif(config.mainroom[item.actionid]) then local t= config.mainroom[item.actionid] if getPlayerStorageValue(cid, config.storage)>=t.value then doTeleportThing(cid, t.pos) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid,t.text,19,1,config.e) else doTeleportThing(cid, fromPosition) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid, 'You don\'t have enough energy to enter this portal', TALKTYPE_ORANGE_1) end elseif(config.portals[item.actionid]) then local t= config.portals[item.actionid] doTeleportThing(cid, t.pos) doSendMagicEffect(getCreaturePosition(cid),10) doCreatureSay(cid,t.text,19,1,config.e) if item.actionid == 3011 then setPlayerStorageValue(cid, 14916, 1) end end end end i aque pra onde os tps vão mandar saka? tag no movements.xml <movevent type="StepIn" fromaid="3000" toaid="3011" event="script" value="inq.lua"/> Dá pra configurar o tempo ae q o portal vai fica aberto i e a mensagem ao passar pelo portal e tals -' então eh isso ae c vira kk dá pra entender facim lendo ai ! @Edit.. esqueci Adiciona ai na login.lua nas creaturescripts ae: registerCreatureEvent(cid, "inquisitionPortals")
  5. POis eh mano saka ai onde postei já fiz isso mais dae deu mute no trade junto ta ligado? tipo o exaust de um bateu no otro c c ta de exaust no trade c num fala no help e vice versa saka ?:
  6. Então eu já tentei por exaust apenas adicionando essa parte na tag do help no chanels.xml '' muted="120" Mais dai ele da exaust no help e no trade ao mesmo tempo alguem ae sabe como por separado ? :x Sem tutor acima tomar mute junto claro '-' mais acho q no trade já não toma normal então não vai ter nada a mais nessa parrte creio eu
  7. @Edit Help ! Esse ae da o mesmo problema remove tudo saka? Help
  8. Tão tá vlw ae por tentar ajudar reputado por isso pena q ñ terminou mais ta susegado vô dar um geito aqui esses ai o link 1 do sociopata num abre portal ñ o portal tem q ficar aberto pelo q entendi e com alguma coisa bloqueando ele dai quando inicia o bloqueio só e removido mais num e legal deixar isso na frente do dp néh? :z e o ultimo e bem antigo :s nem por talkaction ainda rs Vlw ae i move o topico ainda não . /ou pode mover c acha mais adequado eu abrir outro só pra terminar isso mais acho q eh melhor terminar aqui logo :x @Edit Topico já pode ser movido . era só trocar o onnatack
  9. Só C por uma action na porta q tu quer pelo RME exempo: Sé for pra level 50+ C poem a Action Id 1050 pra 100+ 1100 i etc tendeu ?
  10. Então o problema e q o red/black skull remover do shop tá removendo todas as frags do char do cara tipo ele pode ser top frags q pra tirar a skull ele perde todas as frags q já pegou e isso não e legal néh?,então eu queria um c possível q removesse só a skull saka? ou q removesse só um numero x de frags pra tirar a skull mais c der pra remover só a skull seria otímo um q remove red e black skull. Thx
  11. Mano ta quase lá Só tem isso aqui agora . Dá Fim?
  12. Vlw Funciono, não como eu esperava k mais tá susse rep+ E pode mover pra resolvidos '-'
  13. C Quer dizer trocar isso aqui function openTeleport() local tp = 1387 local tele = doCreateItem(tp, 1, tp_pos) setGlobalStorageValue(kingdom["Protectors"].storage, 0) setGlobalStorageValue(kingdom["Killers"].storage, 0) doItemSetAttribute(tele, "aid", 15781) doSendMagicEffect(tp_pos, 10) setGlobalStorageValue(51320, 0) broadcastMessage("Regicide Event is now open!") end </config> Por Esse q tu passou eh ?
  14. @Up Ngm pra ajudar ? :C até parecer sem uma duvida bem simples k :z
  15. Então tá dando isso ae quando tento iniciar o evento :c num faço a minima do q seja :z Help's Aqui a MOD: Help's :z
  16. Eh tem isso tambem '-' ahuehia Fiz isso no meu tive o mesmo problema mais nem sabia c era ou não recomendado c podia dar problema em alguma coisa então nem citei :s
  17. TFS 0.4 64x C num for pidir muito c num poderia disponibilizar essa distro ñ ? u.u
  18. Fausto32 postou uma resposta no tópico em Suporte Tibia OTServer
    Ps: Usar a caixa de pesquisa faz bem.
  19. Fausto32 postou uma resposta no tópico em Suporte Tibia OTServer
    Removido!
  20. Isso dá no passo 5 néh? ja vi um caso assim '-' vai no config.ini quando chegar no passo 5 q der esse erro só tira o install muda pra no e tenta acesar o site
  21. Fausto32 postou uma resposta no tópico em Suporte Tibia OTServer
    Já penso em postar o script q tá dando erro junto ? '-'
  22. Só Adicionar s actions IDS nos tiles q tão a flag ou q vc quer a flag as ACtionID são 6000 e 6001 -'
  23. na vdd realmente tem q fazer algo nas sources do TFS pra aceitar mais e script sim até tenho ele lá em casa mais nunk tentei usar não .
  24. Ai c poem pelo RME Tem q editar o mapa agora não script '-' Mano eu era bem leigo nessa parte ainda sou mesmo assim consegui adicionar o evento e funciona perfeitamente !
  25. Mals a demora pra responder :z sem net mais enfim eu não peguei daqui não peguei de outro server pqê os daqui não abrem tp e sim removem itens q bloqueiam o tp q tem q ficar aberto o tempo todo e o de lá ñ vô passar ele todo aqui .. data\creaturescripts\scripts\Zombie Onnatack.lua Ondeath.lua Onthink.lua data\globalevents\scripts\zombie onstartup.lua Onthink.lua globalevent.xml data/lib zombie_event.lua data/movements/scripts/zombie onenter.lua movements.xml Tá ai C faltou algo só falar q posto k

Informação Importante

Confirmação de Termo