Ir para conteúdo

D i M i T r E s C u

Membro
  • Registro em

  • Última visita

Tudo que D i M i T r E s C u postou

  1. Para atravessar o player em pvp ou no-pvp tem que ser mexido na sourcer , tenho uma distro perfeita so que nao irei postar
  2. Já oculta testem e depois comentem , vlw!
  3. pq ele nao fez pra voltar so pra ir , volta com o tempo , diferente eu tenho o que vai e volta
  4. TENHO MAIS UMA DUVIDA NAO SEI SE É ERRO MAIS VAMO LA O CHECK NA PARTE DO SITE NA PASTA PATCH, NA HORA QUE BOTO AVERSION = 1 o client zipado fica 2 com o gerador ENTAO TA MAIS AI NA HORA DE BAIXA COM O LAUCHER NAO VAI. SO SE EU CRIAR VARIOAS ARQUIVOS NA PASTA COM O GERADOR E COLOCA NA PASTA DO PATCH AI PEGA SO QUE BAIXA TODAS AS PASTAS AJUDA NESSA PARTE QUERO POR AVERSION = 1 e a Pasta ser 1.7z ou 2.7z Não quero criar varias pastas so pra baixar 1 client Se não entendeu fala que vou explicar de novo
  5. ESSE TEM UMA PARTE DO MAPA DO OTNARUTO? ESTOU BAIXANDO SE FOR REP+
  6. Mais está exatamente assim
  7. GALERA Não ESTOU CONSEGUINDO FAZER UM BUFF PREMIUM QUE FIQUE JUNTO A OUTRO BUFF QUERIA QUE ALGUEM FIZESSE UM BUFF QUE FIQUE POR CIMA DE QUALQUER OUTRO BUFF DO SERVIDOR BUFF EXTRA! REP A AJUDA.
  8. OK OBRIGADO! GOSTEI MUITO rep
  9. AMIGO MUITO BOM SÓ TEM UMA COISA QUE NÃO TA FAZENDO , NÃO ESTA TROCANDO A IMAGEM DO (pokemon Stages) Tem alguma solução?
  10. Amigo também gostei mais quando for bota a script coloque como (código) <> , deixe organizado.
  11. Eu vi gente querendo isso , bom agora tem kk rep
  12. So que ele tem defeitos to vendo se arrumo mais vai demorar
  13. QUando aperto ctrl+k nao abre as HTk PQ?
  14. http://www.tibiaking.com/forum/topic/43148-comando-saga/ só não da os atributos mas muda as roupas vê se ajuda
  15. Exatamente amigo estou tentando mudar essa parte para que o nome fique totalmente invisivel. vou postar quando acabar.
  16. Galera tava fazendo uma script pra mim usar no meu server só que falta algumas coisas mais testei aqui já da pra usar Testado em: 8.6 Finalidade: Se esconder de pessoas No meu caso coloquei pra transformar em arvores ou pedras Pode ser qualquer coisa que queiram. ele se transformar e fica nos items desejados aleatórios e você fica imóvel por 7 segundos, se quiserem mudar é so mudar essas linhas doSetItemOutfit(cid, math.random(2701, 2704), 7000) --tempo 7 segundos addEvent(doCreatureSetNoMove, 7000, cid, false) obs2: Deixe no mesmo tempo para ficar bom vamos lá: 1º va na pasta data/talkactions/script copie qualquer arquivo e coloque um nome desejado e coloque isso: function onSay(cid, words, param) if getPlayerLevel(cid) >= 1 then doCreatureSetHideHealth(cid, true) addEvent(doCreatureSetHideHealth, 7000, cid, false) doSetItemOutfit(cid, math.random(2701, 2704), 7000)--tempo 7 segundos doSendMagicEffect(getCreaturePosition(cid),13) doCreatureSay(cid, "Voce se Escondeu", TALKTYPE_ORANGE_1) -- mensagem doCreatureSetNoMove(cid, true) addEvent(doCreatureSetNoMove, 7000, cid, false) end return true end Tag: <talkaction words="!esconder" event="script" value="arquivo.lua"/> Obs: essa parte math.random(2701, 2704) -- sao os items que irao se transformar se já existe um assim não sei , só sei que eu que fiz esse Bom uso erros comentem aqui pff (ARRUMADO) 100% credito também ao Xwhitewolf
  17. seguinte: CONSEGUI FAZER script: function onSay(cid, words, param) if getPlayerLevel(cid) >= 1 then doCreatureSetHideHealth(cid, true) addEvent(doCreatureSetHideHealth, 7000, cid, false) doSetItemOutfit(cid, math.random(2701, 2704), 7000)--tempo 7 segundos doSendMagicEffect(getCreaturePosition(cid),13) doCreatureSay(cid, "Voce se Escondeu", TALKTYPE_ORANGE_1) -- mensagem doCreatureSetNoMove(cid, true) addEvent(doCreatureSetNoMove, 7000, cid, false) end return true end
  18. fiz um aqui mais depois vo da uma olhada mais profunda nele script: function onUse(cid, item, frompos, item2, topos) local pos = {x=1027, y=925, z=7} doTeleportThing(cid, pos) doPlayerSendTextMessage(cid,22,"Mensagem que irá dizer.") doRemoveItem(item.uid, 1) return true end tag: <action itemid="2270" event="script" value="arquivo.lua" allowfaruse="1"/> ou <action itemid="2270" event="script" value="arquivo.lua"/> Teste e me fala
  19. pega em 8.60? alguém já testo ?
  20. amigo teste esse mudei uma coisa se não funcionar vou dar uma olhada melhor local conf = {} -- // config // --- conf.outfitSpeed = 250 -- outfit changer speed conf.outfitMale = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 251, 268, 273, 278, 289, 325} -- all male outfits conf.outfitFemale = {136, 137, 138, 139, 140, 141, 142, 147, 148, 149, 150, 155, 156, 157, 158, 252, 269, 270, 279, 288, 324} -- all female outfits -- // end // -- local condition_infight = createConditionObject(CONDITION_INFIGHT) setConditionParam(condition_infight, CONDITION_PARAM_TICKS, -1) function outfitChanger(tab) if isPlayer(tab[1]) then if getPlayerSex(tab[1]) == PLAYERSEX_FEMALE then outs = conf.outfitFemale else outs = conf.outfitMale end local outfit = { lookType = outs[math.random(1, #outs)], lookHead = math.random(1,133), lookBody = math.random(1,133), lookLegs = math.random(1,133), lookFeet = math.random(1,133), lookTypeEx = math.random(1,133), lookAddons = math.random(0,3)} doCreatureChangeOutfit(cid, tab[1], outfit) tab[2].outfitChanger = addEvent(outfitChanger,conf.outfitSpeed, tab) end end backOutfit = {} local backOutfit = {} local storage = 38417 function onSay(cid, words, param, channel) local pidCheck = getPlayerStorageValue(cid, storage) if(param == "") then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return TRUE end local pid = getPlayerGUID(cid) if type(events[pid]) ~= "table" then events[pid] = {} end if (param == "start") then if (pidCheck == -1) then if (isPlayer(cid)) then end outBack = getCreatureOutfit(cid) backOutfit[pid] = outBack backOutfit[pid].lookType = outBack.lookType backOutfit[pid].lookAddons = outBack.lookAddons doPlayerSendCancel(cid, "Ai Que Loucuuura :D") outfitChanger({cid, events[pid]}) doAddCondition(cid, condition_infight) doCreatureSetNoMove(cid, true) setPlayerStorageValue(cid, storage, 1) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você está com o DANCE ligado, digite !dance stop.") end elseif (param == "stop") then stopEvent(events[pid].outfitChanger) stopEvent(events[pid].messager) events[pid] = {} doCreatureChangeOutfit(cid, backOutfit[pid]) doRemoveCondition(cid, CONDITION_INFIGHT) doCreatureSetNoMove(cid, false) setPlayerStorageValue(cid, storage, -1) doPlayerSendCancel(cid, "Ai Que Loucuuura :D") end return TRUE end Tem esse Também teste ai aqui: local conf = {} -- // config // --- conf.outfitSpeed = 250 -- outfit changer speed conf.outfitMale = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 251, 268, 273, 278, 289, 325} -- all male outfits conf.outfitFemale = {136, 137, 138, 139, 140, 141, 142, 147, 148, 149, 150, 155, 156, 157, 158, 252, 269, 270, 279, 288, 324} -- all female outfits -- // end // -- local condition_infight = createConditionObject(CONDITION_INFIGHT) setConditionParam(condition_infight, CONDITION_PARAM_TICKS, -1) function outfitChanger(tab) if isPlayer(tab[1]) then if getPlayerSex(tab[1]) == PLAYERSEX_FEMALE then outs = conf.outfitFemale else outs = conf.outfitMale end local outfit = { lookType = outs[math.random(1, #outs)], lookHead = math.random(1,133), lookBody = math.random(1,133), lookLegs = math.random(1,133), lookFeet = math.random(1,133), lookTypeEx = math.random(1,133), lookAddons = math.random(0,3)} doCreatureChangeOutfit(tab[1], outfit) tab[2].outfitChanger = addEvent(outfitChanger, 250, conf.outfitSpeed, tab) end end backOutfit = {} local backOutfit = {} local storage = 38417 function onSay(cid, words, param, channel) local pidCheck = getPlayerStorageValue(cid, storage) if(param == "") then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return TRUE end local pid = getPlayerGUID(cid) if type(events[pid]) ~= "table" then events[pid] = {} end if (param == "start") then if (pidCheck == -1) then if (isPlayer(cid)) then end outBack = getCreatureOutfit(cid) backOutfit[pid] = outBack backOutfit[pid].lookType = outBack.lookType backOutfit[pid].lookAddons = outBack.lookAddons doPlayerSendCancel(cid, "Ai Que Loucuuura :D") outfitChanger({cid, events[pid]}) doAddCondition(cid, condition_infight) doCreatureSetNoMove(cid, true) setPlayerStorageValue(cid, storage, 1) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você está com o DANCE ligado, digite !dance stop.") end elseif (param == "stop") then stopEvent(events[pid].outfitChanger) stopEvent(events[pid].messager) events[pid] = {} doCreatureChangeOutfit(cid, backOutfit[pid]) doRemoveCondition(cid, CONDITION_INFIGHT) doCreatureSetNoMove(cid, false) setPlayerStorageValue(cid, storage, -1) doPlayerSendCancel(cid, "Ai Que Loucuuura :D") end return TRUE end
  21. Nao entendi oque voce esta querendo pode me explicar melhor?
  22. agora que vi kkk vlw

Informação Importante

Confirmação de Termo