Ir para conteúdo

Vilden

Infante
  • Total de itens

    1597
  • Registro em

  • Última visita

  • Dias Ganhos

    2

Tudo que Vilden postou

  1. Vilden

    [Fechado]

    Este local é para envio de noticias e isso não me parece uma noticia, existe um local para divulgação de otserver, Anuncios de Otserver Fechado!
  2. Nossa você criou um tutorial pra mim *.* Não o mapa é outro, eu perdi o mapa gangrel, por isso não o atualizo mais.
  3. Seja expressivo com sua dúvida no titulo do tópico, títulos pedindo ajuda são proibidos. Smartbox rep-, você podia dizer os três comentários em apenas um. Renomeado.
  4. Amigo expresse a dúvida no titulo do tópico, títulos assim são proibidos. Renomeado. Utilize também os prefixos.
  5. Vilden

    Um Pet System Diferente

    Dúvida sanada, movido.
  6. Dúvida sanada, movido.
  7. Nossa o mapa ta muito bom, sucesso ao servidor.
  8. dofile("./_woe.lua") function onLogin(cid) local rate = 1.50 -- local rate2 = 2.0 if Woe.guildName() == getPlayerGuildName(cid) and getVipTime(cid) == 0 then doPlayerSetExperienceRate(cid, rate) doPlayerSendTextMessage(cid,22,"Voce possui 50% a mais de exp por ganhar o WOE!") elseif Woe.guildName() == getPlayerGuildName(cid) and getVipTime(cid) >= 1 then doPlayerSetExperienceRate(cid, rate2) doPlayerSendTextMessage(cid,22,"Voce possui 50% a mais de exp por ganhar o WOE!") end return TRUE end Testa ai e me diz
  9. SmiX, está bem explicado, ele quer a função que de skills para vocação tal, não tem segredo, você está spameando. Próxima é alerta. Qualquer dúvida envie-me mp, não faça desse tópico um chat.
  10. Vilden

    [Pedido][Poke] Aura

    Geralmente as scripts de ots derivados são simples, só que nós não entendemos nem um pouco, se puder da um exemplo especifico. Melhor ainda se der um exempo usando o próprio tibia.
  11. Obrigado por postar o link do funcional, abç Movido.
  12. Iniciar -> Todos os programas -> Acessórios -> Conexão de Área de Trabalho Remota Clica nesse programa, coloca o passe, e então você ira se conectar a um 'pc virtual', agora upe seu ot na net e baixe no 'pc virtual'. Upe no 4shared, speedyshare qualquer um. Só tem internet explorer nele, baixe o google chrome, e o win rar, você vai precisar, flw. E se você não viu, este local é para Download de Mapas 8.6x. Movido. (para dúvidas de otservidores)
  13. O que acham do Projeto? Eu acho que está no local errado, existe uma área mais adequada. Movido. rs, parece bom.
  14. Tópico fechado, impossível ajudar com o link quebrado da imagem.
  15. 99663100, como pode ver esse tópico é de 2008, logo a versão utilizada na época era outra. Evite comentar em tópicos antigos, já que você não ira acrescentar nada a eles, a não ser que tenha, o que não foi o caso.
  16. Coatic, como pode perceber eles postaram praticamente juntos. Essa script já não está "infinita"? Pois quando ele usa, ela vira empty, e os id das emptys estão o das potions, logo ira ficar em um ciclo sem fim. _____________________________________________ local config = { removeOnUse = "no", 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 }[/font] [font=arial,helvetica,sans-serif]config.removeOnUse = getBooleanFromString(config.removeOnUse) config.usableOnTarget = getBooleanFromString(config.usableOnTarget) config.splashable = getBooleanFromString(config.splashable) config.realAnimation = getBooleanFromString(config.realAnimation)[/font] [font=arial,helvetica,sans-serif]local POTIONS = { [8704] = {empty = 8704, splash = 2, health = {70, 100}}, -- small health potion [7618] = {empty = 7618, splash = 2, health = {200, 250}}, -- health potion [7588] = {empty = 7588, splash = 2, health = {300, 350}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion [7591] = {empty = 7591, splash = 2, health = {500, 700}, level = 80, vocations = {4, 8}, vocStr = "knights"}, -- great health potion [8473] = {empty = 8473, splash = 2, health = {800, 1000}, level = 130, vocations = {4, 8}, vocStr = "knights"}, -- ultimate health potion [7620] = {empty = 7620, splash = 7, mana = {70, 150}}, -- mana potion [7589] = {empty = 7589, splash = 7, mana = {130, 220}, level = 50, vocations = {1, 2, 3, 5, 6, 7}, vocStr = "sorcerers, druids and paladins"}, -- strong mana potion [7590] = {empty = 7590, splash = 7, mana = {400, 600}, level = 80, vocations = {1, 2, 5, 6}, vocStr = "sorcerers and druids"}, -- great mana potion [8472] = {empty = 8472, splash = 3, health = {300, 500}, mana = {150, 250}, level = 80, vocations = {3, 7}, vocStr = "paladins"} -- great spirit potion }[/font] [font=arial,helvetica,sans-serif]local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 100))[/font] [font=arial,helvetica,sans-serif]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, "Aaaah...", TALKTYPE_ORANGE_1) else for i, tid in ipairs(getSpectators(getCreaturePosition(cid), 1, 1)) do if(isPlayer(tid)) then doCreatureSay(itemEx.uid, "Aaaah...", TALKTYPE_ORANGE_1, false, tid) end end end doAddCondition(cid, exhaust) if(not potion.empty or config.removeOnUse) then 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
  17. Amigo o xtibia não apoia uso de bots, logo não daremos suporte a algo com fins a esse assunto. Fechado.
  18. Acho que essa função é implementada ao distro
  19. Vilden

    Vocação

    No topo do forum existe um botão de pesquisa, utilize-o. http://www.xtibia.com/forum/topic/152827-vocation-oufit/
  20. Este local é para dúvidas e pedidos, logo só é aceito comentários que ajudem na resolução do problema, por que comentar em um tópico se não acrescentara nada? Oneshot e Diley007, alertados verbalmente.
  21. Vilden

    Utevo Res

    Dúvida sanada, movido. Quando for assim utilize o botão denunciar para que um moderador venha mover o tópico.
  • Quem Está Navegando   0 membros estão online

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