Ir para conteúdo

Blinkrox

Barão
  • Total de itens

    237
  • Registro em

  • Última visita

  • Dias Ganhos

    1

Tudo que Blinkrox postou

  1. vo testar aqui, se de certo do seu rep ! @edit nao funcionou n mano :S edit@ e ainda bugo meu server pqp, agr quem morre com aol, o loot cai do msm jeito...
  2. to com um server baiak on com 90 nego on diariamente ! ai queria por pra quando um player matasse o outro ganhasse xp ! mas tb deixar a opção de upar normalmente em bixo .. alguem sabe ? REP+
  3. queria saber como aumento o healing da exura san ! script: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE) setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 18.5, 25) function onCastSpell(cid, var) return doCombat(cid, combat, var) end
  4. Blinkrox

    Eu Sou Feio.

    não é pq e 1ºde abril nao, é vdd msm
  5. é dia da mentira, e não dia do milagre.
  6. você demorou tanto que eu consegui arrumar sozinho... mas vlw do msm jeito.
  7. não sei se estou na seção certa, acredito que não, se não estiver por favor movam o tópico. estava vendo um tutorial de fazer otserver com net compartilhada sem usar o hamachi ! até travar no final da video aula. primeiramente dizia para eu me registrar no proXPN e depois clicar em connect, que ia aparecer um IP. e depois mandava eu abrir o IPDUC, que estava assim: e clicar em refresh ! mas depois que eu clicasse tinha que fica do geito que esta ai em cima, mas para minha infelicidade. fica assim: SE ALGUEM CONSEGUIR ME AJUDAR A RESOLVER O PROBLEMA, GANHA +2 REP !
  8. cara as sprites tão muito foda mesmo !
  9. @bolinhoo28 usa o script desse link, que vai resolver seu problema, pois resolveu o meu. http://www.xtibia.com/forum/topic/138505-action-potions-86/
  10. @peralta52, ja resolvi o problema, vlw.
  11. use o yahoo respostas, la eles te ajudam rapidinho !
  12. te mandei meu msn por PM ! mas eu ja consegui resolver o problema sozinho, mas se quiser add msm assim pode.
  13. Blinkrox

    Mace 3D

    ficou otima cara ! parabens.. como o cara disse acima tenta fazer uma criatura.
  14. agora que eu troquei o script e coloquei esse ai, a potion não funciona ! eu uso e aparece "you cannot use this object"
  15. vamos parar de postar aqui, senão vão dizer que estamos floodando.
  16. não consigo abrir o spoiler :S
  17. estou com o mesmo problema ! a unica coisa que eu consegui fazer foi por as potion infinitas.. mas queria arrumar esse bug ai tambem !
  18. também acho ! a equipe de moderação ta deixando a desejar.
  19. 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 } config.removeOnUse = getBooleanFromString(config.removeOnUse) config.usableOnTarget = getBooleanFromString(config.usableOnTarget) config.splashable = getBooleanFromString(config.splashable) config.realAnimation = getBooleanFromString(config.realAnimation) local POTIONS = { [8704] = {empty = 7636, splash = 2, health = {50, 100}}, -- small health potion [7618] = {empty = 7636, splash = 2, health = {100, 200}}, -- health potion [7588] = {empty = 7634, splash = 2, health = {200, 400}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion [7591] = {empty = 7635, splash = 2, health = {500, 700}, level = 80, vocations = {4, 8}, vocStr = "knights"}, -- great health potion [8473] = {empty = 7635, splash = 2, health = {800, 1000}, level = 130, vocations = {4, 8}, vocStr = "knights"}, -- ultimate health potion [7620] = {empty = 7636, splash = 7, mana = {70, 130}}, -- mana potion [7589] = {empty = 7634, splash = 7, mana = {110, 190}, level = 50, vocations = {1, 2, 3, 5, 6, 7}, vocStr = "sorcerers, druids and paladins"}, -- strong mana potion [7590] = {empty = 7635, splash = 7, mana = {200, 300}, level = 80, vocations = {1, 2, 5, 6}, vocStr = "sorcerers and druids"}, -- great mana potion [8472] = {empty = 7635, splash = 3, health = {200, 400}, mana = {110, 190}, level = 80, vocations = {3, 7}, vocStr = "paladins"} -- great spirit 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, "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 doRemoveItem(item.uid) return true end doTransformItem(item.uid, potion.empty) return true end
  20. não entendi muito esse tópico! por que tantas respostas nesse tópico?
  21. a potion eu compro ela vem 100x mas ai quando eu uso uma vez, ao invés de ficar 99x .... ja gasta a 100 em uma vez que eu healo ! como arrumar?
  22. velho, ele ja criou outro topico na area de otserver 8.6 com scan imagens tudo certinho ! por isso falei pra fecharem esse, e deixar somente o outro aberto.
  • Quem Está Navegando   0 membros estão online

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