Ir para conteúdo

SkyDarkyes

Infante
  • Total de itens

    1685
  • Registro em

  • Última visita

Tudo que SkyDarkyes postou

  1. SkyDarkyes

    Potions

    Oxe pq nao falo antes kkkk,desculpa ai luck,limite rep Mais uma coisa,quando uso potion,aparece uma fala,porem em laranja,queria que aparecesse igual uma magia,tipo em amarelo,no default
  2. SkyDarkyes

    Potions

    Sim,mas ai no caso está para todos os potions,e eu queria que fosse apenas para os que escolhesse
  3. SkyDarkyes

    Potions

    Entendi man,mas deixa queto,acho que não vai ter geito
  4. SkyDarkyes

    Potions

    Nnn a tag eu ja sabia,queria sabe como add {hp, mp} = {vida, mana}
  5. SkyDarkyes

    Potions

    Como fasso para healar a mana e vida,posta uma tag ai k
  6. SkyDarkyes

    Potions

    Depois eu coloco o id
  7. SkyDarkyes

    Potions

    Man voce add pra healar mana e vida em todos aff nao era assim,eu que ia add novos potions ai neles ia heala mana e vida
  8. SkyDarkyes

    Potions

    Da pra tirar essas tag nao? vocations = {1, 2, 3, 4, 5, 6, 7, 8}, vocStr = "all vocations"
  9. SkyDarkyes

    Potions

    Man assim não da [2149] = {empty = 7478, splash = 7, mana = {15000, 15000}, health = {15000, 15000}}, -- great mana potion ?
  10. SkyDarkyes

    Potions

    Ah man mais ai ira healar de x tanto de x tanto,queria que healasse uma quantidade certa
  11. SkyDarkyes

    Potions

    Bom entendi +- ^^
  12. SkyDarkyes

    Potions

    Sim isso mesmo,para todas as classes e healasse hp+mana junto tipo assim [2149] = {empty = 7478, splash = 7, mana/vida = {15000, 15000}}, -- great mana potion }
  13. SkyDarkyes

    Potions

    Galera gostaria de saber como colocar para o potion healar MANA E VIDA Gostaria de saber como eu add para a healar mana e vida,mas apenas oque eu escolher local config = { removeOnUse = "yes", usableOnTarget = "yes", -- can be used on target? (fe. healing friend) splashable = "no", realAnimation = "no", -- make text effect visible only for players in range 1x1 healthMultiplier = 1.0, manaMultiplier = 1.0 } config.removeOnUse = getBooleanFromString(config.removeOnUse) config.usableOnTarget = getBooleanFromString(config.usableOnTarget) config.splashable = getBooleanFromString(config.splashable) config.realAnimation = getBooleanFromString(config.realAnimation) local POTIONS = { [2150] = {empty = 7478, splash = 2, health = {5000, 5000}}, -- heal potion [2151] = {empty = 7478, splash = 2, health = {20000, 20000}}, -- heal strong potion [2144] = {empty = 7478, splash = 7, mana = {5000, 5000}}, -- strong mana potion [2149] = {empty = 7478, splash = 7, mana = {15000, 15000}}, -- great mana potion } local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 100)) function onUse(cid, item, fromPosition, itemEx, toPosition) local potion = POTIONS[item.itemid] if(not potion) then return false end if(not isPlayer(itemEx.uid) or (not config.usableOnTarget and cid ~= itemEx.uid)) then if(not config.splashable) then return false end if(toPosition.x == CONTAINER_POSITION) then toPosition = getThingPos(item.uid) end doDecayItem(doCreateItem(2016, potion.splash, toPosition)) doTransformItem(item.uid, potion.empty) return TRUE end if(hasCondition(cid, CONDITION_EXHAUST_HEAL)) then doPlayerSendDefaultCancel(cid, RETURNVALUE_YOUAREEXHAUSTED) return TRUE end if(((potion.level and getPlayerLevel(cid) < potion.level) or (potion.vocations and not isInArray(potion.vocations, getPlayerVocation(cid)))) and not getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES)) then doCreatureSay(itemEx.uid, "Only " .. potion.vocStr .. (potion.level and (" of level " .. potion.level) or "") .. " or above may drink this fluid.", TALKTYPE_ORANGE_1) return TRUE end local health = potion.health if(health and not doCreatureAddHealth(itemEx.uid, math.ceil(math.random(health[1], health[2]) * config.healthMultiplier))) then return false end local mana = potion.mana if(mana and not doPlayerAddMana(itemEx.uid, math.ceil(math.random(mana[1], mana[2]) * config.manaMultiplier))) then return false end doSendMagicEffect(getThingPos(itemEx.uid), CONST_ME_MAGIC_BLUE) if(not realAnimation) then doCreatureSay(itemEx.uid, "I feel better!", TALKTYPE_ORANGE_1) else for i, tid in ipairs(getSpectators(getCreaturePosition(cid), 1, 1)) do if(isPlayer(tid)) then doCreatureSay(itemEx.uid, "I feel better!", TALKTYPE_ORANGE_1, false, tid) end end end doAddCondition(cid, exhaust) if(not potion.empty or config.removeOnUse) then doRemoveItem(item.uid, 1) return TRUE end doRemoveItem(item.uid, 0) doPlayerAddItem(cid, potion.empty, 0) doPlayerRemoveItem(cid, potion.empty, getPlayerItemCount(cid, potion.empty)) doPlayerAddItem(cid, potion.empty, getPlayerItemCount(cid, potion.empty)) return TRUE end Tambem gostaria de saber para que serve local config = { removeOnUse = "yes", usableOnTarget = "yes", -- can be used on target? (fe. healing friend) splashable = "no", realAnimation = "no", -- make text effect visible only for players in range 1x1 healthMultiplier = 1.0, manaMultiplier = 1.0 }
  14. SkyDarkyes

    MKick

    Aff -',não tem um MASKICK,que kika TODOS os players?
  15. SkyDarkyes

    MKick

    Como é os parametros do Mas kick,15:35 Command requires param. function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end local t = string.explode(param, ",") if(not t[2]) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Not enough params.") return true end local multifloor = false if(t[3]) then multifloor = getBooleanFromString(t[3]) end local tmp = 0 for i, tid in ipairs(getSpectators(getCreaturePosition(cid), t[1], t[2], multifloor)) do if(isPlayer(tid) and tid ~= cid and getPlayerAccess(tid) < getPlayerAccess(cid)) then doRemoveCreature(tid) tmp = tmp + 1 end end if(tmp > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Kicked " .. tmp .. " players.") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Could not kick any player.") end return true end
  16. Vilas-Amegakure -Suna -Mist -Konoha Consta com 14 vocações​​-Naruto - Sasuke - Sakura - Rock Lee- Neji - Hinata - Kiba - Shikamaru - Tenten - Gaara - Killer Bee - Kakashi - Itachi - Kankuro [sistema de Graduação]-Genin -Chunin -Jounin -Anbu [sistema de Saga]-transformar -reverter -Serve para trocar a roupa do seu persoangem, ganha umas roupas novas a cada 25 level upado, dependendo da vocação, isso varia muito. -Exemplo, Naruto tem umas 10 roupas, enquanto tenten tem apenas 4. Nada afeta ao personagem, apenas visualmente mesmo. -Caso deseja alterar para ter efeito em alguma coisa, você pode editar em vocations.xml [sistema de Recompensa]-Npc Oinin coloca a cabeça de jogadores a venda por um determinado preço, e se alguem matar o jogador que tem recompensa ganha algo em troca. [Eventos do Servidor]-Evento Guerra Ninja -Evento Assassin -Evento Roube a Bandeira -Evento Tsuki no Me [sistema de Jutsus]-Posso dizer que todos os jutsus são adequados com o anime NARUTO, dando mais realidade no jogo de naruto. -Exemplo, chidori do sasuke, o personagem ao relizar pula até o jogador para acertar o jutsu. [boss]-Tem o enrredo da historia, ao qual deve matar os Boss do jogo, que na verdade são os membros da Akatsuki. -Cada Boss se encontra em uma parte do mapa, logo abaixo vai ter os detalhes do Mapa! [Task]-Npc Anbu, ele se localiza acima dos trainers, ele realiza as famosas task do opentibia no naruto. Servidor:http://www.mediafire.com/download/p49myfb8t3cl7yo/NTO.rar Client:http://www.mediafire.com/?tddq5l6cvg5dd1a ATENÇÃO:ESSE SERVIDOR É MAIS ATUALIZADO DOQUE O DO ROBINHOOD QUE ESTÁ AQUI PARA DOWNLOAD,ESSE SERVIDOR CONSTA COM A VOCAÇÃO KANKURO E COM ILHOTA COMPLETA. Créditos: Naruto Open Wings v1.2 {o começo de tudo} Lks {RobinHood} Jhon992 Eskylo Vodkart Demonbholder Oneshot Slicer SkyMagmum Kydrai Christian Letti LuckOake Beeki SkyDarkyes OBS2:TEM HUNTS EXPANDIDAS COMO A FAMOSA FLORESTA DOS NUKENINS.
  17. Esperando anciosamente mais imagens
  18. @Tonynh Ficou SHOWb
  19. Duvida são sources de TFS neh?,já vem com War system etc...? Estão sem bugs?
  20. Não tem pra download então :0
  21. 1-Não existe CDZ Tibia :0
  22. Jonathan Vargas:Ta certo Bruno:LIXO
  23. No meu não vai '-'
  24. Voce usou algum mapa base,encima dele?
  25. Distro Perfect!
  • Quem Está Navegando   0 membros estão online

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